podeis orientarme un poco? a ver que estoy haciendo mal?
Código:
onClipEvent(load){
//anchura del mc
strip_w=1741;
//anchura de la mascara
mask_w=582;
//velocidad
speed=100;
//bordes izq y derech
left = mask_w/2;
right = -mask_w/2;
}
onClipEvent(enterFrame){
tx=_x-(_parent._xmouse/speed);
//para ver si se pasa
if (tx < left){
tx += strip_w;
}
if (tx > right){
tx -= strip_w;
}
_x = tx;
}

