I suggest to update the imminst forum flash player (or I dunno what)
Posted 04 July 2010 - 11:02 AM
Posted 04 July 2010 - 08:53 PM
Posted 05 July 2010 - 03:24 AM
If you are a blogger or forum owner, you might notice that when you embed a Youtube video in your blog or post, it’s missing the Fullscreen button. I personally own a VBulletin powered Oracle Forums. One of the members at the site shared a video and I noticed that the video was missing the Fullscreen button. I did some research and it’s basically very simple to add the full screen button in the embed code.
Firstly here’s what the embed code looks before:1<object width="640" height="385" data="http://www.youtube.com/v/Diu5eFHbFoA" type="application/x-shockwave-flash" class="restrain" id="yui-gen14">2<param value="http://www.youtube.com/v/Diu5eFHbFoA&" name="movie">3<param value="transparent" name="wmode">4</object>
And this is the result, note that there is no Fullscreen button
To add the Fullscreen button what we need to do is add the variable fs=1 to youtube URLS and set the parameter allowFullScreen to true. Here’s how the code above needs to be modified:1<object width="640" height="385" data="http://www.youtube.com/v/Diu5eFHbFoA&&fs=1" type="application/x-shockwave-flash" class="restrain" id="yui-gen14">2<param value="http://www.youtube.com/v/Diu5eFHbFoA&&fs=1" name="movie">3<param value="transparent" name="wmode">4<param value="true" name="allowFullScreen">5</object>
For VBulletin Forum Owners
You need to go to Styles & Templates –> Style Manager –> –> BBCode Layout Templates –> bbcode_video:
Find:1<vb:elseif condition="$provider == 'youtube'" />2<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/{vb:raw code}">3 <param name="movie" value="http://www.youtube.com/v/{vb:raw code}" />4 <param name="wmode" value="transparent" />5</object>
Replace with:1<vb:elseif condition="$provider == 'youtube'" />2<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/{vb:raw code}&fs=1">3 <param name="movie" value="http://www.youtube.com/v/{vb:raw code}&fs=1" />4 <param name="wmode" value="transparent" />5 <param name="allowFullScreen" value="true" />6</object>
Posted 11 July 2010 - 09:22 AM
0 members, 3 guests, 0 anonymous users