Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mouse over, play Movie Symbol

Status
Not open for further replies.

mark01

Technical User
Jan 17, 2001
600
US
I've been frustrated for 4 hours trying to make a simple Mouse over event that will play a Movie Symbol in Flash MX 2004.

This is what I've done...
Created a button symbol, and a Movie Symbol. I've successfully called the Movie Symbol when I click the button using the following Action Script:

on ( release ) {
gotoAndStop( "Movie" );
}

Is there a way to make the "Movie" play when the mouse hovers over the button?

Thanks
 
give the button an instance name such as my_btn:

example:
Code:
my_btn.onRollOver = function(){
   such as gotoAndStop( "Movie" );
}

Regards,

Martin

Computing Help And Info:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top