24/12/2006, 08:58
|
| | Fecha de Ingreso: septiembre-2006
Mensajes: 9
Antigüedad: 18 años, 4 meses Puntos: 0 | |
Trace raro
Código:
// COMO ES POSIBLE QUE EL EL TRACE DEVUELVA 2
function colocar():Void {
for (i = 0; i <= 1; i++) {
this["mcBola" + i].onPress = arrastrar;
this["mcBola" + i].onRelease = soltar;
}
}
function arrastrar():Void {
this.startDrag();
}
function soltar():Void {
this.stopDrag();
trace(i);
//2
}
colocar();
|