Ok, so this might seem like a stupid question, please try and see my predicament (at least that's what I tell myself):
I have a flash, which loads button with Actionscript 2.0. Now, my swf is no longer than 1 frame, and in my Actionscript, I refer a lot to _root.
Is there a way I can preload my movie without interfering with the _root references. Because I tried doing an onEnterFrame trace of the movie like this:
_root.onEnterFrame = function() {
trace(this.getBytesLoaded());
}
But this does not trace anything until the movie is loaded completely.
Any help would be much appreciated.