空气为ios - 声音

时间:2012-06-13 17:26:07

标签: ios air for-loop

早上好,我用AIR for iOS开发了一个简单的音板应用,但声音不起作用。我的意思是,当我打开应用程序时,我可以看到按下按钮来播放相对声音,但是当我按下按钮时声音不会播放。

这是我的AS3:

import flash.text.TextField;

//Array for buttons instances.
var buttonsArray:Array = new Array();
buttonsArray[0] = a01;
buttonsArray[1] = a02;
buttonsArray[2] = a03;

//Array for the sound clip names.
var soundArray:Array = new Array();
soundArray[0] = 'media/a01.mp3';
soundArray[1] = 'media/a02.mp3';
soundArray[2] = 'media/a03.mp3';

//This adds the mouse click event to the buttons.
for(var i:uint = 0; i < buttonsArray.length; i++){
    buttonsArray[i].addEventListener(MouseEvent.CLICK, buttonClicked);
}

astop.addEventListener(MouseEvent.CLICK, stopButtonClicked);


//This function stops any sound clip that is playing and
//plays the sound file thats clicked.

function buttonClicked(e:MouseEvent):void{
    SoundMixer.stopAll();

    for(var i:uint = 0; i < buttonsArray.length; i++){
        if(e.target == buttonsArray[i]){
            var s:Sound = new Sound();
            s.load(new URLRequest(soundArray[i]));
            s.play();
        }
    }

}

//This function adds a stop button

function stopButtonClicked(e:MouseEvent):void{
    SoundMixer.stopAll();
}

我在“AIR for iOS设置...”中包含了“media”文件夹,但仍无效。 怎么了?

1 个答案:

答案 0 :(得分:0)

解决。我只是将音频片段包含为.swc,一切正常。