/ Published in: ActionScript 3
Set movieclip to highest level in AS3
Expand |
Embed | Plain Text
this.setChildIndex(myMovieClip, (this.numChildren - 1));
Comments
Subscribe to comments
You need to login to post a comment.
agentOptimise on 01/14/12
1 person have marked this snippet as a favorite
Set movieclip to highest level in AS3
this.setChildIndex(myMovieClip, (this.numChildren - 1));
Subscribe to comments
You need to login to post a comment.
we can write this simply as below this.addChild(myMovieClip);