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

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

101. 如何在按钮监听中获取按钮本身 [ 69%]

... 个回复 cuixueying 赞同来自: 不太明白,你为你的按钮监听CLICK事件,点击哪个就是哪个,在事件回调里用e.target获取,,,如果我理解有误,可以提供一个例子我们调试看下! 2017-09-12 0 3 分享 微博 QZONE 微信 为什么被折叠? 0 个回...

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

102. 分享:简单聊天室 [ 69%]

...跳转 my_html.on(Event.LINK,this,onLink); // 点击btn1 send_btn.on(Event.CLICK,this,onSendClick); // 点击btn2 send_btn1.on(Event.CLICK,this,onSendClick1); // enter键发送默认字体或输入框内字体 Laya.stage.on(Event.KEY_DOWN,this,onKeyDown); } private function onKeyDown(e:Event):void {...

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

103. socket.sent [ 69%]

...t; public byte: Laya.Byte; constructor(){ super(); this.btn1.on(Laya.Event.CLICK,this,this.Btn1On); } Btn1On():void{ // socket.connect(“192.168.0.1.133”,8899); console.log("kjk"); this.socket.send("hello world");//这是发送字符串的形式。 //报错TypeError: Cannot read property 'send'...

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

104. 如何给Tab里的button设置点击事件? [ 69%]

...前选择的标签页索引为:" + index);); this.Tab_ZM.on(Event.CLICK,this,onDaoju(index)); } 想请问下,这样添加,我上面点击事件只执行一次,就连打印出onSelect里的东西也只有一次? cuixueying • 2017-05-16 10:53 selectHandler本身就是点击事件,...

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

105. 请问UI之间的场景切换要怎么写 [ 69%]

...r){ function sg_sign(){ sg_sign.super(this); this.btn_wxsign.on(Laya.Event.CLICK,this,this.onWxSign); this.reset(); } Laya.class(sg_sign,"sg_sign",_super); var _proto = sg_sign.prototype; _proto.reset = function(){ Laya.SoundManager.playMusic('res/sound/sign_bgm.mp3',0); } _proto.onWxSign = function...

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

106. 老师,请问一下如何在js代码中,动态的创建一个按钮(或者图片、lable)并添加到一个box中? [ 69%]

..."comp/btn_start.png","测试按钮"); bt.on(Laya.Event.CLICK, this, this.click); Laya.stage.addChild(bt); function click() { console.log("??????????"); } 点击之后没有翻译,按钮也没有点击的动画 cuixueying • 2017-04-24 11:07 我们测试是OK的,你...

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

107. 分享:List相关(Item增删功能) [ 69%]

...是条目删除不干净(或我的数据错乱了)------参考onRemoveClick回调   大致代码如下:package { import laya.display.Sprite; import laya.events.Event; import laya.net.Loader; import laya.ui.Box; import laya.ui.CheckBox; import laya.ui.Clip; import laya.utils.Handler; import ui...

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

108. 请问老师为什么我按照官网的实例播放音频没反应呢? [ 69%]

....y = soundButton.y; Laya.stage.addChild(musicButton); soundButton.on(Event.CLICK, this, onPlaySound); musicButton.on(Event.CLICK, this, onPlayMusic); } function createButton(label) { var w = 110; var h = 40; var button = new Sprite(); button.size(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"...

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

109. ReferenceError: Loader is not defined 搞不懂引擎原生的也会报这个错? [ 69%]

...rol);  //点击提示文字,开始游戏 this.label_start.on(Laya.Event.CLICK, this, this.onTipClick); //this._loveControl.startGame();  //点击重置按钮,重新开始 this.button_reset.on(Laya.Event.CLICK, this, this.onClickReset);  let partPath = "res/aixin_bao.part"; Laya.loader.load(pa...

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

110. 类似抠图、挖空效果的实现 [ 69%]

...);             blue.size(500, 500);             blue.on("click", this, onClick);             Laya.stage.addChild(blue);                          //增加一个容器             box = new Sprite();             //设置容器为画布缓...

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