Chrome settings/password shortcut with Autohotkey -
i'm trying shortcut autohotkey (i noob it) go chrome://settings/password/ when i'm on chrome.
the run command works url, like:
run, http://stackoverflow.com
so tried script, it's rough me:
;myscript: #ifwinactive, ahk_class chrome_widgetwin_1 ^q::send, ^t chrome://settings/passwords/ {enter} #ifwinactive
there ways better?
try step step:
;myscript: #ifwinactive, ahk_class chrome_widgetwin_1 ^q:: send, ^t sleep 500 ; replace "title" exact title of new window (tab) ; winwait, title ; ifwinnotactive, title, ,winactivate, title ; winwaitactive, title sendinput, chrome://settings/ ; sendinput faster in sending text sleep 500 send, {enter} sleep 500 ; replace "title" exact title of new window (tab) ; winwait, title ; ifwinnotactive, title, ,winactivate, title ; winwaitactive, title send, {tab 2} sleep 500 send, {enter} return #ifwinactive
Comments
Post a Comment