Hello, I am trying to work out arrays…
I have created an array, which contains all of my menu items. All I want is, when the pointer rolls over one menu item MC, the others disappear.
var titles:Array = new Array(“contact_mc”,“food_mc”,“links_mc”,“test_mc”,“look_mc”);
contact_mc.onRollOver = function(){
titles.pop(“contact_mc”);
titles._alpha = 0; <<< this is what I want, BUT how do I write the correct Syntax?
}
And does flash know - the items in the array are MC’s … or just strings! ?
Thanks!!