| NSurveyor 2004-09-20, 7:17 am |
| Did you import your mp3 and then put it directly on the timeline? If you did,
you have to do it another way.
1.) Import your *.mp3.
2.) Open the library.
3.) Right-click on your mp3 and select Linkage...
4.) Check the box, Export for Actionscript
5.) Put in the ID name: wmpaud8
6.) Click OK.
7.) Select the frame that should have the sound play.
8.) Open the Actions Panel, and add the following Actionscript:
mySound = new Sound();
mySound.attachsound("wmpaud8");
mySound.start();
//---------------------------
//If you would like to have this loop
//Change mySound.start() to
//mySound.start(0,999);
//----------------------------
mySound.setVolume(%);
//END OF ACTIONSCRIPT
|