RE: [Junk E-Mail - LOW] [flexcoders] Retriggering a creationComplete function?

2006-08-26 Thread Shannon Hicks
Try the "show" event instead or in addition to creationComplete Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stefan SchmalhausSent: Saturday, August 26, 2006 3:33 PMTo: flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] [flexcoders] Retriggering a

Re: [Junk E-Mail - LOW] [flexcoders] Retriggering a creationComplete function?

2006-08-26 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, Shannon Hicks [EMAIL PROTECTED] wrote: Try the show event instead or in addition to creationComplete show doesn't work. LiveDocs on show: Dispatched when an object's state changes from invisible to visible. -- Flexcoders Mailing List FAQ:

Re: [Junk E-Mail - LOW] [flexcoders] Retriggering a creationComplete function?

2006-08-26 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, Shannon Hicks [EMAIL PROTECTED] wrote: Try the show event instead or in addition to creationComplete Problem solved. The enterState event did the trick. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

RE: [Junk E-Mail - LOW] [flexcoders] Retriggering a creationComplete function?

2006-08-26 Thread Darren Houle
I know it's more work, but... Instead of using creationComplete=someFunction() in your first view, take the button/widget or whatever that causes the app to switch over to the first view and add your someFunction() to that button/widget's click= event. In other words call sommeFunction()