Ver Mensaje Individual
  #3 (permalink)  
Antiguo 13/09/2011, 10:25
megabyt
 
Fecha de Ingreso: julio-2009
Mensajes: 22
Antigüedad: 15 años, 4 meses
Puntos: 2
Respuesta: Cargar Vídeo externo por tiempo

Cita:
<fx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
import mx.rpc.events.ResultEvent;

[Bindable]
private var videos : ArrayCollection;

private function resultHandler(event:ResultEvent):void{
videos = event.result.videolist.video;
}

private function playVideo(event:Event):void{
myVid.source = "assets/" + event.currentTarget.selectedItem.src;
}


]]>
</fx:Script>

<mx:HTTPService id="service" url="playlist.xml" result="resultHandler(event)"/>

<mx:VideoDisplay id="myVid" volume="0.85" borderAlpha="0" borderVisible="false" autoPlay="true" width="262" height="218"
click="myVid.pause(); navigateToURL(new URLRequest('http://www.blabla.com.mx/'));close();"
right="34.299988" bottom="5.25" contentBackgroundAlpha="0.0"/>