Re: [flexcoders] enterState for tabNavigator?

2009-01-05 Thread endrone endrone
Also the show event of the TabNavigator children. The show is only dispatched if you hide it first It's either the TabNavigator's 'change' (your current method) or its children's 'initialize'. It's hard to say without knowing more about the sort of initialization you're doing here. I'm

RE: [flexcoders] enterState for tabNavigator?

2009-01-05 Thread Tracy Spratt
: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of endrone endrone Sent: Monday, January 05, 2009 12:15 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] enterState for tabNavigator? Also the show event of the TabNavigator children. The show is only

Re: [flexcoders] enterState for tabNavigator?

2009-01-05 Thread endrone endrone
currentStateChange and enterState don't work with a TabNavigator They are indeed in the docs, but they don't seem to work. creationComplete and initialize only happen once. With states you can easily init a state with the enterState event. I want something similar for the TabNavigator. Now I

Re: [flexcoders] enterState for tabNavigator?

2009-01-05 Thread Manish Jethani
On Mon, Jan 5, 2009 at 10:01 PM, endrone endrone endr...@gmail.com wrote: currentStateChange and enterState don't work with a TabNavigator They are indeed in the docs, but they don't seem to work. Are you using the states feature at all? A TabNavigator by itself won't dispatch these events,

Re: [flexcoders] enterState for tabNavigator?

2009-01-05 Thread Manish Jethani
On Mon, Jan 5, 2009 at 2:22 PM, endrone endrone endr...@gmail.com wrote: when you change a state, there's a enterState dispatched when a new state is shown. This is very handy for initializing the state. But does something similar exist for the tabNavigator? (enterState exists for a

RE: [flexcoders] enterState for tabNavigator?

2009-01-05 Thread Tracy Spratt
Also the show event of the TabNavigator children. Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Manish Jethani Sent: Monday, January 05, 2009 9:11 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] enterState

Re: [flexcoders] enterState for tabNavigator?

2009-01-05 Thread Manish Jethani
On Mon, Jan 5, 2009 at 10:45 PM, endrone endrone endr...@gmail.com wrote: It's either the TabNavigator's 'change' (your current method) or its children's 'initialize'. It's hard to say without knowing more about the sort of initialization you're doing here. I'm not using states. Assume you