|    
			
				29/11/2011, 02:04
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: julio-2006 
						Mensajes: 32
					 Antigüedad: 19 años, 3 meses Puntos: 0 |  | 
  |  Respuesta: Cargar un archivo swf dentro otro en full screm  
  XD tengo un problema... 
 este es mi code
 
 
 import flash.display.Loader;
 import flash.net.URLRequest;
 
 var request:URLRequest = new URLRequest("perfil1.swf");
 var Perfil_boce:Loader = new Loader()
 perfil_boce.load(request);
 addChild(perfil_boce);
 perfil_boce.contentLoaderInfo.addEventListener(Eve  nt.COMPLETE,handleComplete1);
 
 
 function handleComplete1(e:Event)
 {
 perfil_boce.x = 230;
 perfil_boce.y = 170;
 addChild(perfil_boce);
 }
 
 
 
 
 var request:URLRequest = new URLRequest("gboceto.swf");
 var boce:Loader = new Loader()
 boce.load(request);
 addChild(boce);
 boce.contentLoaderInfo.addEventListener(Event.COMP  LETE,handleComplete);
 
 
 function handleComplete(e:Event)
 {
 boce.x = 230;
 boce.y = 170;
 addChild(boce);
 }
 
 
 function onClick4($event:MouseEvent):void {
 gotoAndPlay(5);
 }
 volver2.addEventListener(MouseEvent.CLICK, onClick4);
 
 
 y me lanza este error
 1151: A conflict exists with definition request in namespace internal.
     |