Re: [flexcoders] Flex 3 - 4 migration and s:States

2012-02-07 Thread Tandon, Rishi
...@adventistcare.org To: flexcoders@yahoogroups.com Sent: Tuesday, February 7, 2012 12:39 AM Subject: [flexcoders] Flex 3 - 4 migration and s:States   I'm migrating a flex 3.0 application to 4.0 (or 4.5, doesn't matter much) and I want to use the new state features of includeIn and excludeFrom. I have

Re: [flexcoders] Flex 3 - 4 migration and s:States

2012-02-07 Thread The Real Napster
Set/assign the state( currentState=Oct2010 ) inside creationComplete handling method. Ex. protected function application1_creationCompleteHandler(event:FlexEvent):void { // TODO Auto-generated method stub this.currentState = Oct2010; } May be all the states might have not laid-out while

Re: [flexcoders] Flex 3 - 4 migration and s:States

2012-02-07 Thread The Real Napster
fred.se...@adventistcare.org *To:* flexcoders@yahoogroups.com *Sent:* Tuesday, February 7, 2012 12:39 AM *Subject:* [flexcoders] Flex 3 - 4 migration and s:States I'm migrating a flex 3.0 application to 4.0 (or 4.5, doesn't matter much) and I want to use the new state features of includeIn

RE: [flexcoders] Flex 3 - 4 migration and s:States

2012-02-07 Thread Sells, Fred
/MdsClientBeta1/src/sections Flex Problem From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tandon, Rishi Sent: Tuesday, February 07, 2012 4:35 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 3 - 4 migration and s:States Well I

[flexcoders] Flex 3 - 4 migration and s:States

2012-02-06 Thread bu4fred
I'm migrating a flex 3.0 application to 4.0 (or 4.5, doesn't matter much) and I want to use the new state features of includeIn and excludeFrom. I have a user defined base class in mxml and i inherit from that for my 'working' classes. I have this code in my baseclass mx:TitleWindow