PDA

View Full Version : rollOver gotoFrame script


donkeyshoes
04-10-2005, 12:53 PM
greetings-

i would like to create a button that sends the movie viewer to a certain frame upon a rollover.

the button is called 'mission_btn' and the instance is called 'mission'. i'd like viewers to be sent to frame 2 from any frame in a 10-12 frame movie.

the 'mission' button is part of a navigation that has five other buttons. i'd like to enable each of the buttons a similar function.

any help with the proper syntax for such a script would be appreciated.

cheers,

donkeyshoes

Doccie
04-10-2005, 12:59 PM
select the button and go to the actionspanel.
place this piece of code there.
on(rollOver){
gotoAndStop(2);
}
If I understand you correctly, this is what you're looking for.

donkeyshoes
04-10-2005, 01:43 PM
cheers!