flash sound help
flash sound help
- Started
- Last post
- 4 Responses
- zoiks
I need the sound to loop on rollOver. Right now it just plays once and stops... Any suggestions?
on (rollOver) {
gotoAndStop(2);
}
on (rollOut) {
gotoAndStop(1);
}
on (rollOver) {
mySound = new Sound();
mySound.attachSound("low.mp3");
mySound.start();
}
on (rollOut) {
mySound.stop();
}
- zoiks0
bump
- alig0
mySound.start(0, 99999);
first value for offset, second for loop
should do the trick
- zoiks0
BLESS YOU ALIG!
- ********0
you don't even need to do all that actionscript, button with a .wav connected to it, poof done. ;)