> Brother , esse exemplo pode ser útil pra vc...
> http://www.rlog.com.br/capture/capture.html
> T+ !
> 2008/7/3 felipe business <felipebussi...@gmail.com>:
> > Quero Controlar todos os videos usando somente 3 botoes fixos.
> > Estou tentando aplicar o PAUSE primeiro, mas nao estou conseguindo.
> > Alguem pode me ajudar?
> > Aqui esta.
> > <?xml version="1.0"?>
> > <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
> > layout="absolute" width="486" height="464"
> > backgroundGradientAlphas="[1.0, 1.0]"
> > backgroundGradientColors="[#000000, #000000]">
> > <mx:Script>
> > <![CDATA[
> > [Bindable]
> > public var selecionadoItem:Object;
> > ]]>
> > </mx:Script>
> > <mx:Model id="myvideos">
> > <videos>
> > <videos label="F-BSS VIDEOS BUFET"/>
> > <videos label="Carla Bruni" data="http://
> > felipewebfree.webng.com/carlabruni.flv"/>
> > <videos label="Biohazard" data="http://felipewebfree.webng.com/
> > biohazard.flv"/>
> > </videos>
> > </mx:Model>
> > <mx:Model id="myvid">
> > <videos>
> > <videos label="F-BSS VIDEOS BUFET2"/>
> > <videos label="Carla Bruni" data="http://
> > felipewebfree.webng.com/carlabruni.flv"/>
> > <videos label="Biohazard" data="http://felipewebfree.webng.com/
> > biohazard.flv"/>
> > </videos>
> > </mx:Model>
> > <mx:Panel height="375" width="413"
> > paddingTop="10" paddingBottom="10" paddingLeft="10"
> > paddingRight="10" x="36.5" y="43" layout="absolute"
> > backgroundColor="#C82828">
> > <mx:ComboBox id="source" width="184" color="blue"
> > dataProvider="{myvideos.videos}"
> > change="this.selecionadoItem=ComboBox(event.target).selectedItem"
> > x="10" y="10" height="31"/>
> > <mx:VBox width="373" x="10" y="49" height="244">
> > <mx:Label text="Voce Selecionou: {selecionadoItem.label}"
> > width="351"/>
> > <mx:VideoDisplay source="{selecionadoItem.data}"
> > width="372" height="218" autoPlay="true"/>
> > </mx:VBox>
> > <mx:ComboBox id="so" width="184" color="blue"
> > dataProvider="{myvid.videos}"
> > change="this.selecionadoItem=ComboBox(event.target).selectedItem"
> > x="199" y="10" height="31"/>
> > <mx:HBox x="106.5" y="303">
> > <mx:Button label="Pause"
> > click="??????????????.pause();"/>
> > </mx:HBox>
> > </mx:Panel>
> > </mx:Application>