El codigo es:
Código :
onRollOver = function () {
mover();
};
onRollOut = function () {
slideSpeed = 0.01;
};
function mover() {
slideSpeed = 0.05;
onEnterFrame = function () {
currentMousex = Math.floor(this._xmouse);
for (a=1; a<9; a++) {
this["imgbox"+a]._x = Math.floor(this["imgbox"+a]._x-(currentMousex*slideSpeed));
if (this["imgbox"+a]._x<=-808) {
this["imgbox"+a]._x += 1616;
}
if (this["imgbox"+a]._x>=808) {
this["imgbox"+a]._x -= 1616;
}
}
};
}
Si les sirve para ayudarme o para alguien que tambien este aprendiendo como yo a los golpes, pidiendo ayuda y viendo ejemplos aca les dejo el fla: http://www.troys.cjb.net/copia%20de%20slide_ok.fla
Gracias y saludos.

Zguillez