Firehawk734
Technical User
Alright here is what I have.
I have a main movie. I have buttons in the main movie. I have a target clip set up directly in the middle.
The way I have been doing things is, when a button is pushed, it loads an external movie into the target clip.
But the way I have been doing it, is defeating the purpose of the loader on my external movie.
Here's an example of the simple code I have been using on the button...
On (realease) {
LoadMovie("external.swf", "_root.targetclip"
;
then of course, on my target clip I have
OnClipEvent(load) {
play;
This is actually loading the movie before it even shows up i think, correct?? Then when I have the preloader at the start of the external movie, it just skips the preload and goes right into the main scene.
What I am asking is I guess, how do you just call the movie to go into a _root clip without loading it??? Or is there a better way to do this??? Thanks
I have a main movie. I have buttons in the main movie. I have a target clip set up directly in the middle.
The way I have been doing things is, when a button is pushed, it loads an external movie into the target clip.
But the way I have been doing it, is defeating the purpose of the loader on my external movie.
Here's an example of the simple code I have been using on the button...
On (realease) {
LoadMovie("external.swf", "_root.targetclip"
then of course, on my target clip I have
OnClipEvent(load) {
play;
This is actually loading the movie before it even shows up i think, correct?? Then when I have the preloader at the start of the external movie, it just skips the preload and goes right into the main scene.
What I am asking is I guess, how do you just call the movie to go into a _root clip without loading it??? Or is there a better way to do this??? Thanks