Writing script for Autohotkey for invoking 'Shift+F5' keystrokes -
i have run few applications browser , ticketing tool. but, need continuously press shift+f5 keystrokes reloading pages of browser , ticketing tool.
can use script through autohotkey invoking 'shift+f5' keys repeatedly every 20 seconds regular interval?
can please me writing script autohotkey invoking 'shift+f5' keystrokes?
i assume want able turn feature on/off
#singleinstance force #installkeybdhook #persistent #f5:: ; [win]+[f5] start timer settimer, refreshpage, 20000 traytip, refresh, started, 1 tooltip, refresh active return +#f5:: ; [shift]+[win]+[f5] stop timer settimer, refreshpage, off traytip, refresh, stopped, 1 tooltip return refreshpage: send, +{f5} return
Comments
Post a Comment