Guest User

Untitled

a guest
May 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import mx.transitions.Tween;
  2. import mx.transitions.easing.*;
  3.  
  4. function slidein() {
  5. var slidex:Tween = new Tween(_root.imagestrip, "_x", Regular.easeInOut, -1000, 0, 2, true);
  6. // when the tween has finished, begin again
  7. slidex.onMotionFinished = function() {
  8. slidein();
  9. }
  10. }
  11.  
  12. slidein();
Add Comment
Please, Sign In to add comment