在Adobe AIR中嵌入声音文件时出现问题

时间:2011-05-12 17:25:52

标签: air adobe audio

如果我使用flash.media.Sound类,我可以在Adobe AIR中播放声音文件,但我已请求URL来执行此操作。我需要做的是将其作为嵌入式资产加载到AIR应用程序中。我尝试过使用mx.core.media库,但这也不起作用。

这是一个显示问题的简单应用程序:

                                     

<fx:Script>
    <![CDATA[
        // Embed MP3 file.
        import flash.media.Sound;
        import mx.core.SoundAsset;
        [Embed(source="ding.mp3")]
        [Bindable]
        public var sndCls:Class;
        private var myReq:URLRequest = new URLRequest("ding.mp3");
        private var snd:Sound;
        private var sndAsset:Sound;
        private var myChannel:SoundChannel;
        protected function myButton_clickHandler(event:MouseEvent):void
        {
            sndAsset = new sndCls() as SoundAsset;
            myChannel = sndAsset.play();
        }

        protected function myReqButton_clickHandler(event:MouseEvent):void
        {
            snd = new Sound(myReq);
            snd.play();
        }

    ]]>
</fx:Script>

<fx:Declarations>
</fx:Declarations>
<s:Button id="myButton" label="Play Embedded" click="myButton_clickHandler(event)"/>
<s:Button id="myReqButton" label="Play Requested" click="myReqButton_clickHandler(event)"/>

您需要在同一目录中使用ding.mp3来测试它。

欢迎任何建议

由于

史蒂夫

1 个答案:

答案 0 :(得分:0)

嵌入式资源无法绑定,因为它是常量。尝试删除[Bindable]。如果这没有帮助,发布错误消息(如果有的话)或描述症状有什么问题。