Newer
Older
TCATube / TCATube.mxml
@reddawg reddawg on 1 Oct 2007 1 KB TCATube
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
	<![CDATA[
	[Bindable]
	public var userList:XMLList =
		<>
		<mi label="TCA" />
		<mi label="MrOlsen" />
		</>;

	[Bindable]
	public var queueList:XMLList =
		<>
		<mi label="DHT - Listen to your heart" />
		<mi label="File & Peri - Anthem" />
		</>;
		
    [Bindable]
    private var ttMBC:XMLList =
      <>
        <mi label="Settings" data="0" />
        <mi label="Help" data="6" />
      </>; 
	]]>
</mx:Script>
	<mx:MenuBar x="0" y="0" width="100%" dataProvider="{ttMBC}" labelField="@label"></mx:MenuBar>
	<mx:TextArea x="10" width="401" height="366" y="30" text="TCA: Isn't This Video Tubular?&#xa;MrOlsen: Yes Totally!"/>
	<mx:VideoDisplay y="30" width="352" height="288" autoPlay="true" x="530">
		<mx:source>http://ubuse.ubixos.com/~miuzzolino/mvids/D.H.T.%20feat%20Edm%e9e%20Daenen%20-%20Listen%20To%20Your%20Heart.avi</mx:source>
	</mx:VideoDisplay>
	<mx:List y="30" height="366" width="110" x="415" dataProvider="{userList}" labelField="@label"></mx:List>
	<mx:List y="326" height="264" width="350" x="532" dataProvider="{queueList}" labelField="@label"></mx:List>
	<mx:TextInput x="10" width="453" y="404"/>
	<mx:Button x="470" label="Send" y="404"/>
	<mx:DataGrid x="10" y="464" width="514" height="126">
		<mx:columns>
			<mx:DataGridColumn headerText="Title" dataField="col1"/>
			<mx:DataGridColumn headerText="Genre" dataField="col2"/>
			<mx:DataGridColumn headerText="Length" dataField="col3"/>
		</mx:columns>
	</mx:DataGrid>
	<mx:Button x="10" y="434" label="Search"/>
	<mx:TextInput x="83" y="434" width="441"/>
	
</mx:Application>