RE: [flexcoders] Why no event dispatched?

2009-09-03 Thread Wally Kolcz
, September 01, 2009 4:11 AM To:flexcoders@yahoogroups.com Subject: Re: [flexcoders] Why no event dispatched? Do what Tracy mentions: either add bubbles=true in the constructor here: this.dispatchEvent(new LoginEvent(LoginEvent.FAILED)) On Mon, Aug 31, 2009 at 9:40 PM, Wally Kolcz wko

RE: [flexcoders] Why no event dispatched?

2009-09-03 Thread Tracy Spratt
, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Thursday, September 03, 2009 7:48 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Why no event dispatched? this listener

RE: [flexcoders] Why no event dispatched?

2009-09-02 Thread Tracy Spratt
@yahoogroups.com Subject: Re: [flexcoders] Why no event dispatched? Do what Tracy mentions: either add bubbles=true in the constructor here: this.dispatchEvent(new LoginEvent(LoginEvent.FAILED)) On Mon, Aug 31, 2009 at 9:40 PM, Wally Kolcz wko...@isavepets. mailto:wko...@isavepets.com com wrote

Re: [flexcoders] Why no event dispatched?

2009-09-01 Thread Fotis Chatzinikos
); } -- *From*: Tracy Spratt tr...@nts3rd.com *Sent*: Monday, August 31, 2009 10:37 AM *To*: flexcoders@yahoogroups.com *Subject*: RE: [flexcoders] Why no event dispatched? Your event is not set to bubble, so you listener must

RE: [flexcoders] Why no event dispatched?

2009-08-31 Thread Tracy Spratt
Your event is not set to bubble, so you listener must be: myLoginManagerInstance.addEventListener(); Is it? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Monday,

RE: [flexcoders] Why no event dispatched?

2009-08-31 Thread Wally Kolcz
; login.password = password; dispatchEvent(login); } From: Tracy Spratt tr...@nts3rd.com Sent: Monday, August 31, 2009 10:37 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Why no event dispatched? Your event is not set