大约有 10 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0032 秒)
MovieClip的target和currentTarget属性为undefined? private function showNowPic():void{ for each(var ul:String in pics){ var mc:MovieClip = new MovieClip; mc.load(ul); this.addChild(mc); mc.on(Event.COMPLETE,this,stopNowMC) } } private function stopNowMC(e:Event):void{ trace(e.currentTarget); t...
来源: Laya_社区 发布时间: 20161221
Event的target和currentTarget类型错误 使用版本:1.0正式版, 语言:ts Event的的target和currentTarget类型有错误,并不是所有EventDispatcher都是显示对象,比如访问网络的HttpRequest,希望改正 /** 事件目标触发对象。*/ target: laya.display.Sprite; /*...
来源: Laya_社区 发布时间: 20160701
a、b 两个按钮响应同一个点击回调,但event的 target和currentTarget相同都是stage对象,怎么解释呀 实际代码中,两个按钮通过currenttarget,确实能够区分开来,但是打印的值,currenttarget和target值都是stage对象,这个问题谁能给解释下...
来源: Laya_社区 发布时间: 20180301
...t TouchEvent] game.js:116 touchId=0 game.js:116 type=mousemove game.js:116 currentTarget=[object Object] game.js:116 target=[object Object] game.js:116 setTo=function (type,currentTarget,target){ this.type=type; this.currentTarget=currentTarget; this.target=target; return this; } game.js:116 stopPro...
来源: Laya_社区 发布时间: 20181031
...! function bigclick(e){ var thex = e.target.mouseX }把e.target改成e.currentTarget,target点击的是最底层显示对象,e.currentTarget是点击的当前显示对象,有问题我们再沟通! 2016-08-08 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复...
来源: Laya_社区 发布时间: 20160808
...: 连接出错 Event {isTrusted: true, type: "error", target: WebSocket, currentTarget: WebSocket, eventPhase: 2…} 关闭事件 CloseEvent {wasClean: false, code: 1006, reason: "", type: "close", target: WebSocket…} //----------------------------------------------------------------------------...
来源: Laya_社区 发布时间: 20180211
...ay.Sprite; /** 事件当前冒泡对象。*/ currentTarget: laya.display.Sprite; _stoped: boolean; /** 分配给触摸点的唯一标识号(作为 int)。*/ touchId: number; /**键盘值*/ ke...
来源: Laya_社区 发布时间: 20170601
...ED,mc,onmcloaded); MovieClip(e.target).addLabel("label01",19); MovieClip(e.currenttarget).addLabel("label01",19); 2017-08-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 4 个回复 shinestarpvz 赞同来自: 现在2个值...
来源: Laya_社区 发布时间: 20170809
...is, this.onMouseDown); } } onMouseDown(e: Laya.Event) { // console.log(e.currentTarget, e.target); if(e.target == this) { this.startDrag(); } else { this.stopDrag(); } } 判断一下点击对象是否是自己。才处理拖动。 2019-11-21 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 ...
来源: Laya_社区 发布时间: 20191121
....log('onStartDragPicture e', e); } 返回的信息: Event _stoped: false currentTarget: Stage {focus: null, designWidth: 1307, designHeight: 758, canvasRotation: false, canvasDegree: 0, …} nativeEvent: MouseEvent {isTrusted: true, screenX: 906, screenY: 460, clientX: 457, clientY: 278, …} targ...
来源: Laya_社区 发布时间: 20181022