특별한딸기이야기

컴포넌트를 이용한 비디오 플레이어 본문

딸기 공부방/flex

컴포넌트를 이용한 비디오 플레이어

특별한녀석 2008. 12. 27. 19:18
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>

'딸기 공부방 > flex' 카테고리의 다른 글

커스텀 이벤트  (0) 2008.12.27
커스텀 프로퍼티  (0) 2008.12.27
컴포넌트 만들기  (1) 2008.12.27
http로 서버에 정보 전달하기  (0) 2008.12.27
xml 통신  (0) 2008.12.27