欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

动态设置flash背景图片

程序员文章站 2024-01-19 09:26:10
...
import flash.display.*;
imgLoader("bg.jpg");
var loader:Loader;
function imgLoader(_path:String ):void{
	loader = new Loader;
	loader.contentLoaderInfo .addEventListener (Event.COMPLETE , imageComplete);
	loader.load(new URLRequest (_path));
}
function imageComplete(_evt:Event):void{
	var bitmapData:BitmapData  = _evt.target.content.bitmapData;
	graphics.beginBitmapFill (bitmapData, new Matrix(), true, true);
	graphics.drawRect (0, 0, stage.stageWidth, stage.stageHeight );

	loader.contentLoaderInfo .removeEventListener (Event.COMPLETE , imageComplete);
	loader = null;
}
 

 

相关标签: Flash