AS2 → AS3: Adding Linked Symbols To The Stage
Download Example Files
This is just a quick little tip on how to add symbols you've marked for linking in the library to the stage. There is a new way to handle adding things to the display list and this is the old way:
PLAIN TEXT
Actionscript:
var holder_mc:MovieClip = this.createEmptyMovieClip("holder_mc", this.getNextHighestDepth());
var box_mc:MovieClip = holder_mc.attachMovie("box", "box1_mc", holder_mc.getNextHighestDepth(), {_x: [...]










