--- In [email protected], j2me_soul <j2me_s...@...> wrote: > > I use this code to jump to each frame. But the component didn't play as same > as playing in flash. > > All the transition effect disappear. It just jump one frame to another > directly without transition. > > How to make the component play as in flash ? > > > > if (stateBtn.currentLabel == "tiny") > { > stateBtn.gotoAndPlay("half"); > stateBtn.stop(); > }
When you issue a stop() command, then the goTo _andPlay_ is pretty much neutralized...a movie clip can't both be playing and stopped at the same time.

