on mouseUp -- only go to new frame after 3 clicks -- on any of the buttons - assume 3 buttons -- make a variable called 'cc' to keep count -- make it global so all parts of movie -- can access it -- this example shows the script to attach to all the buttons -- remember the '--' is only there for explanation -- not necessary for the script to funciton -- in this example, it goes to new frame when 3 buttons clicked global cc beep -- add 1 to whatever cc was cc=cc+1 -- check if cc is greater than 3 -- that means buttons were clicked 3 times if cc > 3 then -- go to new frame - after 3 clicks go frame "prize" -- reset cc so next time start at 0 cc = 0 end if end ==================== on mouseUp -- only go after each of 3 buttons were each clicked -- you could make it rollovers or whatever -- assumes 3 different buttons/ each has variable associated -- this example is for the red button = r -- you would need need similar script for each button -- in this example r=red, g=green,b=blue colored buttons -- the g and b would be changed in the other scripts -- r gets changed here -- other buttons would be the similar -- except different variable would be changed -- make r,g,b variables global so all movies -- can talk to them global r,g,b beep -- change r to 1 r = 1 -- check if r, g, and b are each = 1 -- that would only be true if each button -- had been clicked at least once if r=1 and g=1 and b=1 -- go to new frame - after clicks on each go frame "prize" -- reset r, b, & b r=0 g=0 b=0 end if end