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

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

121. list的Handler.create的点击事件第二次点击不生效 [ 74%]

...点击事件第二次点击不生效 list.selectHandler = Handler.create(this,onRender, null, false);//滚动列表点击事件 private function onRender(index:int):void{ list.setItem(lastSelect,arrConver(lastSelect,false));//取消选中效果 list.setItem(index,arrConver(index,true));//添加选...

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

122. Laya List给子元素添加事件后,滚动事件被劫持了 [ 74%]

...loadImage('xxx.png'); //此处无论是这样给 list.on(Laya.Event.CLICK, this, () => { console.log(413132131) }) //还是在handler中去渲染,都会滚动不了 txArray.push(list);} storeTxList.array = txArray;   Laya.stage.addChild(storeTxList);     悬赏找大神看问题 export defau...

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

123. Tab组件如何通过js控制选中 [ 74%]

Tab组件如何通过js控制选中 this._tab._selectedIndex = 0   _tab为在UI编辑器下定义的var值   这样操作不能实现么 2017-12-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞...

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

124. sprite添加texture后,sprite无法触发点击事件? [ 74%]

sprite添加texture后,sprite无法触发点击事件? this.item.graphics.drawTexture(Laya.loader.getRes(IMG_RES[this.name])); Laya.stage.addChild(this.item);  this.item.on(Laya.Event.CLICK, this, () => { this.item.destroy(); }); 2017-08-26 添加评论 免费帖 --> 分享 微博 QZONE 微...

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

125. 一个list钟我添加了renderHandler回调但是里面的初始化回调执行了两次!!! [ 74%]

...r Handler = laya.utils.Handler; seltInf._list0.renderHandler = new Handler(this, onListRender1); function onListRender1(item,index) { var btn=item.getChildByName('btn_true'); trace(btn); btn.on(Laya.Event.CLICK,this,function(){ trace("dadasdads"); }); } cuixueying • 2017-08-04 11:36 把...

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

126. 切换位图,点击图片距离容器的区域也会触发点击事件 [ 74%]

...距离容器的区域也会触发点击事件 function TransitionImg() { this.flag = false; //判断条件 this.img1 = "../laya/assets/comp/haoyoubang-liang.png"; //地址 this.img2 = "../laya/assets/comp/haoyuobang-hui.png"; var img = new Laya.Sprite(); //实例 img.width = 300; //宽高 img.height...

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

127. UI编辑器里面创建了一个Graphics line,如何能获取组件编辑的的 points数据 [ 74%]

...请: 与内容相关的链接 提交 2 个回复 nevercai 赞同来自:  this.owner.graphics["_one"]    JS就是这点强大,什么都能访问,管你什么private,protected,还能覆盖原有的方法,属性。 2019-02-28 0 0 分享 微博 QZONE 微信 安 赞同来自: this.graphics._...

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

128. Image不能清空图片吗? [ 74%]

Image不能清空图片吗? if(!this.lastMakeMc){ //类型小图片 this.lastMakeMc = new Image(); this.collectUIMC.addChild(this.lastMakeMc); this.lastMakeMc.pos(123,68); this.lastMakeMc.size(32,32); }else{ this.lastMakeMc.skin = "face/type"+type+".png"; } if(type == -999){ this.lastMakeMc.dispo...

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

129. 龙骨skeleton鼠标点击区域的设置 [ 74%]

...angle(-420,-680,420,680); mArmature.hitArea=rect; mArmature.on(Event.CLICK,this,onClick);    2016-11-22 0 0 分享 微博 QZONE 微信 asdf131 赞同来自: 于一个点为中心播放 :      this.mArmature = this.mFactory.buildArmature(0);         this.mArmatureSpr.addChild(this.mArmatur...

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

130. ScrollRect设置会引起其他的UI资源无法正在显示 [ 74%]

...ublic function TestView() { super(); _path.pivot(0,0); _path.pos(a.x,a.y); this.addChild(_path); _path.rotation = Math.atan2(b.y - a.y, b.x - a.x) / Math.PI * 180; var len:int = Math.floor(GetPathLen()/PATH_LEN)+2; var p:Image; for(var i:int = 0;i<len;i++){ p = new Image("test/footprint.png"); p....

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