Advertisement
Guest User

Untitled

a guest
Dec 20th, 2011
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;Written by: DontMakeMeDoIt
  2. ;Public Code, I dont care what you do with it
  3.  
  4. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  5. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  6. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  7.  
  8. CustomColor = EEAA99  ; Can be any RGB color (it will be made transparent below).
  9. Gui +LastFound +AlwaysOnTop -Caption +ToolWindow  ; +ToolWindow avoids a taskbar button and an alt-tab menu item.
  10. Gui, Color, %CustomColor%
  11. Gui, Font, s100  ; Set a large font size (32-point).
  12. Gui, Add, Text, vMyText cRed, NOPE  ; Change NOPE to what every you want
  13. ; Make all pixels of this color transparent and make the text itself translucent (150):
  14. WinSet, TransColor, %CustomColor% 150
  15. Gui, Show, x0 y400 NoActivate  ; NoActivate avoids deactivating the currently active window.
  16. sleep, 5000
  17. ExitApp,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement