https://github.com/singuerinc/as3-audio
  
  
    Audio Management in Actionscript 
    https://github.com/singuerinc/as3-audio
  
        Last synced: 7 months ago 
        JSON representation
    
Audio Management in Actionscript
- Host: GitHub
- URL: https://github.com/singuerinc/as3-audio
- Owner: singuerinc
- Created: 2011-06-15T22:52:02.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2011-06-27T08:51:29.000Z (over 14 years ago)
- Last Synced: 2025-02-08T03:43:36.711Z (9 months ago)
- Language: ActionScript
- Homepage:
- Size: 24.8 MB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 0
- 
            Metadata Files:
            - Readme: README.textile
 
Awesome Lists containing this project
- awesome-actionscript-sorted - as3-audio - Audio Management in Actionscript (Multimedia / Sound)
README
          h2. as3-audio
Audio Management for AS3 built on as3-signals.
h3. Overview
Audio provides an easy way to work with sounds on Actionscript 3.
h3. Syntax
var audio:IAudio = new Audio('id', 'path/to/sound.mp3');
audio.volume = .5;
audio.completed.add(onSoundComplete);
audio.play();
var audio:IAudioX = new AudioX('id', SoundClass);
audio.play();
audio.fade(1000, 1, 0); //time, to, from (optional)
h3. Some Features
* Unit tested.
* Can be configured via XML.
* No Events, as3-signals.
* Interfaces.
* Works with Robotlegs: http://www.robotlegs.org