Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/10/2011, 14:53
leo2gz
 
Fecha de Ingreso: mayo-2007
Mensajes: 47
Antigüedad: 17 años
Puntos: 0
Respuesta: detener video del FLVPlayback

tema solucionado...

import fl.video.*;
import flash.events.FullScreenEvent;

var myVideo:FLVPlayback = new FLVPlayback(); // instancia
myVideo.source = "THE HOUSE.flv"; // ubicacion
myVideo.skin = "SkinOverPlayStopSeekMuteVol.swf"; //El skin
//myVideo.maintainAspectRatio = false;
myVideo.setSize(630, 430);
addChild(myVideo);

myVideo.stop();
removeChild(myVideo);
myVideo = null;

Última edición por leo2gz; 03/10/2011 a las 15:26 Razón: falto codigo