Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Volume Control

Status
Not open for further replies.
Joined
Dec 24, 2001
Messages
857
Location
GB
Can Flash change the volume on a computer? I want to add a volume control to a movie which preferably changes 'Wave' volume.

Thanks
 
sure use setvolume

something like...main timeline

var level = 50;
mySound = new Sound();
mySound.loadSound(" true);
mySound.start();
mysound.setVolume(level);

then 2 buttons one plus one minus

for plus something like

on (release) {
_root.mysound.setVolume(_root.level+10);
_root.level = level +10;
}

and similar for minus

note that setvolume only takes values between 0 and 100 so stick some conditional statements in to test for these limits
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top