我尝试仅在 Flex 中使用 AS3 构建项目。当我在 flex 中运行项目时,一切看起来都很好,但是当我导出发布版本时,应该添加的图像消失了。如果有人可以帮助我,我将不胜感激。
init();
public function init(loadedVideoCount:Number):void{
singleHolder=new singleVideoCont();
singleHolder.x=loadedVideoCount*singleHolder.width+2;
singleHolder.y=6;
singleHolder.buttonMode=true;
addChild(singleHolder);
this.addEventListener(MouseEvent.CLICK,onClick);
showTn();
}
private function showTn():void{
imgLoader = new Loader();
imgLoader.load(new URLRequest(_tnPath));
imgLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,onProgress);
imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,onImgLoaded);
}
private function onImgLoaded(event:Event):void {
singleHolder.progBar.alpha = 0;
var image:Bitmap = imgLoader.contentLoaderInfo.content as Bitmap;
image.width=TN_WIDTH;
image.height=TN_HEIGHT;
image.x=3;
image.y=3;
singleHolder.addChild(image); //this line work when I run the project inside flex but the images are gone when I test my release build...
imgLoader.contentLoaderInfo.removeEventListener(ProgressEvent.PROGRESS,onProgress);
imgLoader.contentLoaderInfo.removeEventListener(Event.COMPLETE,onImgLoaded);
//imgLoader = null;
}