help with embedded flash flv sound
help with embedded flash flv sound
Out of context: Reply #1
- Started
- Last post
- 5 Responses
- orkman0
Yeah do this. On your first frame:
mySound = new Sound();
Then for a SOUND OFF button do:
on (release) {
mySound.setVolume(0);
}Then on that button on the next frame on another button to do a SOUND ON type:
on (release) {
mySound.setVolume(100);
}Works for me!