Title : Browser History
Usage : Flash MX
Comments : Today i discovered some thing.. which i never thought. Now i can use forward and back buttons in a browser to jump from frames or scenes. This new feature uses Named anchor in a frame to jump forward and back.
Description : here are the steps:
1. Let us start, now create to button(foward and back)
2. Insert 3 more Scenes and paste the same button in the first frame
3. In the Scene 1 add a new layer then select the first keyframe. Now, give a anchor name "anchor1" in property inspector(see the image). These anchored name used to jump to the particular frame in the flash.

4. Repeat step 3 for other 3 scenes with other anchored names.
5. Select the forward and back buttons and add below script to each
Back button script
on(release){
gotoAndPlay("anchor4");
getURL("history04.html#anchor4");
}
Forward button script
on(release){
gotoAndPlay("anchor2");
getURL("history02.html#anchor2");
}
6. Repeat the step 5 for other scenes with respective anchored names.
7. This is importent step, for anchor name work in brower we have publish setting. In publish setting select html with the option "Flash with Anchor Named" selected in the drop down(see the image below). Now Publish, then link OK.
8. When we publish flash will add a scirpt to the html file.
9. Used the same script for the other html page.
Thanks for reading...