大约有 86 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
...交 1 个回复 Monica - 知识达人 赞同来自: zjwytqm Laya.stage.on(Event.BLUR,this,onBlur); 2017-08-06 1 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, 无法添加新回复 发起人 zjwytqm 相关问题 分享:自定义事件派发与...
来源: Laya_社区 发布时间: 20170805
鼠标 MOUSE_DOWN Event 回来的信息不符合 为什么回来的是 “mouseout” 而不是 "mousedown" ? 代码如下: function createSprite() { picture = new Sprite(); picture.loadImage(picturePath); Laya.stage.addChild(picture); var texture = Laya.loader.getRes(picturePath); picturePath.pi...
来源: Laya_社区 发布时间: 20181022
...容相关的链接 提交 2 个回复 cuixueying 赞同来自: 请监听Event.BLUR和Event.FOCUS事件即可,当浏览器最小化以及浏览器关闭时,即可触发BLUR事件,当打开浏览器时即可触发FOCUS事件。 2016-12-12 0 1 分享 微博 QZONE 微信 vincent 赞同来自: ...
来源: Laya_社区 发布时间: 20161212
... { GameStart.super(this); Laya.stage.on(Laya.Event.KEY_DOWN,LayaSample,Test); } function Test(e){ console.log(e.keycode); } 按下按键后一直输出undefined,在入口类里面却能输出对应按键编号,是...
来源: Laya_社区 发布时间: 20180208
...关的链接 提交 1 个回复 cuixueying 赞同来自: 建议可以监听Event.BLUR或者Event.FOCUS,当游戏运行时,会触发BLUR事件,当失去焦点时会触发FOCUS事件~ 2017-02-17 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 ...
来源: Laya_社区 发布时间: 20170217
...,200); Laya.stage.addChild(textInput); textInput.name = "aa"; textInput.on(Event.FOCUS,this,onFoucs); private function onFoucs(e:Event):void { trace(e); } 2017-10-26 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 15952728807 相关问题...
来源: Laya_社区 发布时间: 20171026
...h=200; textInput.x=100; textInput.y=200; addChild(textInput); textInput.addEventListener(FocusEvent.FOCUS_IN,onFocusIn); textInput.addEventListener(FocusEvent.FOCUS_OUT,onFocusOut); private function onFocusIn(event:FocusEvent):void { textInput.text="你的键盘打开了"; } private function onFocus...
来源: Laya_社区 发布时间: 20151225
...链接 提交 2 个回复 189*****192 赞同来自: Sean8023 Laya.stage.on(Event.MOUSE_UP, this, onApeRelease); Laya.stage.on(Event.MOUSE_DOWN, this, onApeRelease); 通过 Event 类型 监听动作 class Event { /** 一个空的 Event 对象。用于事件派发中转使用。*/ ...
来源: Laya_社区 发布时间: 20170601
...stPrior = true; Laya.stage.focus = _mapSprite; let event = _mapSprite.on(Laya.Event.CLICK, this, () => { LogUtil.w("响应点击事件") }) } 尝试使用focus 好像也没有响应 请问大佬们能解答一下吗 附件 : --> 2022-...
来源: Laya_社区 发布时间: 20220929
...容相关的链接 提交 2 个回复 Laya_XS 赞同来自: Laya.stage.on(Event.KEY_DOWN, this, _onKeyDown); 然后你根据Keyboard对应的keycode来判断是什么键即可 2018-04-06 0 0 分享 微博 QZONE 微信 akunone 赞同来自: laya.events.KeyBoardManager.hasKeyDown(laya.events.Keyboard....
来源: Laya_社区 发布时间: 20180406