So can someone help me out with a transition?
I am simpy rotating a movie clip. This works fine.
When the rotation is finished, it resets back to its original position. Argg!
I can’t find any information on how to capture the motion finish, or how to just make it stay in place after the rotation.
Here is the line of code, which works, but resets back to original position :
ActionScript Code:
[FONT=Courier New][LEFT]TransitionManager.[COLOR=#0000ff]start[/COLOR][COLOR=#000000]([/COLOR]mc_name, [COLOR=#000000]{[/COLOR][COLOR=#0000ff]type[/COLOR]:Rotate, direction:Transition.[COLOR=#000080]OUT[/COLOR], [COLOR=#0000ff]duration[/COLOR]:[COLOR=#000080]3[/COLOR], easing:Strong.[COLOR=#000080]easeInOut[/COLOR], ccw:[COLOR=#000000]false[/COLOR], degrees:[COLOR=#000080]45[/COLOR][COLOR=#000000]}[/COLOR][COLOR=#000000])[/COLOR];
[/LEFT]
[/FONT]
Any ideas?