Guest User

Untitled

a guest
May 24th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. t:textTransition = new textTransition(yourTextField, {_x:"-100", y:"-100", onComplete:fadeAlpha, onCompleteScope:this});
  2. //
  3. //
  4. function fadeAlpha():Void {
  5. t.reanimate({_alpha:50, onComplete:scaleDown, onCompleteScope:this});
  6. }
  7. //
  8. //
  9. function scaleDown():Void {
  10. t.reanimate({_xscale:50});
  11. }
Add Comment
Please, Sign In to add comment