I’m sure there are a couple different ways of doing this… one way would be to use a Movie Clip as a Button. Inside the Movie Clip you would have the motion tweens creating the OVER effect, and then another set of tweens for the OUT effect. The script on the Movie Clip would be something like:[AS]on (rollOver) {
this.gotoAndPlay(“over”);
}
on (rollOut) {
this.gotoAndPlay(“out”);
}[/AS]Over and Out being frame labels within the Movie Clip.