TheDoc
01-26-2002, 05:30 PM
I created a movie with multi movie symbols on the main time line. At the end of each movie symbol I placed:
tellTarget ("../") {
gotoAndPlay (whatever frame # for next sym);
}
stop ();
I do this to make sure that this sym is fully done before the next one starts. Once I was done with this movie I went back to create a preloader scene. After I completed this task I went to play the movie and it looped on the first movie symbol.
I know that the ../ tells it to back to root but once I moved scenes around and put the preloader scene first that becomes the main time line and ../ well tell it to go back to the preloader scene.
I tired a few _root.scene 1.instantace name but I got errors :/
I need to know how to tell the tell target to change scenes or a different way of doing things, I have looked over tons of flash sites for help on this and nobody that I found tells you the trick :)
So now I haev
Scene 1 (preloader)
Scene 2 (main movie with multi movie sym on the main time line)
My movie sym's jump back to ../ which is the preloader and I get a loop from that point.
Hope I gave enough information. Would love any advice for a solution or a better way of doing things.
Thanks,
TheDoc
tellTarget ("../") {
gotoAndPlay (whatever frame # for next sym);
}
stop ();
I do this to make sure that this sym is fully done before the next one starts. Once I was done with this movie I went back to create a preloader scene. After I completed this task I went to play the movie and it looped on the first movie symbol.
I know that the ../ tells it to back to root but once I moved scenes around and put the preloader scene first that becomes the main time line and ../ well tell it to go back to the preloader scene.
I tired a few _root.scene 1.instantace name but I got errors :/
I need to know how to tell the tell target to change scenes or a different way of doing things, I have looked over tons of flash sites for help on this and nobody that I found tells you the trick :)
So now I haev
Scene 1 (preloader)
Scene 2 (main movie with multi movie sym on the main time line)
My movie sym's jump back to ../ which is the preloader and I get a loop from that point.
Hope I gave enough information. Would love any advice for a solution or a better way of doing things.
Thanks,
TheDoc