Re: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread JesterXL
It IS supported: http://www.jessewarden.com/archives/2005/11/event_bubbling.html - Original Message - From: Douglas Knudsen [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, November 23, 2005 11:29 AM Subject: [flexcoders] event bubbling Flex 1.5 not supportted I know,

Re: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread Jeff Tapper
Take a look at the EventManager class I wrote, it allows you to specifically work with situations like this, to prevent having to redundantly handle rebroadcasting events. http://jeff.mxdj.com/using_the_event_manager.htm At 11:29 AM 11/23/2005, you wrote: not supportted I know, how to work

Re: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread Douglas Knudsen
drat! I read your blog entry on this too, forgot about it. Ok, in my scenario below, I have A catching the event dispatched in C. But the target in the event still points to B the middleman. I need A to be able to be able to reference C in the event. Is the only way to add a reference to C

Re: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread JesterXL
PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, November 23, 2005 11:52 AM Subject: Re: [flexcoders] event bubbling Flex 1.5 drat! I read your blog entry on this too, forgot about it. Ok, in my scenario below, I have A catching the event dispatched in C. But the target in the event

Re: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread Johannes Nel
i create an array called originator into which i pop the tragets as i bubble upwards, thus going evtObj.originator[0] always refers to the source of the eventOn 11/23/05, JesterXL [EMAIL PROTECTED] wrote: I usually do:dispatchEvent({type: someEvent, target: this});Where this points to the

Re: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread JesterXL
...er, sorry, C. 2nd cup of coffee hasn't kicked in... - Original Message - From: JesterXL [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, November 23, 2005 12:09 PM Subject: Re: [flexcoders] event bubbling Flex 1.5 I usually do: dispatchEvent({type: someEvent

Re: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread Johannes Nel
PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, November 23, 2005 12:09 PM Subject: Re: [flexcoders] event bubbling Flex 1.5I usually do: dispatchEvent({type: someEvent, target: this}); Where this points to the component dispatching the event.So, if A wants to know who

RE: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread Tony Pujals
, November 23, 2005 10:37 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] event bubbling Flex 1.5 helps to actually attach the file, eh? sorry about the traffic...I need some of that coffee now too Jesse. DK On 11/23/05, Douglas Knudsen [EMAIL PROTECTED] wrote: lol! Ok, I attached

RE: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread Tony Pujals
. ;-) Tony tony pujals| senior engineer | Yahoo! SiteBuilder p. 408.349.6284 |e. [EMAIL PROTECTED]| y!id tonypujals From: Tony Pujals Sent: Wednesday, November 23, 2005 11:06 AM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] event bubbling Flex 1.5 So funny

Re: [flexcoders] event bubbling Flex 1.5

2005-11-23 Thread JesterXL
pling. - Original Message - From: Tony Pujals To: flexcoders@yahoogroups.com Sent: Wednesday, November 23, 2005 2:29 PM Subject: RE: [flexcoders] event bubbling Flex 1.5 I just wanted to follow up in case my last post wasn’t totally clear. JesterXL said: I usually do: dispatchEv