Guest User

Untitled

a guest
Feb 21st, 2018
5
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. playButton.addActionListener(new ActionListener() {
  2. public void actionPerformed(ActionEvent ae) {
  3. try {
  4. for (String s : commands) {
  5. Method m = Robot.class.getMethod(s);
  6. m.invoke(null);
  7. }
  8. } catch (Exception e) {
  9. e.printStackTrace();
  10. }
  11. }
  12. });
Add Comment
Please, Sign In to add comment