Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. btnNext.onRelease = function(){
  2. if(test==false){
  3. test = true;
  4. new Tween(_root.inform, "_x", Strong.easeInOut, _root.inform._x, Stage.width*-1, 20, false);
  5. _root.jKey.gotoAndStop(2);
  6. var sound:Tween = new Tween(_root.jKey, "_x", Strong.easeInOut, _root.jKey._x, 40, 20, false);
  7. sound.onMotionFinished = function(){
  8. _root.jKey.loginSound.gotoAndPlay(2);
  9. _root.infoB.gotoAndStop(2);
  10. test = false;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement