RE: [flexcoders] Re: Reset State in Flex

2008-02-20 Thread steven pollard
Thaks for your answers. how would you force a page refresh? Thanks Steve To: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Wed, 20 Feb 2008 21:32:40 +Subject: [flexcoders] Re: Reset State in Flex I am not aware of any quick way to clear all the text inputs and reset the application

[flexcoders] Re: Reset State in Flex

2008-02-20 Thread Anthony DeBonis
This will do it navigateToURL(new URLRequest(http://.;, _self);

[flexcoders] Re: Reset State in Flex

2008-02-20 Thread jmfillman
2008 21:32:40 +Subject: [flexcoders] Re: Reset State in Flex I am not aware of any quick way to clear all the text inputs and reset the application to how it was when it first loaded. The only way I know to do this is to programatically set everything back to how you want

Re: [flexcoders] Re: Reset State in Flex

2008-02-20 Thread Derrick Anderson
: [flexcoders] Re: Reset State in Flex I am not aware of any quick way to clear all the text inputs and reset the application to how it was when it first loaded. The only way I know to do this is to programatically set everything back to how you want them.myTextArea.text=;myPanel.visible

[flexcoders] Re: Reset State in Flex

2008-02-20 Thread jmfillman
I am not aware of any quick way to clear all the text inputs and reset the application to how it was when it first loaded. The only way I know to do this is to programatically set everything back to how you want them. myTextArea.text=; myPanel.visible=false; myArray.source = [One, Two, Three];