I've searched the forums with no luck in finding hot keys for windows media player when it has been minimized to the task bar. Since my coding skills are limited, here's my work around for WMP hot keys:
Code:
;--WMP Minimized to Taskbar Hotkeys--
;Next Track
<!c::
coordmode, mouse, Screen
MouseGetPos, xpos, ypos
mouseclick,left,3125,1035
MouseMove, xpos, ypos
return
;Previous Track
<!z::
coordmode, mouse, Screen
MouseGetPos, xpos, ypos
mouseclick,left,3081,1035
MouseMove, xpos, ypos
return
;Play/Pause Track
<!x::
coordmode, mouse, Screen
MouseGetPos, xpos, ypos
mouseclick,left,3105,1035
MouseMove, xpos, ypos
return
Essentially, the script performs the following actions:
1. grabs the current mouse position
2. moves the mouse to an absolute screen position and clicks
3. returns the mouse to its previous position
The screen coordinates of the next track, previous track, and play/pause buttons can be found using Window Spy. Substitute those coordinates in for those listed above.