Mar 19, 2003 #1 thatrenowned MIS 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
Can Flash change the volume on a computer? I want to add a volume control to a movie which preferably changes 'Wave' volume. Thanks
Mar 19, 2003 #2 billwatson Instructor Joined Dec 18, 2002 Messages 2,312 Location CA sure use setvolume something like...main timeline var level = 50; mySound = new Sound(); mySound.loadSound("http://www.mysite/sound.mp3", 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 Upvote 0 Downvote
sure use setvolume something like...main timeline var level = 50; mySound = new Sound(); mySound.loadSound("http://www.mysite/sound.mp3", 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