Log in

View Full Version : Menu disappered



BloomFreak
10-02-2008, 04:52 PM
OK when I post this code


<object id="MediaPlayer" width=320 height=274 classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components…" type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">
<param name="filename" value="http://anfvpq.bay.livefilestore.com/y1pOvHGGwk1EkSr6K-mprP7qD9baJC2lE8g46tHB4gJFywVkcEPP_qry5gO9tlkFGvHHlcR_2dswu8/Indestructible%20official%20MV.wmv?download">
<param name="ShowStatusBar" value="True">
<param name="ShowControls" value="True">
<param name="ShowDisplay" value="False">
<param name="autoStart" value="false">
<embed type="application/x-ms-wmp" src="http://anfvpq.bay.livefilestore.com/y1pOvHGGwk1EkSr6K-mprP7qD9baJC2lE8g46tHB4gJFywVkcEPP_qry5gO9tlkFGvHHlcR_2dswu8/Indestructible%20official%20MV.wmv?download" name="MediaPlayer" showdisplay="0" showstatusbar="1" autostart="0" width=320 height=274>
</embed></object>

With that URL of the video the controls disappear and its not just doing it what that^ video. But its doing it to all the videos except one of them. but when I use a different URL of a different video the controls stay there. :confused:

BloomFreak
12-15-2008, 06:41 AM
Ok sorry for bumping and double posting but I really need help here

This code works the menu shows up

<object id="MediaPlayer" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components…" type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" width="320" height="274">
<param name="ShowControls" value="True">
<param name="ShowDisplay" value="False">
<param name="autoStart" value="false">
<embed type="application/x-ms-wmp" src="http://anfvpq.bay.livefilestore.com/y1pD_Ub90yg_5pR9lQ6BhULo4Bj_6CozgGOBFFA60JtlSsnBjYIKKf_YQXWQ3BHGQrCuIlfTGMs9ERC3sxKbRk1vxt-YzM0jkbR/Disturbed%20Inside%20the%20fire%20%28full%29.wmv?download" name="MediaPlayer" showdisplay="0" showstatusbar="1" autostart="0" width="320" height="274"></embed>
</object>


This code dose not work the menu disappears

<object id="MediaPlayer" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components…" type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" width="320" height="274">
<param name="ShowControls" value="True">
<param name="ShowDisplay" value="False">
<param name="autoStart" value="false">
<embed type="application/x-ms-wmp" src="http://vzuytw.bay.livefilestore.com/y1poo1UgeB34w7eyMyncA3fY_S_IVeRKAg9Em-PgE-yiLOgEMCrvtlPF60uIT_LPDMyebm74iAxfy0jOo6VUCoIbA/Get%20it%202.wmv?download" name="MediaPlayer" showdisplay="0" showstatusbar="1" autostart="0" width="320" height="274"></embed>
</object>

Their the same code except the URL to the video is different. Why is it doing this?

*EDIT**
Never mind, i fixed it. I just played around with the code and came up with this:

<object id="MediaPlayer" width=320 height=274 classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components…" type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">
<param name="filename" value="file.wmv">
<param name="ShowStatusBar" value="True">
<param name="ShowControls" value="True">
<param name="ShowDisplay" value="False">
<param name="autoStart" value="false">
<embed type="video/x-ms-wmv" object="" src="URL of video" name="MediaPlayer" showdisplay="0" showstatusbar="1" autostart="0" height="800" width="820"></embed> </object>

EDIT**** OK its the size thats the problem if i make the size smaller the menu gose away HELP!!!