• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 204 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0039 秒)

51. Socket能连接到服务器,客户端发请求也能收到服务端的数据,但是服务端主动推送数据,客户端就是收不到数据? [ 73%]

...t=new Socket(); socket.on(Event.OPEN, this, onSocketOpen); socket.on(Event.CLOSE, this, onSocketClose); socket.on(Event.MESSAGE, this, onMessageReveived); socket.on(Event.ERROR, this, onConnectError); socket.connectByUrl(url); } public function Add(handler:IHandler):void { if(list.indexOf(handler) &...

来源: Laya_社区 发布时间: 20170724

52. 版主麻烦问一下laya编辑器关闭时有关闭事件吗? [ 73%]

...端是websocket服务器时socket为什么我客户端调用Laya.Socket的close方法的时候会在往服务器发送一次上次的消息呢? Laya_Aaron • 2018-06-20 10:26 你可以看一下代码,close不会出这种情况的,游戏退了你什么都做不了。

来源: Laya_社区 发布时间: 20180619

53. Dialog关闭时如何向open他的页面传值? [ 73%]

...判断当前点击的是哪个按钮,抛出具体的事件并监听。 myClose.on(Event.CLICK,this,onClicks); myYes.on(Event.CLICK,this,onClicks); myNo.on(Event.CLICK,this,onClicks) } private function onClicks(e:Event):void { // TODO Auto Generated method stub if(e.target.name=="close") { open页...

来源: Laya_社区 发布时间: 20160908

54. 关于websocket连接的问题,连接成功以后,有什么属性去判断是否连接成功吗? [ 73%]

..."laya.events.Event")] /** * 连接被关闭后调度。 * @eventType Event.CLOSE * */ [Event(name = "close", type = "laya.events.Event")] /** * 出现异常后调度。 * @eventType Event.ERROR * */ [Event(name = "error", type = "laya.events.Event")] 2017-09-22 0 0 分享 微博 QZONE 微信 为什...

来源: Laya_社区 发布时间: 20170922

55. 网络和格式-Socket [ 72%]

...et.output; socket.on(Event.OPEN, this, this.onSocketOpen); socket.on(Event.CLOSE, this, this.onSocketClose); socket.on(Event.MESSAGE, this, this.onMessageReveived); socket.on(Event.ERROR, this, this.onConnectError); } onSocketOpen() { console.log("Connected"); // 发送字符串 socket.send("demonst...

来源: Laya2.0_示例 发布时间: 20241123

56. dialog.removeSelf is not a function [ 72%]

...ew ui.common.PlaneGameInfoDialogUI;。。。(关闭按钮)this.ui.ibtn_close.on(Laya.Event.CLICK,this,this.ui.close);。。。(点击之后)Uncaught TypeError: dialog.removeSelf is not a function....求助大神谢谢啦~~~ 2017-04-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没...

来源: Laya_社区 发布时间: 20170418

57. laya.ui.Dialog [ 71%]

...设置zOrder属性,可以更改弹出的层次 通过设置popupEffect和closeEffect可以设置弹出效果和关闭效果,如果不想有任何弹出关闭效果,可以设置前述属性为空 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefine...

来源: Laya2.0_api 发布时间: 20190513

58. [LayaAir3]资源未清理干净 [ 71%]

...ab中的图片资源还在。   log: open --------------------------------close----------------------------------- loader http://localhost:18090/_cache_ ... 65.ls (2) [5, PrefabImpl] loader http://localhost:18090/resources/Box.lh (2) [5, PrefabImpl] loader http://localhost:18090/resources/chest_bg....

来源: Laya_社区 发布时间: 20240109

59. dialog 自定义关闭效果,效果执行完,弹窗无法关闭 [ 71%]

...博 QZONE 微信 gls_laybox 赞同来自: //关闭特效自己实现 this.closeEffect = Laya.Handler.create(this,this.onCloseEffect,null,true);   //具体的实现代码 _proto_.onCloseEffect = function(){ Laya.Tween.to(this,{ x:-100 //动画结束就关闭 },1000,null,Laya.Handler.create(this,this...

来源: Laya_社区 发布时间: 20170809

60. ZipFile类用readFile读取文件内容时,整个界面都会卡住 [ 71%]

...行readFile(id:number):ArrayBuffer;就会将界面卡住,直到执行zip.close()后界面才恢复正常。   示例代码: zip.forEach(function (id, name, dir, sz) { if (!dir) { var buf = zip.readFile(id);//执行这一步时界面就会卡住 var fid = window["appcache"].hashstr('/' + name); ...

来源: Laya_社区 发布时间: 20181228