[flexcoders] Initialize funkyness

2006-06-08 Thread Jeremy Rottman
I am using initialize to call a function when I enter a state. The first time I enter the state everything works fine. The function is called and the text input is populated correctly. But when I leave the state, and go back into at another time, it appears that the function is not called and the

Re: [flexcoders] Initialize funkyness

2006-06-08 Thread Scott Langeberg
I believe that initialize() is only triggered the first time the movie loads. You'll probably want to call the function again, using a listener on the statechange. Sorry I don't have any code to give... ;) Scott On 6/8/06, Jeremy Rottman [EMAIL PROTECTED] wrote: I am using initialize to