Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. msgstring := " Move KiTTY`n1: Monitors | 2: Lappy"
  2. Gui, -SysMenu -caption +toolwindow +alwaysontop
  3. Gui, color, 000000
  4. WinSet, Transparent, 150
  5. Gui, font, s14 cFFFFFF, Segoe UI
  6. Gui, add, text, vtext, %msgstring%
  7. Gui, show, noactivate
  8.  
  9. Input, inkey, L1
  10. Gui, Destroy
  11. if (inkey = "1") {
  12. WinActivate, ahk_class KiTTY
  13. WinRestore, ahk_class KiTTY
  14. WinMove, ahk_class KiTTY,, -2108, -776, 2116, 1721
  15. ;WinMove, ahk_class KiTTY,, -3369, -108, 3378, 1095
  16. } else if (inkey = "2") {
  17. WinActivate, ahk_class KiTTY
  18. WinMove, ahk_class KiTTY,, 0, 0
  19. WinRestore, ahk_class KiTTY
  20. WinMaximize, ahk_class KiTTY
  21. }
  22.  
  23. ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement