movieClip.onLoad
movieClip.onLoad
Out of context: Reply #11
- Started
- Last post
- 12 Responses
- jkosoy0
Yea why not create a prototype or a global function?
MovieClip.prototype.doSomething = function()
{};
This seems like the perfect time for that sort of thing...
And then when on frame 1 of these movieclips you're attaching just say this.doSomething();
Unless I'm mistaken won't that be the same basic effect with minimal difference on the processor?