I have a flash webpage where each “page” is called upon by a variable.
var nav
When you press the inventory button (labeled “Inventory”)
on(release){
nav = “Inventory”;
gotoAndPlay(_root._currentframe +1);
}
Simple _root directory actionscript takes it to it’s destination-
gotoAndPlay(nav);
Here is my issue- the inventory takes you to an external website. Is there a way when users hit the back button on the external website pages (getauto.com) to return to the original inventory page (texasbest website) instead of going through the whole opening sequence, is there any way to go back to the “Inventory” page of the originating website??
To see what I am talking about, I have listed the steps below-
Go to http://fincherstexasbest.com
Click on the “Inventory” button.
Select any button in the list below. (Click the FORD button as an example)
It brings you to www.getauto.com for that dealerships list of vehicles sold.
Now if you click the banner to go BACK to the website, it just takes you to the beginning of the original website but NOT back to the “Inventory” page.
Is there a way in HTML/JavaScript to make the Flash page go back to the Inventory page??
Thanks in advance!!!
Darren