Hi Everyone,
I created a grid with an AS ano now try to mask it, with another AS.
I think when you look at the below, it becomes pretty clear what I’m trying to do.
Appreciated,
M.
emptyMC._x = 100;
emptyMC._y = 100;
trace (emptyMC)
emptyMC.loadMovie (); {
gridx=3;
for (var i=0;i < 270;i++)
{
dot.duplicateMovieClip(“dot”+i,i);
mc=this[“dot”+i];
mc._x=gridx*i;
}
dot._visible=0;
}
stop();