开发者

Flex: set another state in the currentStateChange handler?

开发者 https://www.devze.com 2023-02-06 22:12 出处:网络
I have a currentStateChange handler. In that handler. I want to set another state based on a variable. The currentStateChange handler fires but in the handler function it won\'t change it to the next

I have a currentStateChange handler. In that handler. I want to set another state based on a variable. The currentStateChange handler fires but in the handler function it won't change it to the next state. I know when it gets to the handler point the state has already changed. I'm hoping it something I'm missing and not a Flex limitation...

* state > state2 > I can't change to state 3 inside state change handler *

 private function onStateChange(e:Event):void
        {
         //THIS FIRES

          if(applic开发者_StackOverflow中文版ationViewModel.eremndr_mode == ApplicationViewModel.ERMNDR_MODE_LOGIN)
           {
                //it gets here but won't change to Signup state!
                prescreenViewModel.prescreen_state ='Signup';

         }
        }


I believe he issue was an effect that was attached to the transition was still playing so it ignored my request to change the state

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号