I’m trying to make a website. Mostly HTML pages but I decided to make a flash menu to add some umph to it.
Now here is what I’m thinking. Assume that the site have 4 links on its menu, namely ONE, TWO, THREE and FOUR. I’m on page ONE, being that it is the index page, I can set an indicator on my flash menu that I am on that page. But when I clicked on TWO, it then loads page TWO but just using the same flash menu, the indicator is still on the ONE button, from the default setting.
Is there a way to do this? When I click FOUR, it will load the FOUR page and have me same flash menu have an indicator that I’m on the FOUR page. It seems I need to pass a parameter or something that should be saved somewhere and retrived back by the flash menu.
My rough sample:
ONE.clicked{
indicator = “one”
}
TWO.clicked{
indicator = “two”
}
…
FOUR.clicked{
indicator = “four”
}
else
indicator = “one”
}
and in the beginning of the flash menu, it checks whether the “indicator” string is ONE, TWO, etc.
like if (indicator=TWO) {
mc_oneindicator.hidden
mc_twoindicator.visible
mc_threeindicator.hidden
mc_fourindicator.hidden
}
Sorry for the idiot codes, I dont know AS that much. I think its possible, isn’t it?