网站大量收购独家精品文档,联系QQ:2885784924

flex 个人总结.doc

  1. 1、本文档共8页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
flex个人总结flex个人总结.doc

 HYPERLINK /belibei/article/details/7396456 flex 个人总结  -- FLEX判断客户端是否有摄像头 Camera.getCamera() == null Cs.length == 0 ? /* 关闭摄像头 */ //如果 getCamera() 返回 null,则表明摄像头正由另一个应用程序使用,或者系统上没有安装摄像头。 camera = Camera.getCamera(null); camera = null; //正在捕获视频数据的 Camera 对象。 若要切断与该 Video 对象的连接,请传递 null video.attachCamera(null); -- flex 摄像头操作 camera = Camera.getCamera(); //将摄像头的捕获模式设置为最符合指定要求的本机模式. camera.setMode(240,180,15); //指定进行完整传输而不由视频压缩算法进行插值处理的视频帧(称为关键帧)。 camera.setKeyFrameInterval(60); //设置每秒的最大带宽或当前输出视频输入信号所需的画面质量 camera.setQuality(144,85); Video video = new Video(camera.width*2, camera.height*2); video.attachCamera(camera); -- 关闭摄像头: camera = Camera.getCamera(null); camera = null; video.attachCamera(null); ? -- 视频播放 ?【VideoDisplay】 ?video.attachNetStream(netStream); ?vd_show.addChild(video); ?netStream.play(Oracle.flv); ? ?s:VideoDisplay id=vd_show x=0 y=29 width=457 height=462/? ?【VideoPlaye】 ?? ?private var rtmpURL:String =rtmp://localhost/MeetingServer;//red5 服务器访问的网址 ?var filePath:String=rtmpURL+/+this.urlFile; ?this.vp.source=filePath;? ? ?s:VideoPlayer x=0 y=0 width={this.width} height={this.height} id=vp/???? ? ? -- 自动弹出框 ???protected function application1_creationCompleteHandler(event:FlexEvent):void ???{ ????alrtTimer = new Timer(5000,1); ????alrtTimer.addEventListener(TimerEvent.TIMER_COMPLETE,removeAlert); ???} ??? ???private function showAlert():void{ ????popUpAlert = Alert.show(这是一个自动5秒关闭提示框!,Self closing Alert,Alert.OK|Alert.NONMODAL,this,popUpAlertHandle); ????popUpAlert.height=250; ????popUpAlert.width=250; ????alrtTimer.reset(); ????alrtTimer.start(); ???} ? -- 获得屏幕的分辨率 var x:Number=Capabilities.screenResolutionX; var y:Number=Capabilities.screenResolutionY; Alert.show(x=+x+y=+y); ? 第二种方法 Alert.show(stage.fullScreenWidth+==+stage.fullScreenHeight); ? -- 获得stage(工作区)的宽、高 Alert.show(stage.stageWidth+==+stage.stageHeight); ? -- 读取xml文件 private function readxml2():void { var urlrequest:URLRequest=new URLRequest(file/stu.xml); var urlloader:URLLoad

文档评论(0)

ganqludp + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档