Keyword

Fullscreen button not working

  • johnnybiggles
  • johnnybiggles's Avatar Topic Author
  • Offline
  • New Member
More
15 years 4 months ago #18511 by johnnybiggles
Fullscreen button not working was created by johnnybiggles
The fullscreen button in my Youtube in AllVideos is not working.  Is there a parameter that must be added to the code between the brackets to allow it?

Please Log in or Create an account to join the conversation.

More
15 years 4 months ago - 15 years 4 months ago #18512 by blacksheeptomato
Replied by blacksheeptomato on topic Re: Fullscreen button not working
that's easy to fix:

go to plugins/content/jw_allvideos and locate jw_allvideos_sources.php.

there you find the following code:

// YouTube
"youtube" => "
<span style=\"width:{VWIDTH}px;height:{VHEIGHT}px;\" class=\"allvideos_player\" title=\"JoomlaWorks AllVideos Player\">
<object type=\"application/x-shockwave-flash\" style=\"width:{VWIDTH}px;height:{VHEIGHT}px;\" data=\"www.youtube.com/v/{AVSOURCE}&hl=en&fs=1\">
<param name=\"movie\" value=\"www.youtube.com/v/{AVSOURCE}&hl=en&fs=1\" />
<param name=\"quality\" value=\"high\" />
<param name=\"wmode\" value=\"{TRANSPARENCY}\" />
<param name=\"bgcolor\" value=\"{BACKGROUND}\" />
</object>
</span>


replace it with:



// YouTube
"youtube" => "
<span style=\"width:{VWIDTH}px;height:{VHEIGHT}px;\" class=\"allvideos_player\" title=\"JoomlaWorks AllVideos Player\">
<object type=\"application/x-shockwave-flash\" style=\"width:{VWIDTH}px;height:{VHEIGHT}px;\" data=\"www.youtube.com/v/{AVSOURCE}&hl=en&fs=1\">
<param name=\"movie\" value=\"www.youtube.com/v/{AVSOURCE}&hl=en&fs=1\" />
<param name=\"allowFullScreen\" value=\"true\" />
<param name=\"quality\" value=\"high\" />
<param name=\"wmode\" value=\"{TRANSPARENCY}\" />
<param name=\"bgcolor\" value=\"{BACKGROUND}\" />
</object>
</span>

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum