Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/04/2009, 06:26
Avatar de Lynxcraft
Lynxcraft
 
Fecha de Ingreso: noviembre-2007
Ubicación: yecla murcia
Mensajes: 1.346
Antigüedad: 16 años, 5 meses
Puntos: 51
Respuesta: addChild / removeChild … no me funciona

Código PHP:
stage.addEventListener(KeyboardEvent.KEY_DOWN,keyDownListener);

function 
keyDownListener(e:KeyboardEvent) {
       var 
alert:Loader = new Loader();
    
feedbackAlt.text e.altKey.toString();
    
feedbackCtrl.text e.ctrlKey.toString();
    
    if (
feedbackCtrl.text=="true"){
        
        
control.load(new URLRequest("control.swf"));
        
control.contentLoaderInfo.addEventListener(Event.COMPLETEinsertMovie);
        function 
insertMovie(evt:Event):void
        
addChild(control);
        }
if (
feedbackCtrl.text=="false"){
    
removeChild(control);
    }
    }
    

__________________
Sobran las ideas cuando faltan ganas de trabajar en ellas
Lynxcraft