Okay i’m working on a new site and i have my buttons set up as movie clips with invisible buttons that tell them what to do. They pop up when you move your mouse over them and what i am wanting is when you click the button it stays in the gray state even if you move your mouse away from the button and goes away when you click another button.
on(rollOver){
gotoAndPlay("mouseover")
}
on(rollOut){
gotoAndPlay("mouseoff")
}
on(press){
gotoAndPlay("pressed")
}
Thats the code i have set for the invisible buttons.