Advertisement
witampanstwa

Untitled

Sep 7th, 2020
514
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #SingleInstance force
  2. #Persistent
  3. #NoTrayIcon
  4.  
  5. ^CapsLock::
  6. {
  7.     orig_clip := A_Clipboard
  8.     Send "^c"
  9.  
  10.     Sleep 30
  11.  
  12.     if (!InStr(A_Clipboard, "`n"))
  13.     {
  14.         if (!(A_Clipboard == StrUpper(A_Clipboard)))
  15.         {
  16.             Send StrUpper(A_Clipboard)
  17.         }
  18.         else
  19.         {
  20.             Send StrLower(A_Clipboard)
  21.         }
  22.  
  23.     }
  24.  
  25.     A_Clipboard := orig_clip
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement