Advertisement
Ex0rpl4net

Untitled

Sep 25th, 2014
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5. #SingleInstance force
  6. f12::
  7. allthetext := grab()
  8. msgbox,%allthetext%
  9. return
  10. grab()
  11. {
  12.  
  13. sleep 20
  14. send ^a
  15. sleep 20
  16. send ^c
  17. sleep 20
  18.  
  19. return Clipboard
  20. }
  21.  
  22.  
  23.  
  24. f11::exitapp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement