This content has been marked as final.
Show 3 replies
-
1. Re: Listener doesn't get called
oldMster Feb 13, 2012 5:42 PM (in response to JackHombre)If it is a standard mx:button or s:button, they don't fire ItemClick events, they fire 'click' events.
Mark
-
2. Re: Listener doesn't get called
JackHombre Feb 14, 2012 6:22 AM (in response to oldMster)So they do. Specifically, they fire MouseEvent.CLICK events thereby requiring a function handler(e:MouseEvent):void handler. Thanks.
-
3. Re: Listener doesn't get called
oldMster Feb 14, 2012 8:04 AM (in response to JackHombre)The ItemClick events are usually defined for object that have multiple items within them, such as DataGrids or Lists. They are differentiated since in an itemClick, you need additional data in the event to determine exactly which item was clicked.
Mark

