SoundManager
Kind of class: | public class |
---|---|
Package: | |
Inherits from: |
|
Classpath: | org.asaplibrary.util.sound.SoundManager |
File last modified: | Friday, 13 May 2011, 22:20:36 |
-
Add a sound in the library as follows:
var name:String = "linkageIDOfSoundInLibrary"; SoundManager.getInstance().addSound(new (getDefinitionByName(name)) as Sound, name);
Then play the sound as follows:SoundManager.getInstance().playSound(name);
Sounds can be added only once for a particular name, so make sure they are removed withremoveSound(name)
when a swf containing sounds is removed. External sounds (mp3's on the file system or server) can be added to the list of available sounds withaddExternalSound()
, after which they can be played and controlled by name. They can also be played directly withplayExternalSound()
, which is meant for external sounds that need less control. Sounds that are currently being played, or present in the list, can be muted and unmuted withmuteAllSounds()
andunmuteAllSounds()
. Muting is also applied to sounds that are started after mute is set. These sounds will start normally, but will not be audible if muting is applied. The overall sound volume can be set withsetOverallVolume()
. This multiplies the volume of individual sounds with the overall volume value.
Summary
- SoundManager ()
-
doShowErrors
: Boolean
- If true, an error is logged when a sound is not found for playing, stopping, setting volume etc.
- getInstance () : SoundManager
-
addSound
(inSound:Sound, inName:String) : void
- Add a sound for specified name.
-
addExternalSound
(inURL:String, inName:String, inStartLoad:Boolean = false, inStartPlay:Boolean = false) : void
- Add an external sound for specified name.
-
playSound
(inName:String, inLoop:Boolean = false, inPlayCount:int = 1) : void
- Play sound with specified name; if the sound is already playing, it is stopped to prevent stacking.
-
playExternalSound
(inURL:String, inLoop:Boolean = false, inVolume:Number = 1) : void
- Play an external sound without explicit name - inURL is defined as name for sound; if a sound with specified url is already playing, it is stopped and removed.
-
stopSound
(inName:String) : void
- Stop sound with specified name.
-
setSoundVolume
(inName:String, inVolume:Number) : void
- Set volume of sound with specified name.
-
setOverallVolume
(inVolume:Number) : void
- Set multiplication factor for all sounds.
-
muteAllSounds
() : void
- Mute all sounds that have been added to the SoundManager.
-
unmuteAllSounds
() : void
- Unmute all sounds that have been added to the SoundManager.
-
removeSound
(inName:String) : void
- Remove sound with specified name.
-
setMuteSwitch
(inSwitch:ISelectable) : void
- Set mute switch; any class that implements ISelectable can be used for this.
- setPan (inSoundName:String, inPanning:Number) : void
- toString () : String
Constructor
SoundManager
Class properties
doShowErrors
If true, an error is logged when a sound is not found for playing, stopping, setting volume etc. Errors for adding sounds, or load errors, are always logged.
Class methods
getInstance
Instance methods
addExternalSound
Add an external sound for specified name.
addSound
Add a sound for specified name.
muteAllSounds
Mute all sounds that have been added to the SoundManager.
playExternalSound
Play an external sound without explicit name - inURL is defined as name for sound; if a sound with specified url is already playing, it is stopped and removed.
playSound
Play sound with specified name; if the sound is already playing, it is stopped to prevent stacking.
removeSound
Remove sound with specified name.
setMuteSwitch
Set mute switch; any class that implements ISelectable can be used for this. The state of the switch is updated according to the current mute state.
setOverallVolume
Set multiplication factor for all sounds. Normally this would fall in the range 0 < inVolume < 1.
setPan
setSoundVolume
Set volume of sound with specified name.
stopSound
Stop sound with specified name.
toString
- EventDispatcher.toString
unmuteAllSounds
Unmute all sounds that have been added to the SoundManager.