Flash ActionScripting
Flash ActionScripting
Out of context: Reply #1
- Started
- Last post
- 5 Responses
- johnnyw0
You would control the object externally, so you wouldn't add code to it:
var mc:MovieClip;
function movieClipAction():Void {
mc = attachMovie("my_mc", "mc1", this.getNextHighestDepth());
mc.doSomething...
}movieClipAction();