I have a button in an swf that, when clicked, goes to a frame label in a separate swf. This frame label has code that controls loading the external swf’s into a container. What I am trying to achieve is having all the swf’s work like an internet browser. Forward/backwards/etc.
Here’s the code on my forward button:
on (release) {
_root.site_mc.gotoAndPlay(“home”);
}
This loads the next swf in the sequence. Now I want, from this swf “home”, to be able to click it’s back button and go to the previous swf, but, at the last section instead of starting the previous swf at frame 1.
So basically I need something like this, but, have no idea how.
on (release) {
_root.site_mc.gotoAndPlay("task.swf/framelabel=part3);
Thanks to anyone who can give me some help/ideas.