<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2008 Christopher Olsen <cwolsen@domainatlantic.com> $Id$ --> <tvWindow xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" alpha="1.0" backgroundAlpha="1.0" cornerRadius="7" title="Channel List" width="475" height="350" borderAlpha="1" borderThicknessLeft="0" borderThicknessRight="0" borderThicknessBottom="0"> <mx:Script> <![CDATA[ [Bindable] public var tvMaster:Master; private function joinChan():void { tvMaster.changeChannel(tvMaster.channels[chanGrid.selectedIndex].@channel); } /* End joinChan() */ ]]> </mx:Script> <mx:DataGrid id="chanGrid" dataProvider="{tvMaster.channels}" width="100%" height="100%" doubleClick="joinChan()" doubleClickEnabled="true"> <mx:columns> <mx:DataGridColumn headerText="Channel" dataField="@channel" width="75" /> <mx:DataGridColumn headerText="Users" dataField="@users" width="50" /> <mx:DataGridColumn headerText="Topic" dataField="@topic" /> <!-- <mx:DataGridColumn headerText="Current Video" dataField="@cursong" width="300" /> --> </mx:columns> </mx:DataGrid> </tvWindow>