Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Please "eat" my media keys
#1
I use more than one app for video/audio playback, so I wrote a few short macros to send certain commands (play,FF,FR, stop) to the apps using the keyboard media keys depending which app one is visible. However, Windows Media Player 9/10 grabs the key along with QM even though the "EAT" option is chosen. Is there a way to stop this?
#2
You can register hot keys with RegisterHotKey function. For this purpose, you have to create window that will receive notifications and launch macros.

Create new function, name it MyHotKeys. Here it is:

Code:
Copy      Help
\Dialog_Editor
function# hDlg message wParam lParam
if(hDlg) goto messages

dll user32 #RegisterHotKey hWnd id fsModifiers vk
dll user32 #UnregisterHotKey hWnd id

if(getopt(nthreads)>1) ret
if(!ShowDialog("MyHotKeys" &MyHotKeys 0)) ret

;BEGIN DIALOG
;0 "" 0x10C80A44 0x100 0 0 107 0 "My Hot Keys"
;END DIALOG
;DIALOG EDITOR: "" 0x2010505 "*" ""


ret
;messages
sel message
,case WM_INITDIALOG
,DT_Init(hDlg lParam)
,
,;<EDIT THIS>
,
,RegisterHotKey(hDlg 1 0 VK_MEDIA_PLAY_PAUSE)
,RegisterHotKey(hDlg 2 0 VK_MEDIA_STOP)
,RegisterHotKey(hDlg 3 0 VK_MEDIA_NEXT_TRACK)
,RegisterHotKey(hDlg 4 0 VK_MEDIA_PREV_TRACK)
,;You can register more keys, with id 5, 6, ...
,;Third argument can be modifier flags: 1 Alt, 2 Ctrl, 4 Shift, 8 Win
,;Example: register hot key Ctrl+Win+A:
,;RegisterHotKey(hDlg 5 2|8 'A')
,int+ nHotKeys=4 ;;set this to the id of the last registered hot key
,ret 1
,
,case WM_HOTKEY
,sel wParam
,,case 1 mac "Macro1" ;;Replace "Macro1" etc to the real macro names
,,case 2 mac "Macro2"
,,case 3 mac "Macro3"
,,case 4 mac "Macro4"
,,;... (other registered keys)
,
,;<END EDIT THIS>
,
,case WM_DESTROY
,DT_DeleteData(hDlg)
,for(_i 1 nHotKeys+1) UnregisterHotKey(hDlg _i)
,
,case WM_COMMAND goto messages2
ret
;messages2
int ctrlid=wParam&0xFFFF; message=wParam>>16
sel wParam
,case IDCANCEL DT_Cancel hDlg
ret 1

Launch this. It shows a small dialog. While the dialog is open, the keys are yours.


Forum Jump:


Users browsing this thread: 1 Guest(s)