PDA

View Full Version : Sound Loop?


ai_falcon
05-22-2002, 02:10 AM
I have the following actioins in my play button for a sound. Now how do i make the sound loop???

on (release) {
sound1.start();
}
on (release) {
gotoAndPlay(2);
}

Thanks in advance!

Billy T
05-22-2002, 06:59 AM
from the flash manual -

mySound.start([secondOffset, loop]);

ai_falcon
05-22-2002, 09:14 PM
Does not seem to work

:confused:

ai_falcon
05-22-2002, 09:44 PM
:p

Billy T
05-22-2002, 10:56 PM
try

mySound.start(0 , 50);

farafiro
05-23-2002, 05:51 AM
try to search a little falcon :
//Import yor sound and linkage it from the library with a name (I say pop)
//make your buttons as u do in the posted swf
// attach that code to the button
on(release){
mySound = new Sound
mySound.attachSound("pop")// don't forget the ""
mySound.start(0,999) // the 0 is the seconds that your sound starts after
// and the 999 is the number that your sound will loop with
}