12-15-2014, 06:57 AM
To create QM script that does the same as this AHK script, use this dialog: floating toolbar -> Files,web -> Run program.
int w=win
rig 39 18 id(1504 win("" "Shell_TrayWnd")) 1 ;;tool bar 'User Promoted Notification ...', push button 'SliderDock'
lef 83 33 wait(15 WV win("" "WindowsForms10.Window.20808.app.0.1a6f050")) 1 ;;menu item 'show/hide'
act w
mou 0.5 0.5 w
Quote: I can't seem to get it to activate the previous window and move the mouse to the center of that previous windowGet current window handle before clicking the tray icon. Activate it after.
int w=win
rig 39 18 id(1504 win("" "Shell_TrayWnd")) 1 ;;tool bar 'User Promoted Notification ...', push button 'SliderDock'
lef 83 33 wait(15 WV win("" "WindowsForms10.Window.20808.app.0.1a6f050")) 1 ;;menu item 'show/hide'
act w
mou 0.5 0.5 w
Quote:how to send that type of input to SliderDockQM does not have a more low-level function to send keys. key() in QM probably works like Send() in AutoIt.
