특별한딸기이야기
컴포넌트를 이용한 비디오 플레이어 본문
player.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="246" height="180">
<mx:Script>
<![CDATA[
public var source : String;
private function play() : void
{
vPlayer.source = source;
vPlayer.play();
}
]]>
</mx:Script>
<mx:VideoDisplay id="vPlayer" width="245" height="160" />
<mx:Button id="btnPlay" label="play" width="246" click="play()" x="-1" y="158"/>
</mx:Canvas>
Study.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:nsl="*">
<nsl:player x="24" y="10" height="193" width="246" source="12.flv" />
</mx:Application>
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="246" height="180">
<mx:Script>
<![CDATA[
public var source : String;
private function play() : void
{
vPlayer.source = source;
vPlayer.play();
}
]]>
</mx:Script>
<mx:VideoDisplay id="vPlayer" width="245" height="160" />
<mx:Button id="btnPlay" label="play" width="246" click="play()" x="-1" y="158"/>
</mx:Canvas>
Study.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:nsl="*">
<nsl:player x="24" y="10" height="193" width="246" source="12.flv" />
</mx:Application>