RE: [flexcoders] Re: Help with event.stopImmediatePropagation();

2007-09-11 Thread Alex Harui
m Sent: Tuesday, September 11, 2007 12:53:38 PM Subject: [flexcoders] Re: Help with event.stopImmediatePropagation(); The addEventListener( ) method has a priority parameter (the fourth one), which specifies the order in which your listener functions will be called. The parameter defaults to 0, and when

Re: [flexcoders] Re: Help with event.stopImmediatePropagation();

2007-09-11 Thread Patrick Driggett
have one in my code. this is just for understaning. > > - Original Message > From: ben.clinkinbeard <[EMAIL PROTECTED]> > To: flexcoders@yahoogroups.com > Sent: Tuesday, September 11, 2007 12:53:38 PM > Subject: [flexcoders] Re: Help with event.stopImmediatePropagation(

Re: [flexcoders] Re: Help with event.stopImmediatePropagation();

2007-09-11 Thread Sheriff
ubject: [flexcoders] Re: Help with event.stopImmediatePropagation(); The addEventListener( ) method has a priority parameter (the fourth one), which specifies the order in which your listener functions will be called. The parameter defaults to 0, and when there are mu

[flexcoders] Re: Help with event.stopImmediatePropagation();

2007-09-11 Thread ben.clinkinbeard
The addEventListener() method has a priority parameter (the fourth one), which specifies the order in which your listener functions will be called. The parameter defaults to 0, and when there are multiple listeners with the same priority they are called in the order in which they were added. event