Hey All, any help would be great. I was wondering if there is a way to jump to a specific frame name when loading a new .swf file?
For example, I have my Main.swf which holds the navigation. Then I created 5 other .swfs to hold the content.
Depending what button is pushed, I will load the correct movie into a placeholder MC on the main screen.
However, I want to jump to a specific point within the new movie, can I do that? I am loading by levels in which I am using the level 0 each time so the new page takes over and the previous page is not transparent seeing through. So, on the buttons, I am using the basic:
on (release) {
loadMovieNum (“content1.swf”, 0);
}
then, content2, etc. So, if I want to jump to a certain frame name within ‘content1’ what code will get me there? Can I just use
on (release){
content1.gotoAndPlay(“category1”)
}
I tried that, but could not get it to work. Also, since I am loading by level, does that sort of over ride my loading into placehold or what is the major difference?
thanks, dave.