Hola:
Ante todo gracias por el interés mostrado.
Después deciros que no expresé bien la pregunta.
Lo que yo pretendía era crear 10 ó 20 mc y que todos se movieran al unísono en una dirección y que al llegar a los límites de la película retomaran el valor inicial.
Para quien pudiera estar interesado dejo el código:
Código:
MovieClip.prototype.izqDer = function (limit)
{
this.vel = Math.random(0.25);
this.limit = limit;
this.onEnterFrame = function ()
{
if (this._x > this.limit or this._x < 0)
{
this._x = 0;
this._x += this.vel;
}
this._x += this.vel;
};
};
var StageWidth = 800;
var StageHeight = 300;
for (var i = 0; i < 100; i++)
{
var mc = attachMovie ("fondo", "fondo" + i, 100 + i);
mc._x = random (StageWidth);
mc._y = random (StageHeight);
mc.izqDer (StageWidth);
}
Muchas gracias una vez más.
Un saludo.Manrique.