flash.system.ImageDecodingPolicy 异步解码图像,载入大图时有用

import flash.system.ImageDecodingPolicy;

...

var loaderContext:LoaderContext=new LoaderContext();

loaderContext.imageDecodingPolicy=ImageDecodingPolicy.ON_LOAD;

...

loader.load(new URLRequest(url),loaderContext);

...

 

你可能感兴趣的:(System)