GET
THE FLASH SOURCE (165K)
a few notes
Making a Reset Action
It can be useful to make all of the loops " reset " at the push of a
button. There's a real design flaw in that 3 keyframe "loop" movie
clip (get the .fla if you don't
know what this means).
What you need to do is give each of your loop movie clips an instance name when
you put them on the stage.
Let's say I have 4 looped clips. I gave them the names:
drumloop, bassloop, bigmess and weirdgroove
What I need to do now is to make the button take all of the loops that are playing (or not playing) and send them all back to frame1 of whatever movie clip they are in. Also, I'm going to stop all of the sounds.
On (Press)
On (Press)
Begin Tell Target ("/drumloop")
Go to and Stop (1)
End Tell Target
Begin Tell Target ("/bassloop")
Go to and Stop (1)
End Tell Target
Begin Tell Target ("/bigmess")
Go to and Stop (1)
End Tell Target
Begin Tell Target ("/weirdgroove")
Go to and Stop (1)
End Tell Target
Stop All sounds
End On