首页 > 应用 > 影音媒体 > 正文

FLV视频类播放器全屏切换完整AS代码示例

2024-07-16 17:27:04
字体:
来源:转载
供稿:网友
  1. function setFullScreen() {   //fscommand("fullscreen", true);  
  2. if (_root.logoCoolRabbit._visible == false) {      if (Stage["displayState"] == "normal") {  
  3.     fscommand("fullscreen", true);       Stage["displayState"] = "fullScreen";  
  4.    } else if (Stage["displayState"] == "fullScreen") {       fscommand("fullscreen", false);  
  5.     Stage["displayState"] = "normal";      }  
  6.    rootWidth = Stage.width;        rootHeight = Stage.height;  
  7.      //复位控制栏  
  8.    clearInterval(controlBuffCoolTime);      controlBuffCoolTime = null;  
  9.    clearInterval(controlBuff);      controlBuffCool = 0;  
  10.    controlBuffEstimate = null;    
  11.    //复位标题栏      clearInterval(playTitleBuffCoolTime);  
  12.    playTitleBuffCoolTime = null;      clearInterval(playTitleBuff);  
  13.    playTitleBuffCool = 0;      playTitleBuffEstimate = null;  
  14.      //重新设置组件位置  
  15.    moduleSet();    
  16.    //重新计算和设置播放组件尺寸比      videoWidthSet = rootWidth;  
  17.    videoHeightvideoHeightSet = videoHeight/videoWidth*rootWidth;      playAllModule.playFlvWindow._width = videoWidthSet;  
  18.    playAllModule.playFlvWindow._height = videoHeightSet;      playAllModule.playFlvWindow._y = (rootHeight-playAllModule.playFlvWindow._height)/2;  
  19. }   }  
  20.   //全屏模式切换  
  21. playAllModule.controlSet.buttonFullScreen.onPress = function() {   setFullScreen();  
  22. };    
  23. //创建右键全屏及退出全屏菜单   //var newnewMenu:ContextMenu = new ContextMenu();  
  24. var newnewMenu:ContextMenu = new ContextMenu(menuHandler);   //隐藏右键的一些标准菜单  
  25. newMenu.hideBuiltInItems();   // 在右键菜单中加入菜单项  
  26. //var fs:ContextMenuItem = new ContextMenuItem("全屏", goFullScreen);   var fs:ContextMenuItem = new ContextMenuItem("全屏", setFullScreen);  
  27. newMenu.customItems.push(fs);   //var xfs:ContextMenuItem = new ContextMenuItem("退出全屏", exitFullScreen);  
  28. var xfs:ContextMenuItem = new ContextMenuItem("退出全屏", setFullScreen);   newMenu.customItems.push(xfs);  
  29. // 现在将右键菜单指定给场景中的movieclip.我当前指定给场景中的box.你也可以指定给_root   this.menu = newMenu;  
  30.   /**  
  31. function goFullScreen() {   //Stage["displayState"] = "fullScreen";  
  32. }   function exitFullScreen() {  
  33. //Stage["displayState"] = "normal";   }  
  34. **/    
  35. // 定义开启和关闭全屏功能,取决于你当前处于哪一种状态下   function menuHandler(obj, menuObj) {  
  36. if (Stage["displayState"] == "normal") {      // 如果你当前处在正常模式下,则goFullscreen可点击  
  37.    menuObj.customItems[0].enabled = true;      menuObj.customItems[1].enabled = false;  
  38. } else {      // 如果你当前片在全屏模式下,则exitFullScreen可点击  
  39.    menuObj.customItems[0].enabled = false;      menuObj.customItems[1].enabled = true;  
  40. }   } 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表