TIEDirectShow.DVDSelectAt
Declaration
procedure DVDSelectAt(x, y: integer);
Description
Select a button in DVD menu, at specified position. To actually press the button call
DVDActivateButton.
Note: In order to play a DVD under the Delphi IDE you should disable "Integrated Debugging"
procedure TForm1.ImageEnView1MouseMove(Sender: TObject; Shift: TShiftState;
X, Y: Integer);
begin
ImageEnView1.IO.DShowParams.DVDSelectAt(x, y);
end;
| Demos\Display\VMR_DVD\VMR_DVD.dpr |