I have a back button that should take you back from the first frame of one url to the last frame of another. However I can’t figure out how to do this.
I’ve got this
on (release) {
getURL(“introduction2.html”, “_self”);
stopAllSounds();
}
If you want your button to work like the browser’s back button then apply this javascript/actionscript to your button:[AS]on (release) {
getURL(“about :history.back(-1)”);
}[/AS]