Flash Lite 1.x ActionScript Language Reference |
|
|
|
| Flash Lite Global Functions > stopAllSounds() | |||
Flash Lite 1.0.
stopAllSounds()
None.
Function; stops all sounds currently playing in a SWF file without stopping the playhead. Sounds set to stream will resume playing as the playhead moves over the frames that contain them.
The following code could be applied to a button that when clicked, stops all sounds in the SWF file:
on(release) {
stopAllSounds();
}
|
|
|
|