2013-01-19 36 views
1

我正在製作一個簡單的使用Adobe Flash CS6和ActionScript 3的移動無線電應用程序。下面的代碼適用於Flash Player 11.2,但在iOS 3.2,Android和桌面。聽不到聲音,但也沒有發生錯誤。AS3 Shoutcast streaming在AIR 3.2中不起作用

var channel:SoundChannel; 
var sound:Sound = new Sound(); 

sound.load(new URLRequest("http://groove.wavestreamer.com:9579/")); 

channel = sound.play(); 

回答

0

在您的sound.load例如

 sound = new Sound(); 
    sound.loadSound ("http://groove.wavestreamer.com:9579/;",true); 

還檢查了this