ciao così mi può andare bene...
però vorrei applicare una maschera alla transizione
ho trovato un fla che contiene la maschera che fa per me
questa è la funzione che mi fa partire la maschera in entrata, come la adatto al tuo proto?
tnks
codice:
img2.setMask(dong);
tnum = 1;
dong.onEnterFrame = function ()
{
this.mm._x = -1000;
this.mm._y = -1000;
if (_root.tnum < 80)
{
this.mm.duplicateMovieClip("star" + _root.tnum, _root.tnum);
this["star" + _root.tnum]._x = 0;
this["star" + _root.tnum]._y = 0;
this["star" + _root.tnum]._xscale = _root.tnum * 2;
this["star" + _root.tnum]._yscale = _root.tnum * 2;
this["star" + _root.tnum]._rotation = Math.random() * 90;
++_root.tnum;
} // end if
};