Mouse over, image appears, take the mouse off the button, the image stays there until you mouse over a different button, instead of having the image appear when you mouseover… and then disappear when u take ur mouse off the button?
To accomplish this you are probably going to want to use movie clips instead of buttons. You will create 5 mcs that have their respective picture in frame 1 and then nothing or text in frame 2. Also put stop actions on both frame 1 and 2. Remember to label the instance names of all the buttons (btn1, btn2, etc). On each of the 5 buttons you something like this.
on(rollOver){
//Show picture on btn 1
this.btn1.gotoAndStop(2);
//Do not show picture on the rest of the buttons
this.btn2.gotoAndStop(1);
this.btn3.gotoAndStop(1);
this.btn4.gotoAndStop(1);
this.btn5.gotoAndStop(1);
}
Good Point. Change your code like above. I edited the post above. Make frame 1 of each MC blank so your picture does not appear when you load the page.