PDA

View Full Version : Flash button loading HTML


forrestgump
10-28-2004, 02:21 PM
I have a flash button that loads two HTML frames, a main frame, and a bottom frame with thumbnail images in it. My problem is after using the flash button, I hit the back button on my browser and only the bottom frame goes back one page. If I hit it a second time, then the main page goes back. What I would like to happen is obvious, both HTML frames need to go back at the same time after hitting the browsers back button once. Here is the code I have put in my flash button....



on(release) {
getURL("../../minnesota/pages/DSC03384.htm", "Top Frame");
getURL("../../minnesota/ThumbnailFrame.htm", "Bottom Frame");
}


I have also tried it this way but I get the same failed result.


on(release) {
getURL("../../minnesota/pages/DSC03384.htm", "Top Frame");
}
on(release) {
getURL("../../minnesota/ThumbnailFrame.htm", "Bottom Frame");
}


The web address where this problem is located is at www.photographcolorado.com (http://www.photographcolorado.com/colorado/index.htm) I still can't figure out the problem and don't really have a clue how to fix it. If someone would like to look at my FLA files I would be willing to email them for someone to look at. Thanks in advance for the help.

brolife
11-09-2004, 02:18 AM
Theres nothing wrong with your fla.

This is just a predefined thing with the browsers is the back button will go back to the LAST file open.. notice if you hit the back button again it will go back to the other file too.

When building webpages with frames its crucial you dont have your nav setup within your content...

throw your nav into your thumbnail section seems more logical to me... not where the feature is...