MyBB Community Forums

Full Version: You-Tube
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi -

I am trying to get the fullscreen button to appear on the You-Tube Video Window when I embed You-Tube videos to my forum. Does anyone know what I need to add to this code to achieve this?

<object type="application/x-shockwave-flash" class="video_embed" style="width: 600px; height: 500px;" data="http://www.youtube.com/v/{$id}"><param name="movie" value="http://www.youtube.com/v/{$id}" /></object>

I have already tried adding <param name="allowfullscreen" value="true"
but this is not working for me.

Thanks in advance for any help

Please ignore.

I solved it by making the following change...
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/{$id}&hl=en_US&fs=1"</param>
<param name="allowscriptaccess" value="always"></param>
<param name="allowfullscreen" value="true"></param>
<embed src="http://www.youtube.com/v/{$id}&hl=en_US&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>