Results 1 to 4 of 4
Thread: mute all sounds
-
January 31st, 2006, 05:59 PM #1
mute all sounds
hey i'm making a flash banner ad for the company i work for and it's basically a non-interactive version of pong.
we wanted to have a blip sound when the ball hits the paddles or edges.
as such, the ball always hits at specific frames, so i attached the "blip" sound of the ball bouncing to a frame on the sound layer using the properties sound pulldown.
however, we only want the sound to play if the mouse is over the clip (to keep it from annoying users).
how can i control the volume of these sounds?
i created a movieclip the size of the banner and tried using the setVolume code but since the sound isn't invoked by A/S i dont think that works.
how can i control the volume of sounds on a layer, rather than A/S sounds?
(noob)
-
February 1st, 2006, 03:34 PM #2
nevermind, i figured it out.
first frame:
globalvolume = new Sound();
_root.globalvolume.setVolume(0);
button the size of the whole stage:
on (rollOver) {
_root.globalvolume.setVolume(100);
}
on (rollOut) {
_root.globalvolume.setVolume(0);
}
-
February 1st, 2006, 03:41 PM #3
you mean stopAllSounds() ?
work in progress
-
February 1st, 2006, 04:11 PM #4
i dont believe stopallsounds works on sounds that haven't been started yet.
Similar Threads
-
Syncronizing Sounds
By nishanthe in forum Flash IDEReplies: 0Last Post: January 30th, 2006, 06:30 AM -
synchronizing sounds w/ animation
By psychtaygar in forum Flash IDEReplies: 1Last Post: January 18th, 2006, 06:45 PM -
Looping sounds with a delay
By spoonman in forum Flash IDEReplies: 5Last Post: January 13th, 2006, 07:19 PM -
Mute all sounds
By punkerton in forum Flash IDEReplies: 10Last Post: January 10th, 2006, 01:58 PM -
relaxing sounds
By Kay in forum RandomReplies: 4Last Post: January 9th, 2006, 11:51 PM

Reply With Quote

Bookmarks