When creating some extended MovieClip to the stage using AS on Actions of some frame, on which layer this MovieClip is created? On layer where Actions were? If I wanna move it down, for example, can I simply move the Actions layer? And by the way, one more question, what if I would not create Actions layer and write all the code on some used on开发者_如何转开发e? :SS
whenever you add objects through ActionScript it will not consider your layers it will add on the top of the display list. and for traversing into movieclips u can use MoveiClip(root) or MovieClip(parent). check out addChildAt() and addChild() methods of ActionScript for more info.
Hope u mean nested MovieClips
http://www.quip.net/blog/2007/flash/trust-me-as3-its-a-movie-clip
精彩评论