RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Alex Harui
You can try extending EventDispatcher and dispatch events From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bithroop Sent: Wednesday, November 28, 2007 10:18 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Events and Non-Display

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Gordon Smith
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Wednesday, November 28, 2007 1:26 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events and Non-Display Objects You can try extending EventDispatcher and dispatch events From

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Jehanzeb Musani
:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Wednesday, November 28, 2007 1:26 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events and Non-Display Objects You can try extending EventDispatcher and dispatch events From: flexcoders

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Gordon Smith
Subject: RE: [flexcoders] Events and Non-Display Objects You can adopt the following two options to achieve your requirements. 1. Your MXML Object should Implement the IEventDispatcher interface and internally it creates an instance of EventDispathcer class and delegates calls to that instance. 2

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Jehanzeb Musani
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jehanzeb Musani Sent: Wednesday, November 28, 2007 1:42 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events and Non-Display Objects You can adopt the following two options to achieve your requirements. 1. Your MXML

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Gordon Smith
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jehanzeb Musani Sent: Wednesday, November 28, 2007 2:16 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events and Non-Display Objects Thanks Gordon for you prompt reply. Gordon, my experience is somewhat

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Jehanzeb Musani
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jehanzeb Musani Sent: Wednesday, November 28, 2007 2:16 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events and Non-Display Objects Thanks Gordon for you prompt reply. Gordon, my experience is somewhat different that what