Guest User

Untitled

a guest
Nov 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. button.addActionListener(this);
  2.  
  3. @Override
  4. public void actionPerformed(ActionEvent e) {
  5. if (e.getActionCommand().equals("btn"))
  6. Animation();
  7. }
  8.  
  9. Animation() {
  10. if(!playing) {
  11. playing = true;
  12.  
  13. Thread.sleep(speed);
  14.  
  15. playing = false;
  16. }
  17. }
Add Comment
Please, Sign In to add comment