2010年05月08日   Flex   7,450 次浏览
使用flex制作了一个简单的音乐播放器,主要是用flex的sound,chanel类,现在将代码贴在这里,大家可以学习一下,也可以利用自己所学知识将其进行扩展。
代码:
<?xml version=”1.0″ encoding=”utf-8″?>
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute”>
<mx:Script>
<![CDATA[
private var sound:Sound;
private var myUrl:URLRequest;
private var channel:SoundChannel;
private var songPath:String;
public function playMusic():void{
sound = new Sound();
songPath = “Nobody.mp3″;
sound.load(new URLRequest(songPath));
channel = sound.play(0);
}
]]>
</mx:Script>
<mx:Panel x=”222″ y=”48″ width=”249″ height=”237″ layout=”absolute” title=”音乐播放器”>
<mx:HBox x=”19″ y=”23″ width=”200″ height=”35″>
<mx:Button height=”31″ label=”播放” width=”60″ click=”playMusic()”/>
</mx:HBox>
</mx:Panel>
</mx:Application>
>>> Hello World <<<
这篇内容是否帮助到你了呢?
如果你有任何疑问或有建议留给其他朋友,都可以给我留言。