Advertisement
tabnation

taskbar color script

Mar 16th, 2022
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. f1::
  2. StartTime := A_TickCount
  3. Sleep, 3000
  4. ElapsedTime := A_TickCount - StartTime
  5. MsgBox, %ElapsedTime% milliseconds have elapsed.
  6. Return
  7.  
  8. f2::
  9. StartTime := A_TickCount
  10. loop 5
  11. {
  12. msgbox, Hi
  13. sleep 1000
  14. }
  15. ElapsedTime := A_TickCount - StartTime
  16. MsgBox, %ElapsedTime% milliseconds have elapsed.
  17. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement