Difference between revisions of "EventDispatcher:removeEventListener"
From GiderosMobile
| Line 3: | Line 3: | ||
=== Description ===  | === Description ===  | ||
<translate><br />  | <translate><br />  | ||
| − | Removes a listener from the [[EventDispatcher  | + | Removes a listener from the [[EventDispatcher]] object. [[removeEventListener()]] function expects<br />  | 
the same arguments with [[addEventListener()]] to remove the event. If there is no matching listener<br />  | the same arguments with [[addEventListener()]] to remove the event. If there is no matching listener<br />  | ||
registered, a call to this function has no effect.<br />  | registered, a call to this function has no effect.<br />  | ||
Revision as of 14:00, 23 August 2018
Available since: Gideros 2011.6
Description
Removes a listener from the EventDispatcher object. removeEventListener() function expects
the same arguments with addEventListener() to remove the event. If there is no matching listener
registered, a call to this function has no effect.
 EventDispatcher:removeEventListener(type,listener,data)
Parameters
type: (string) The type of event. 
listener: (function) The listener object to remove. 
data: (any) The data parameter that is used while registering the event.