1st problem is, that the name of the window that handles the keyevents depends on which plugins you have use. for example foo_ui_std.dll or foo_ui_columns.dll. That is not really nice, but this problem can be solved.
2nd problem is, that the window that handles the keyevents doesn't process every key. if I send a cursor-down event for example with
CODE
PostMessage( foobarWindowHandle, WM_KEYDOWN, VK_DOWN, 0);
nothing happens. But if I send CODE
PostMessage( foobarWindowHandle, WM_KEYDOWN, VkKeyScan('c'), 0);
foobar2000 starts playing.Any idea how to solve my problem?
Thank you!