Hello,
I have a client were working with. He uses myspace. He wants a youtube video to autoplay from youtube. He wants it to look sleek and doesn't want the controls buttons to show. I've read this is possible but can't get the div code right. It's an HD video and it's height="480" width="720".
We came across this url:
http://www.createblog.com/myspace-sc...eo-top_bottom/
and We found this code as an example it says:
Where it says YOUTUBE URL HERE insert your youtube embed url, not the url of the YouTube page.
Change the first
380 and the
230 to change the video's size and the -90 to position the video.
****
<div style="width:380px; height:230px; overflow:hidden!important; text-align:center;"><br />
<object type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" height="410" width="380" style="position:relative; top:
-90px;" data="
YOUTUBE URL HERE">
<param name="allowScriptAccess" value="never" />
<param name="allowNetworking" value="internal" />
<param name="movie" value="YOUTUBE URL HERE" />
<param name="wmode" value="transparent" />
</object>
</div>
****
This is our code were tried but it is not working? can you please help us. Thank you in advanced.
Our code we tried:
****
<div style="width:
720px; height:
480px; overflow:hidden!important; text-align:center;"><br />
<object type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" height="
410" width="
380" style="position:relative; top:
-90px;" data="
http://www.youtube.com/v/vaKuFww3ljM&ap=%2526fmt%3D18&loop=1&controls=0&showinfo=0&autoplay=1&&iv_load_policy=3">
<param name="allowScriptAccess" value="never" />
<param name="allowNetworking" value="internal" />
<param name="movie" value="
http://www.youtube.com/v/vaKuFww3ljM&ap=%2526fmt%3D18&loop=1&controls=0&showinfo=0&autoplay=1&&iv_load_policy=3" />
<param name="wmode" value="transparent" />
</object>
</div>
****