[AS3]AS3用LoaderInfo类来控制SWF宽高和帧频等信息(2)
显示加载的SWF: //隐藏loading this.m_loading.hide(); //loaderInfo vart_info: LoaderInfo = this .m_loader.contentLoaderInfo; //载入的MC this.m_mc = t_info .contentasMovieClip; //载入MC的舞台宽度 vart_
显示加载的SWF:
- // 隐藏loading
- this.m_loading.hide();
- // loaderInfo
- var t_info : LoaderInfo = this.m_loader.contentLoaderInfo;
- // 载入的MC
- this.m_mc = t_info.content as MovieClip;
- // 载入MC的舞台宽度
- var t_stageW : Number = t_info.width;
- // 载入MC的舞台高度
- var t_stageH : Number = t_info.height;
- // 载入MC的实际宽度
- var t_mcW : Number = this.m_mc.width;
- // 载入MC的实际高度
- var t_mcH : Number = this.m_mc.height;
- // 是否缩放MC适应显示宽度(载入MC舞台的宽高比是否大于显示区域宽高比)
- var t_scaleWidth : Boolean = t_stageW / t_stageH > SHOW_W / SHOW_H;
- // 缩放比率
- var t_scaleRate : Number = t_scaleWidth ? SHOW_W / t_stageW : SHOW_H / t_stageH;
- // 缩放MC
- thisthis.m_mc.scaleX = this.m_mc.scaleY = t_scaleRate;
- // 显示载入MC的显示范围
- this.m_mc.scrollRect = new Rectangle(0, 0, t_stageW, t_stageH);
- // 显示载入MC
- this.addChild(this.m_mc);
- // 调整显示位置
- this.m_mc.x = SHOW_X;
- this.m_mc.y = SHOW_Y;
- if (t_scaleWidth) this.m_mc.y += (SHOW_H - t_stageH * t_scaleRate) / 2;
- else this.m_mc.x += (SHOW_W - t_stageW * t_scaleRate) / 2;
- // 修改帧频
- this.stage.frameRate = t_info.frameRate;
- this.fms.text = String(this.stage.frameRate);
- // 设置组件
- thisthis.sdr.enabled = this.btn1.enabled = this.btn2.enabled = true;
- thisthis.sdr.maximum = this.m_mc.totalFrames;
- // 监听MC事件
- this.addEventListener(Event.ENTER_FRAME, this.onEnterFrame);
另外加了一个 Slider 组件来控制播放,前提是加载的swf必须发布为Player9,As3:
- this.sdr.addEventListener(SliderEvent.CHANGE, this.onChangeSdr);
- this.sdr.addEventListener(SliderEvent.THUMB_PRESS, this.onPressSdr);
- this.sdr.addEventListener(SliderEvent.THUMB_RELEASE, this.onReleaseSdr);
- private function onChangeSdr(p_e : SliderEvent) : void
- {
- if (this.m_isPressSdr) this.m_mc.gotoAndStop(p_e.value);
- }
- private function onPressSdr(p_e : SliderEvent) : void
- {
- this.m_isPressSdr = true;
- this.m_mc.stop();
- }
- private function onReleaseSdr(p_e : SliderEvent) : void
- {
- this.m_isPressSdr = false;
- this.m_mc.play();
- }
热门文章推荐
- [HLS]做自己的m3u8点播系统使用HTTP Live Streaming(HLS技术)
- [FMS]FMS流媒体服务器配置与使用相关的介绍
- [AS3]什么是M3U8,与HTML5的区别是什么
- AS2.0 让flash自适应全屏,并且不自动缩放
- [AS3]as3.0的sound类常用技巧整理
- [AS3]as3与ByteArray详解、ByteArray介绍、ByteArray用法
- 关于RTMP,RTMPT,RTMPS,RTMPE,RTMPTE协议的介绍
- [JS]分享浏览器弹出窗口不被拦截JS示例
请稍候...