FLASH AS3全屏类
作者 佚名技术
来源 服务器技术
浏览
发布时间 2012-07-07
代码: package{ importFlash.display.MovieClip; importflash.display.Sprite; importflash.events.MouseEvent; importflash.text.TextField; importflash.text.TextFieldAutoSize; publicclassfullbottonextendsMovieClip{ publicfunctionfullbotton(b_width:int,b_height:int,f_size:int){ var_Rect:Sprite=newSprite(); _Rect.graphics.beginFill(0xff0000,1); _Rect.graphics.drawRect(0,0,b_width,b_height); _Rect.graphics.endFill(); addChild(_Rect); _Rect.buttonMode=true; vart:TextField=newTextField(); t.HTMLText="<FONTSIZE=’"+f_size+"’color=’#ffff00’><b>点击此处切换观看模式(全屏/普通)</b></font>"; t.autoSize=TextFieldAutoSize.LEFT; t.x=30; t.y=2; _Rect.addChild(t); var_Rect1:Sprite=newSprite(); _Rect1.graphics.beginFill(0x000000,0); _Rect1.graphics.drawRect(0,0,b_width,b_height); _Rect1.graphics.endFill(); _Rect.addChild(_Rect1); _Rect.addEventListener(MouseEvent.CLICK,clickHandler); } privatefunctionclickHandler(event:MouseEvent):void{ switch(stage.displayState){ case"normal": stage.displayState="fullScreen"; break; case"fullScreen": default: stage.displayState="normal"; break; } } } } 使用: var my_btn:fullbotton=new fullbotton(100,50,12); addChild(my_btn); 在HTML中使用方法(感谢KAKA): function cl(evt:MouseEvent):void { stage.displayState=StageDisplayState.FULL_SCREEN; } my_btn.addEventListener(MouseEvent.CLICK,cl); 然后HTML标签中修改一下: 要在标签中加入allowFullScreen="true" 演示: http://www.taoshaw.com/taoshaw/study/as3fullscreen/method2.html 源码下载: fullscreen.rar 关键词: |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: Flash AS3代码制作简单视频播放器下一篇: Flash鼠绘蓝色卡通人物技巧教程
关于FLASH AS3全屏类的所有评论