Navigation Problem

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();
}

How do I specify which frame to go to?

Please help.

Thanks,
Kel

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]

Sometimes the students will get to this page through a link and may need to go back so the last page in the history will be wrong.

Any other ideas?