Also, ich weiß ja nicht, wie du das
Handle vom VLC ermittelst, aber bei mir funktioniert es so problemlos:
Delphi-Quellcode:
var
wnd: HWND;
begin
wnd := FindWindow('
VLC DirectX', '
VLC (hardware YUV overlay DirectX output)');
if wnd <> 0
then
begin
PostMessage(WND, WM_KEYDOWN, VK_SPACE, 0);
PostMessage(WND, WM_KEYUP, VK_SPACE, 0);
end;
end;