[AS3]stage.stageWidth和stage.stageHeight取值为0的解决方法(2)
解决办法2 :加入Timer类,延时取得舞台尺寸 publicclassmainextendsSprite{ privatevarmyContextMenu:ContextMenu;//参数定义 publicvarstageWidth:int;//酷播cuplayer提示:舞台宽度 publicvarstageHeight:int;//
解决办法2 :加入Timer类,延时取得舞台尺寸
- public class main extends Sprite {
- private var myContextMenu:ContextMenu;//参数定义
- public var stageWidth:int;//酷播cuplayer提示:舞台宽度
- public var stageHeight:int;//舞台高度
- //公开参数,使其他SWF可以使用
- unction main() {
- var tTimer:Timer=new Timer(1000,1);
- tTimer.addEventListener(TimerEvent.TIMER,onTimer);
- tTimer.start();
- //延时实例化菜单,以读取到舞台尺寸
- }
- private function onTimer(event:TimerEvent):void {
- stage.scaleMode=StageScaleMode.NO_SCALE;
- stage.align=StageAlign.TOP_LEFT;
- //酷播cuplayer提示:维持舞台比例
- stagestageWidth=stage.stageWidth;
- stagestageHeight=stage.stageHeight;
- //酷播cuplayer提示:取得舞台尺寸
- }
热门文章推荐
- [HLS]做自己的m3u8点播系统使用HTTP Live Streaming(HLS技术)
- [FMS]FMS流媒体服务器配置与使用相关的介绍
- [AS3]什么是M3U8,与HTML5的区别是什么
- [AS3]as3.0的sound类常用技巧整理
- AS2.0 让flash自适应全屏,并且不自动缩放
- [AS3]as3与ByteArray详解、ByteArray介绍、ByteArray用法
- 关于RTMP,RTMPT,RTMPS,RTMPE,RTMPTE协议的介绍
- [JS]分享浏览器弹出窗口不被拦截JS示例
请稍候...