Movie Question

liunx

Guest
I know that if I leave my .AVI video in <embed ...> form, that I will not be able to initially get rid of the controls, but I was wondering if there was an easier way in either html. javascript, or very limited java to get my .avi movie to play without the controls?<br />
<br />
I tried using <object> command, but that led to a bad path, couldn't find the clsid or the codebase. So, thats out of the question too.<br />
<br />
Any help is appreciated,<br />
Thanks.<!--content-->The proprietary method would follow these rules: <embed src=http://www.webdeveloper.com/forum/archive/index.php/"video.avi" autostart="true" /> The more advanced method would be to use something similar to this: <object data="video.avi" type="video/avi"></object><br />
<br />
The function of the classid to to determine which multimedia player is preferred it is not essential.<br />
<br />
<object classid="CLSID:05589FA1-C356-11CE-BF01-00AA0055595A" width="100" height="100"><br />
<param name="FileName" value="video.avi" type="video/avi" /><br />
<param name="ShowDisplay" value="0" /><br />
<param name="ShowControls" value="0" /><br />
<param name="AutoStart" value="-1" /><br />
<param name="PlayCount" value="1" /><br />
<param name="MovieWindowWidth" value="100" /><br />
<param name="MovieWindowHeight" value="100" /><br />
<embed src=http://www.webdeveloper.com/forum/archive/index.php/"video.avi" autostart="true" /><br />
</object><!--content-->ahh, okay I see.<br />
<br />
Thanks a bunch. :)<!--content-->
 
Back
Top