Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. timedDisplay("Msg displayed over everything for some time.")
  2. ;timedDisplay("Them resumes next script line.")
  3.  
  4. exitapp ;exits script
  5.  
  6. timedDisplay(text){
  7. Gui, +AlwaysOnTop +ToolWindow -SysMenu -Caption
  8. Gui, Color, ffffff ;changes background color
  9. Gui, Font, 000000 s20 wbold, Verdana, x0 y0 ;changes font color, size and font
  10. Gui, Add, Text, x0 y0, %text% ;the text to display
  11. Gui, Show, NoActivate, x0 y0
  12.  
  13. sleep, 1500
  14. Gui, Destroy
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement