actionscript 3.0 加载图片设置图片size 问题 20
在工程里面执行,图片宽高是设置的,但编译成swf在html页面中调用就不能设置图片的尺寸,是什么原因呢,高手们指点一下哈~~~privatefunctioncomplet...
在工程里面执行,图片宽高是设置的,但编译成swf 在html页面中调用就不能设置图片的尺寸,是什么原因呢,高手们指点一下哈~~~
private function completeHandler(event:Event):void {
var request=loadMove("http://gmw.cn/adMax/100.jpg");
stage.addChild(contain);
imgLoad.contentLoaderInfo.addEventListener(Event.COMPLETE, photo_fun);
imgLoad.load(request);
}
private function photo_fun(e:Event):void {
imgLoad.content.width=300;
imgLoad.content.height=300;
contain.addChild(imgLoad);
} 展开
private function completeHandler(event:Event):void {
var request=loadMove("http://gmw.cn/adMax/100.jpg");
stage.addChild(contain);
imgLoad.contentLoaderInfo.addEventListener(Event.COMPLETE, photo_fun);
imgLoad.load(request);
}
private function photo_fun(e:Event):void {
imgLoad.content.width=300;
imgLoad.content.height=300;
contain.addChild(imgLoad);
} 展开
1个回答
展开全部
private function photo_fun(e:Event):void {
//imgLoad.content.width=300;
//imgLoad.content.height=300;
//contain.addChild(imgLoad);
var bm:Bitmap = imgLoad.content as Bitmap;
bm.width = 300;
bm.height = 300;
contain.addChild(bm);
}
或者直接修改imgLoad的width和height大小,不过个人不建议用这种方法,比较建议上面的写法,把imgLoad.content提取出来,希望对你有所帮助
//imgLoad.content.width=300;
//imgLoad.content.height=300;
//contain.addChild(imgLoad);
var bm:Bitmap = imgLoad.content as Bitmap;
bm.width = 300;
bm.height = 300;
contain.addChild(bm);
}
或者直接修改imgLoad的width和height大小,不过个人不建议用这种方法,比较建议上面的写法,把imgLoad.content提取出来,希望对你有所帮助
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询