Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. blockWidth = 200
  2. blockHeight = 50
  3.  
  4. ;; End of configuration section
  5.  
  6. #NoEnv
  7. #Persistent
  8. #SingleInstance
  9.  
  10. SendMode Input
  11. SetWorkingDir %A_ScriptDir%
  12. CoordMode, Mouse, Screen
  13.  
  14. guiIndex := 1
  15. while true
  16. {
  17. #b::
  18. MouseGetPos, xpos, ypos
  19. Gui %guiIndex%:Default
  20. Gui, +AlwaysOnTop -Caption
  21. Gui, %guiIndex%:Color, 000000
  22. Gui, %guiIndex%:Show, x%xpos% y%ypos% w%blockWidth% h%blockHeight%
  23. guiIndex := guiIndex + 1
  24. return
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement