I am using a VLC 2.0.6 ActiveX control in a Visual Studio 2012 windows application. I figured out how to load and play a basic video using the following code:
axVLCPlugin21.playlist.add(filename, title, null);
axVLCPlugin21.playlist.play();
I am trying to figure out how to programmatically seek the video to a certain location. I scowered the internet and found people talking about shuttle(), MoveToPosition(), Position, and more, but none of those methods/properties are available to me. All I can see is axVLCPlugin21.StartTime, which is an int, and setting that either before, or after calling play() has no affect.
Thanks in advance!