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

buttons with 2 actions

Status
Not open for further replies.

flashdunce

Technical User
Nov 30, 2006
9
0
0
US
OK i have a button that i want to apply 2 actions to. here are the codes

on (release) {gotoAndStop(36);

}

and the other code is

on (release) {
loadMovie("driver4.1 final copy.jpg","empty")

}

Now how would i properly combine theese 2 actions into 1 button? thanks
 
just in case other ppl have the same problem, ill post a solution, put both commands into the on() function so:

on (release) {

gotoAndStop(36);
loadMovie("driver4.1 final copy.jpg","empty");

}


------------------------------------
The number one Flash resource on the net, from Flash tutorials to Flash games, check out
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top