El codigo k hay es el siguiente:
onClipEvent (load) {
widthStrip = strip1._width;
rightLimit = _root.rightMarker._x;
leftLimit = _root.leftMarker._x;
widthscreen = rightLimit-leftLimit;
center = (.5*widthscreen)+leftLimit;
_x = center;
duplicatesNeeded = (widthscreen/(2*widthStrip))+1;
for (i=1; i<=duplicatesNeeded; i++) {
dupR = 2*i;
dupL = (2*i)+1;
duplicateMovieClip(strip1, "strip"+dupR, dupR);
setProperty("strip"+dupR, _x, i*widthStrip);
duplicateMovieClip(strip1, "strip"+dupL, dupL);
setProperty("strip"+dupL, _x, i*-widthStrip);
}
}
onClipEvent (enterFrame) {
_x += (center-_root._xmouse)*.1;
if (_x>center+(widthStrip/2)) {
_x -= widthStrip;
} else if (_x<center-(widthStrip/2)) {
_x += widthStrip;
}
}
A ver si alguien se aclara con esto!!!! (soy novatilla...)
