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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Button actions

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Can you tell me if you can put multiple actions on buttons. Eg, When a button is clicked, it plays a certain frame till the end of the timeline, then it loads a movie.
 
Multiple actions should be easy no?
you just put something like

on(release) {
with(_root.somecrap){
play()
}
with(_root.someothercrap){
stop()
}
}

Or if you want the other movie to stop after the first is done you can put the action to stop the other movie in the last frame from the first movie.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top