# Is this possible?

**URL:** https://forum.kirupa.com/t/is-this-possible/130195
**Category:** Uncategorized
**Created:** [December 2, 2004, 9:38am UTC](https://forum.kirupa.com/t/is-this-possible/130195 "2004-12-02T09:38:36Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![thegap](https://avatars.discourse-cdn.com/v4/letter/t/3d9bf3/32.png) [@thegap](https://forum.kirupa.com/u/thegap)
#### Post date: [December 2, 2004, 9:38am UTC](https://forum.kirupa.com/t/is-this-possible/130195/1 "2004-12-02T09:38:36Z")

</div>

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?
