all groups > flash actionscript > october 2006 >
You're in the

flash actionscript

group:

Movie levels


Movie levels infoVac
10/11/2006 9:57:45 PM
flash actionscript:
is it possible to put a movie clip lets say on level 2 in my FLA file so that i
can load a movieclip under it on level 1 so that it is under the level 2 movie
clip? If this is possible how would i do this? please and thank you.
Re: Movie levels adam NO[at]SPAM blueapplestudio
10/11/2006 10:16:07 PM
The below code loads 2 MovieClips from the library onto the stage. The square
is loaded first, and then the triangle is loaded below it. The "2" and the "1"
in the parenthesis denote the depth of the MovieClips.

attachMovie("mcSquare", "mcSquare",2);
attachMovie("mcTriangle", "mcTriangle",1);
AddThis Social Bookmark Button