Hi.
I'm trying to set and get the volume of the VLC ActiveX plugin but it seems to fail in IE.
I'm embedding the object as shown below. The player plays nicely, but trying to get the volume (in a javascript section) using on of the following methods fails
--------------------------------------------
volume = document.vlc.Volume();
volume = document.vlc.volume();
volume = document.vlc.getvolume();
volume = document.vlc.getVolume();
volume = document.vlc.Getvolume();
volume = document.vlc.GetVolume();
volume = document.vlc.get_volume();
volume = document.vlc.get_Volume();
volume = document.vlc.Get_volume();
volume = document.vlc.Get_Volume();
--------------------------------------------
Am I a fool trying to get the volume out of a ActiveX component trying to use javascript ?
Kind regards
--PMM
The object code
<object id="vlc"
name="vlc"
classid="clsid:E23FE9C6-778E-49D4-B537-38FCDE4887D8"
codebase="https://downloads.videolan.org/pub/vide ... /axvlc.cab"
type="application/x-vlc-plugin"
width="100%"
height="100%"
events="True">
<param name="Src" value="rtsp://myserver/myfile"/>
<param name="ShowDisplay" value="True"/>
<param name="Loop" value="False"/>
<param name="AutoPlay" value="True"/>
</object>