Re: FLV Player Allow Fullscreen
I started playing with this but you know how good a coder I am
however I did manage to get it working with a fullscreen button by replacing the player file and modding includes >> bbcode.php
player downloaded and simply renamed to overwrite the original player:
http://www.longtailvideo.com/players/jw-flv-player/
Code I modified for the test in bbcode.php:
elseif ($tag === 'flv')
{
$html = '<object type="application/x-shockwave-flash" width="' . $width . '" height="' . $height . '" wmode="transparent" data="flv_player.swf?file=' . $content . '&autoStart=false"><param name="movie" value="flv_player.swf?file=' . $content . '&autoStart=false"/><param name="wmode" value="transparent"/></object>';
}
Promise not to laugh if this is a silly replacement but this worked for me for this fast try:
elseif ($tag === 'flv')
{
$html = '<object type="application/x-shockwave-flash" width="' . $width . '" height="' . $height . '" wmode="transparent" allowfullscreen="true" data="flv_player.swf?file=' . $content . '&autoStart=false"><param name="wmode" value="transparent"/><param name="allowfullscreen" value="true"/><param name="movie" value="flv_player.swf?file=' . $content . '&autoStart=false"/><param name="wmode" value="transparent"/></object>';
}
Keep in mind ..I'm not saying this is how it should be done
I even expect this to be incorrect somewhere
____________
www.DutchaGoGo.com (development/under construction ...Forever?¿?)