Our Flash tutorials provide you with step-by-step instructions on how to create beautiful Flash animations and integrate them into your website.  Home Flash & Swish Flash Tutorials Control Sound Volume with ActionScript
Your Ad Here

Control Sound Volume with ActionScript


This tutorial was written for the Flash Designer software, which allows you to create flash animations in a much easier way than by using Macromedia Flash. You may get Flash Designer here.

Click "Play" and then arrows to adjust sound volume:

Minimum Flash Designer version: 5.0.23.2

Download source project t1052.zip (826 kb)

1. Launch Flash Designer and set movie dimensions 180 x 180 (or any desired).

2. Change frame delay to "Stop".

3. Import sound "sound1.mp3" (Movie > Import Sound)

4. Choose "Frame" > "ActionScript" and paste the code:

mySnd = new Sound();
mySnd.attachSound("sound1.mp3");
volume = 100;

5.Choose "Frame" > "Insert from Gallery" and insert play, stop, up and down buttons.

6. Choose "Movie" > "Insert Flash Designer Clip" and insert "equalizer.sfd" file. Choose "Item" > "Placement Properties" and check "ActionScript Target"

7. Define "OnClick" action for Up arrow:

volume = volume + 10;
if(volume>100) volume = 100;
mySnd.setVolume(volume);

8. Define "OnClick" action for Down arrow:

volume = volume - 10;
if(volume<0) volume = 0;
mySnd.setVolume(volume);

9. Define "OnClick" action for Play arrow:

mySnd.start(0,100);
equalizer.gotoAndPlay("Frame 2");

10. Define "OnClick" action for Stop button:

mySnd.stop();
equalizer.gotoAndPlay("Frame 1");

Hit F9 for preview.



Author's URL: Selteco.com
Thank you for voting.
Rate this Materials:
Bad 
1 2 3 4 5 Excellent
print this page subscribe to newsletter subscribe to rss

Internet & computing Flash is a vector-based moving graphics format created by Macromedia for the publication of animations on the World Wide Web. More Flash & Swish: Most Popular Materials | Fresh Materials | More Flash Tutorials at FlashPerfection.com

Add comments to "Control Sound Volume with ActionScript"

Only registered users can write comment

Reader's comments