WEB开发网
开发学院图形图像Flash AS3自适应全屏的代码示例 阅读

AS3自适应全屏的代码示例

 2012-02-06 12:13:19 来源:本站整理   
核心提示:swf全屏自适应的问题,以下是flash里自适应的代码:import flash.display.StageAlign;import flash.display.StageScaleMode;import flash.events.Event;function resizeHandler(e:Event):void{y

swf全屏自适应的问题,以下是flash里自适应的代码:
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;

function resizeHandler(e:Event):void
{
yourMC.x = (yourMC.stage.stageWidth / 2) - (yourMC.width / 2);
yourMC.y = (yourMC.stage.stageHeight / 2) - (yourMC.height / 2);
//如果想要有动画效果,在此加..
//用 Tween 类即可实现
}

stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.addEventListener(Event.RESIZE, resizeHandler);
stage.dispatchEvent(new Event(Event.RESIZE));

Tags:AS 自适 应全屏

编辑录入:coldstar [复制链接] [打 印]
赞助商链接