[flexcoders] creationcomplete firing when a component is disabled

2009-09-01 Thread Scott
I've got a troubling issue... On my main page I have a tabNavigator that has several different pages for my app. This navigator is disabled until the user logs in. However, even though the navigator is disabled; it still fires off the creationcomplete which is giving me grief because the data

RE: [flexcoders] creationComplete?

2008-02-11 Thread Alex Harui
To: flexcoders@yahoogroups.com Subject: [flexcoders] creationComplete? I have two screens in Flex,for instance screen1 screen2 the creationComplete in screen2 triggered when the screen move from screen1 to screen2 first time. then I go back from screen2 to screen1 with other code

[flexcoders] creationComplete?

2008-02-11 Thread markflex2007
I have two screens in Flex,for instance screen1 screen2 the creationComplete in screen2 triggered when the screen move from screen1 to screen2 first time. then I go back from screen2 to screen1 with other code. but the creationComplete in screen2 doesn't triggered when the screen move from

[flexcoders] creationComplete question?

2007-12-21 Thread markflex2007
Hi I have some screens under ViewStack like this mx:ViewStack view:Form1View / view:Form2View / view:Form3View / view:ThankyouView / /mx:ViewStack I have set creationComplete event to call a function for Form2View, but the event is actived when I call the app first time(it

Re: [flexcoders] creationComplete Not Firing

2007-12-03 Thread Tom Chiverton
On Friday 30 Nov 2007, urmacboy wrote: We're experiencing an interesting problem where the function in the creationComplete attribute in the Application tag fails to run. You've verified this how ? By setting a breakpoint on the first line in the debugger ? -- Tom Chiverton Helping to

[flexcoders] creationComplete Not Firing

2007-11-30 Thread urmacboy
We're experiencing an interesting problem where the function in the creationComplete attribute in the Application tag fails to run. Has anyone else experienced problems with this attribute. The code for our Application tag is as follows: mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

RE: [flexcoders] creationComplete Not Firing

2007-11-30 Thread Alex Harui
@yahoogroups.com Subject: [flexcoders] creationComplete Not Firing We're experiencing an interesting problem where the function in the creationComplete attribute in the Application tag fails to run. Has anyone else experienced problems with this attribute. The code for our Application tag is as follows

[flexcoders] CreationComplete seems to be a little SLOW

2007-04-09 Thread boy_trike
On a state change I have the following snippet: mx:State name=oneItem enterState=displayLastOrder() mx:AddChild comp:OneItemOptions id=myOptions / /mx:AddChild /mx:State in the displayLastOrder() function I have a trace Statement trace('I am in the enterstate

Re: [flexcoders] CreationComplete help....

2007-01-17 Thread Tom Chiverton
On Tuesday 16 January 2007 17:39, jensen.axel wrote: then i pick a different item from a mx:Tree, and reload the component, to edit the new data i've selected from my tree... and the setup() function never runs, because the component has already been created, so i'm wondering how i can get

[flexcoders] CreationComplete help....

2007-01-16 Thread jensen.axel
Hello, I have a custom Component (it is an edit/create form) that i'm initializing... when i go and initialize the component, it runs a function on creationComplete=setup() then i save some data, and change viewStates... then i pick a different item from a mx:Tree, and reload the component,

RE: [flexcoders] CreationComplete help....

2007-01-16 Thread Beverly Guillermo
12:39 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] CreationComplete help Hello, I have a custom Component (it is an edit/create form) that i'm initializing... when i go and initialize the component, it runs a function on creationComplete=setup() then i save some data

[flexcoders] CreationComplete?

2006-08-15 Thread malik_robinson
Hi, I am trying to populate this data grid upon page load. If the page I am working has the mx:application tag, then I can use creationComplete(), but what can I do if I am working on a page which does not contain the mx:application I can load the data grid if I write a function, but I want

RE: [flexcoders] CreationComplete?

2006-08-15 Thread Matt Chotin
15, 2006 8:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] CreationComplete? Hi, I am trying to populate this data grid upon page load. If the page I am working has the mx:application tag, then I can use creationComplete(), but what can I do if I am working on a page which

[flexcoders] creationComplete on custom non UI component

2006-06-11 Thread Claudia Barnal
Is there a best practice for making something similar to a creationComplete method on a non UI component that extends EventDispatcher? I am not sure this is what I need, but let me explain my situation: !-- In the MXML -- MyComponent someValue=10 The problem is that I can't get to the

Re: [flexcoders] creationComplete on ViewStack children *bug?*

2005-08-26 Thread Manish Jethani
On 8/26/05, Scott Barnes [EMAIL PROTECTED] wrote: I've got a typical setup where i set certain properties of controls within a child of a view stack. Inside the child i have the usual creationComplete=hlper.myfunc() Only the myFunc doesn't even know its children within, meaning if i did

[flexcoders] creationComplete on ViewStack children *bug?*

2005-08-25 Thread Scott Barnes
I've got a typical setup where i set certain properties of controls within a child of a view stack. Inside the child i have the usual creationComplete=hlper.myfunc() Only the myFunc doesn't even know its children within, meaning if i did view.myButton.enable = false; the view.myButton would

RE: [flexcoders] creationComplete on ViewStack children *bug?*

2005-08-25 Thread Abdul Qabiz
Title: RE: [flexcoders] creationComplete on ViewStack children *bug?* Scott- So in saying this, does this mean that ViewStack creates the base containers for all of its children, but all sub-containers there within, aren't created until that child recieves index selection, meaning

Re: [flexcoders] creationComplete on ViewStack children *bug?*

2005-08-25 Thread Scott Barnes
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Barnes Sent: Friday, August 26, 2005 5:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] creationComplete on ViewStack children *bug?* I've got a typical setup