I'm using 1.1.5 in a web page and trying to resize the video but it's not changing. I've tried
document.getElementById('VLC').width = 640
document.getElementById('VLC').height = 480
and
document.getElementById('VLC').style.width = 640
document.getElementById('VLC').style.height = 480
but the size doesn't change. How can I change the video size using Javascript?
<object id="VLC" classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921"
pluginspage="http://www.videolan.org"
version="VideoLAN.VLCPlugin.2"
width="320px" height="240px" events="True">
<param name="src" value="w:\OnDemand\CADE 101_188_3.wmv"/>
<param name="ShowDisplay" value="True" />
<param name="AutoLoop" value="no"/>
<param name="AutoPlay" value="true"/>
<embed type="application/x-vlc-plugin"
autoplay="yes" loop="false"
id="VLC"
pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2"
width="320" height="240"
src="w:\CADE/OnDemand\CADE 101_188_3.wmv"
target="w:\OnDemand\CADE 101_188_3.wmv"
>
</embed>
</object>