display


  <mx:VideoDisplay id="myVid" height="100%" width="100%" source="explorer-controls-assets-phone.flv" autoPlay="false"/>
  

controls


  <mx:HBox right="100" bottom="10">
  <mx:Button borderColor="0" fillAlphas="[0, 0]" label="play" click="myVid.play();"/>
  <mx:Button borderColor="0" fillAlphas="[0, 0]" label="pause" click="myVid.pause();"/>
  <mx:Button borderColor="0" fillAlphas="[0, 0]" label="stop" click="myVid.stop();"/>
  <!--
  <mx:Button right="20" borderColor="0" fillAlphas="[0, 0]" label="camera" click="myVid.attachCamera(camera);"/>
  -->
  </mx:HBox>
  </mx:Application>