flash audio control
flash audio control
Out of context: Reply #3
- Started
- Last post
- 5 Responses
- ********0
In the swf take the sound file off the timeline and export it for actionscript from the library.
Then attach it to a named object on the stage (an empty movie clip) using this code:
mySound.attachSound("idName")
mySound is your movie.
idName is the export name of the sound file.use this to play it.
mySound.start(0,999)
and then use the code in the tutorial to control the volume. Ignoring the part where you load an external mp3.