Código ActionScript :
var req:URLRequest = new URLRequest("testing.swf"); var loader:Loader = new Loader() loader.load(req); addChild(loader);
Cuando lo ejecuto Flash responde:
Código ActionScript :
1046: Type was not found or was not a compile-time constant: URLRequest. 1046: Type was not found or was not a compile-time constant: Loader. 1180: Call to a possibly undefined method URLRequest. 1180: Call to a possibly undefined method Loader. 1180: Call to a possibly undefined method addChild.
Por lo que el error me dicta, asumo que me faltan las Clases dentro de mi Clase, por lo cual intente poner:
Código ActionScript :
import flash.display.DisplayObject;
Luego intente:
Código ActionScript :
import flash.display.Loader; import flash.display.MovieClip; import flash.display.LoaderInfo; import flash.display.DisplayObject; import flash.display.DisplayObjectContainer;
Pero eso solo me redujo el problema a los siguientes errores:
Código ActionScript :
1046: Type was not found or was not a compile-time constant: URLRequest. 1180: Call to a possibly undefined method URLRequest. 1180: Call to a possibly undefined method addChild.
¿Alguien me podría indiciar como solucionar este problemita? Gracias de antemano y disculpen si quedo larga la explicación.
Saludos, Hernán . -