package { import com.exanimo.media.SoundPlayer; import flash.display.Sprite; /** * * .. * * @langversion ActionScript 3 * @playerversion Flash 9.0.0 * * @author Matthew Tretter (matthew@exanimo.com) * @since 2008.03.14 * */ public class SoundPlayerExample1 extends Sprite { /** * * */ public function SoundPlayerExample1() { var soundPlayer:SoundPlayer = new SoundPlayer(); soundPlayer.play('The Tigers Have Spoken.mp3'); soundPlayer.pan = 1; } } }