Documentation for classes includes syntax, usage information, and code samples for methods, properties, and event handlers and listeners for those APIs that belong to a specific class in ActionScript. The classes are listed alphabetically. If you are not sure to which class a certain method or property belongs, you can look it up in the Index.


 ClassPackageDescription
 DelayFilter
com.anttikupila.media.filters 
 FlangeFilter
com.anttikupila.media.filters 
 IFilter
com.anttikupila.media.filters 
 LowpassFilter
com.anttikupila.media.filters 
 MoogFilter
com.anttikupila.media.filters 
 SoundFX
com.anttikupila.media Provides an easy way to transform audio output in real time with a syntax familiar from display object filters var sound : SoundFX = new SoundFX( new URLRequest( "music.mp3" ) ); sound.filters = [ new CutoffFilter( 12000 ) ]; sound.play( ); SoundFX also provides greated control over buffering and precise seeking var sound : SoundFX = new SoundFX( null, null, 3 ); // 3 seconds need to be loaded before playback starts sound.load( new URLRequest( "music.mp3" ) ); sound.play( ); // a bit later..
 StreamingEvent
com.anttikupila.events