<?xml version="1.0"
encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="horizontal" verticalAlign="top"
horizontalAlign="center"
backgroundGradientColors="[0x000000,0x323232]" paddingTop="0" viewSourceURL="srcview/index.html">
<mx:Script>
<![CDATA[
[Bindable]
private var TitleText:String = "<b>VideoDisplay
Control:</b>" + "\n" + "Use the buttons to control the video.";
]]>
</mx:Script>
<mx:VBox backgroundColor="0x323232" width="594" height="327" backgroundAlpha="1" horizontalAlign="center"
borderThickness="4" borderColor="0x545454" cornerRadius="4" borderStyle="solid" paddingTop="5" >
<mx:Text width="75%" color="0xffffff" textAlign="center" htmlText="{TitleText}"/>
<mx:VideoDisplay id="myVid" height="242" width="446" source="Robo.flv" autoPlay="true"/>
<mx:HBox>
<mx:Button label="Play" color="0x00000"
click="myVid.play();"/>
<mx:Button label="Pause" color="0x00000"
click="myVid.pause();"/>
<mx:Button label="Stop" color="0x00000"
click="myVid.stop();"/>
</mx:HBox>
</mx:VBox>
</mx:Application>
No comments:
Post a Comment