Published
- 1 min read
Autohotkey tooltip with a timer to remove itself
The solution for this is noted below
Autohotkey tooltip with a timer to remove itself
Solution
TimedToolTip("Example text",3000) ;In miliseconds
;-----Functions-----;
TimedToolTip(text,time)
{
ToolTip, %text%
SetTimer, RemoveToolTip, %time%
return
}
;---Subroutines---;
RemoveToolTip:
ToolTip
return
Try other methods by searching on the site. That is if this doesn’t work