[flexcoders] Re: TabNavigator changes page (html) title

2009-11-20 Thread ynotob
Update. I was able to get fix the issue with a minor change to the original reply. I had to set the title to the string explicitly. Thanks again. private var applicationName:String = User status and admin option; private function initApp():void { browserManager =

[flexcoders] Re: TabNavigator changes page (html) title

2009-11-19 Thread Flex Boy
Yea I know, it's a bug in the historymangager(sdk 3.2), you have to set the pagetitle manual after pressing the tab.. work around: private var browserManager:IBrowserManager; private function initApp():void { browserManager = BrowserManager.getInstance(); browserManager.setTitle('your page

[flexcoders] Re: TabNavigator changes page (html) title

2009-11-19 Thread ynotob
Thanks, I'll give that a try, appreciate the detailed response. Do you know if it is fixed in more recent SDK releases? I've been meaning to upgrade the SDK for a while but have delayed because I'm not sure how painful / painless the process is. --- In flexcoders@yahoogroups.com, Flex Boy