https://www.icyphoenix.com/viewtopic.php?f=4&t=8162&p=54279#p54279
-----------------------------------
Joshua203
Tue 18 Oct, 2011 18:20

Re: FLV Player Allow Fullscreen
-----------------------------------
I started playing with this but you know how good a coder I am  :mryellow: 

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:

[code linenumbers=false]				elseif ($tag === 'flv')
				{
					$html = '<object type="application/x-shockwave-flash" width="' . $width . '" height="' . $height . '" wmode="transparent" data="flv_player.swf?file=' . $content . '&amp;autoStart=false"><param name="movie" value="flv_player.swf?file=' . $content . '&amp;autoStart=false"/><param name="wmode" value="transparent"/></object>';
				}[/code]

Promise not to laugh if this is a silly replacement but this worked for me for this fast try:
[code linenumbers=false]				elseif ($tag === 'flv')
				{
					$html = '<object type="application/x-shockwave-flash" width="' . $width . '" height="' . $height . '" wmode="transparent" allowfullscreen="true" data="flv_player.swf?file=' . $content . '&amp;autoStart=false"><param name="wmode" value="transparent"/><param name="allowfullscreen" value="true"/><param name="movie" value="flv_player.swf?file=' . $content . '&amp;autoStart=false"/><param name="wmode" value="transparent"/></object>';
				}[/code]

Keep in mind ..I'm not saying this is how it should be done  :wink: I even expect this to be incorrect somewhere


