Hi all,
I am using the following code in C# to play a media file.
It plays the file very well.
string[] options = new string[1];
options[0] = ":aspect-ratio="+ width + ":" + height;
axVLCPlugin21.playlist.add(pathTextBox.Text, null, options);
axVLCPlugin21.Volume = 50;
axVLCPlugin21.playlist.play();
now i want to hide the OSD menu shown for a couple of seconds at the bottom.
looking forward,