我想知道如何从 URL 变量加载外部图像以及如何调用 HTML URL 变量。
例如:embed src="http://domain.com/swf/load.swf?imageUrl=http://domain.com/images/image123.jpg" .... />}
我正在尝试以这种方式制作图像播放器。谢谢
我想知道如何从 URL 变量加载外部图像以及如何调用 HTML URL 变量。
例如:embed src="http://domain.com/swf/load.swf?imageUrl=http://domain.com/images/image123.jpg" .... />}
我正在尝试以这种方式制作图像播放器。谢谢
应该像这样简单:
这是一个快速的片段:
this.loaderInfo.addEventListener(Event.COMPLETE,ready);
function ready(event:Event):void{
var imageURL:String = this.loaderInfo.parameters.imageURL;
trace("imageURL",imageURL);
var loader:Loader = addChild(new Loader()) as Loader;
loader.load(new URLRequest(imageURL));
}