Alguem pode me mandar isso funcionando? Nao estou me entendendo bem ainda com minha plataforma. Obrigado.
<?xml version="1.0"?> <!-- Simple LinkBar control. --> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" height="430" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#000000, #414141]" width="486"> <mx:Panel title="FELIPE ANIMOUS BUSINESS COPYRIGHT © 2008" height="407" width="461" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" layout="absolute" x="12.5" y="10" color="#000000"> <mx:LinkBar color="#0000FF" fontWeight="bold" dataProvider="{myViewStack}" x="55.5" y="10" width="330"/> <!-- Define the ViewStack and the three child containers. --> <mx:ViewStack id="myViewStack" borderStyle="solid" width="422" height="319" x="9" y="44"> <mx:Canvas id="search" backgroundColor="#FFFFCC" label="Acordeon" width="100%" height="100%"> <mx:Label text="Search Screen" color="#000000"/> <mx:Accordion id="accordion" width="423" height="317" x="-1.5" y="0" fillAlphas="[1.0, 1.0]" fillColors="[#000000, #0C00FF]"> <!-- Define each panel using a VBox container. --> <mx:VBox label="Video Slater"> <mx:Panel title="Felipe Business" height="267" width="421" horizontalAlign="center" paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10" layout="absolute" backgroundColor="#424242" backgroundAlpha="0.0"> <mx:VideoDisplay id="myVid" height="194" width="399" autoPlay="true" x="-2.842171E-14" y="0"> <mx:source>http://felipewebfree.webng.com/ Kelly_Slater_in_Campaign_2.flv</mx:source> </mx:VideoDisplay> <mx:HBox x="110.5" y="202" height="25" width="180"> <mx:Button label="Play" click="myVid.play();"/> <mx:Button label="Pause" click="myVid.pause();"/> <mx:Button label="Stop" click="myVid.stop();"/> </mx:HBox> <mx:SWFLoader x="10" y="0" width="94" height="69" source="http:// felipewebfree.webng.com/felipe%20nome.swf"/> </mx:Panel> </mx:VBox> <mx:Canvas label="Auto-Zoom" width="100%" height="100%"> <mx:Script> <![CDATA[ import flash.events.MouseEvent; public function doZoom(event:MouseEvent):void { if (zoomAll.isPlaying) { zoomAll.reverse(); } else { // If this is a ROLL_OUT event, play the effect backwards. // If this is a ROLL_OVER event, play the effect forwards. zoomAll.play([event.target], event.type == MouseEvent.ROLL_OUT ? true : false); } } ]]> </mx:Script> <mx:Zoom id="zoomAll" zoomWidthTo="1" zoomHeightTo="1" zoomWidthFrom=".5" zoomHeightFrom=".5" /> <mx:Panel title="F-BSS..." width="421" height="274" horizontalAlign="center" paddingTop="5" paddingLeft="10" paddingRight="10" paddingBottom="5" x="0" y="0" layout="absolute" fontFamily="Times New Roman" fontSize="12" backgroundColor="#000000" color="#000000"> <mx:Text width="191" color="#FFFFFF" text="Animous Desenvolvimentos..." x="0" y="10" fontFamily="Times New Roman" fontSize="14" fontWeight="bold"/> <mx:Image id="img" scaleX=".5" scaleY=".5" rollOver="doZoom(event)" rollOut="doZoom(event)" height="141.85" width="164.55" x="159.35" y="97"> <mx:source>http://felipewebfree.webng.com/coca%20com %20surfe%20e%20olhos%202fim.swf</mx:source> </mx:Image> </mx:Panel> </mx:Canvas> </mx:Accordion> </mx:Canvas> <mx:Canvas label="video" width="100%" height="100%"> <mx:VideoDisplay id="myVideo" height="267" width="396" autoPlay="false" x="14" y="10"> <mx:source>http://felipewebfree.webng.com/ Kelly_Slater_in_Campaign_2.flv</mx:source> </mx:VideoDisplay> <mx:HBox x="118" y="284" height="23" width="184"> <mx:Button label="Play" click="myVid.play();"/> <mx:Button label="Pause" click="myVid.pause();"/> <mx:Button label="Stop" click="myVid.stop();"/> </mx:HBox> <mx:SWFLoader x="14" y="10" width="99" height="66" source="http:// felipewebfree.webng.com/felipe%20nome.swf"/> </mx:Canvas> <mx:Canvas id="custInfo" backgroundColor="#CCFFFF" label="Imagen" width="100%" height="100%"> <mx:Image x="10" y="10" width="400" height="297"> <mx:source>file:///C|/Documents and Settings/ Felipe/My Documents/My Pictures/Brazilian_Update_TV_- _Oficial_2_edi.jpg</mx:source> </mx:Image> </mx:Canvas> <mx:Canvas id="accountInfo" backgroundColor="#FFCCFF" label="Editor de texto e HTML" width="100%" height="100%"> <mx:RichTextEditor id="rte" title="RichTextEditor" height="239" x="0" y="0" width="420" backgroundColor="#000000" text="Escreva aqui."/> <mx:TextArea id="rteText" width="420" height="70" y="247" text="Escreva o texto no quadro acima." x="0"/> <mx:HBox x="201" y="206"> <mx:Button label="Veja o Texto" click="rteText.text=rte.text;" height="24"/> <mx:Button label="Pegue o HTML" click="rteText.text=rte.htmlText;" height="24"/> </mx:HBox> </mx:Canvas> </mx:ViewStack> </mx:Panel> </mx:Application> --~--~---------~--~----~------------~-------~--~----~ Você recebeu esta mensagem porque está inscrito na lista "flexdev" Para enviar uma mensagem, envie um e-mail para [email protected] Para sair da lista, envie um email em branco para [EMAIL PROTECTED] Mais opções estão disponíveis em http://groups.google.com/group/flexdev -~----------~----~----~----~------~----~------~--~---
