Kodi Community Forum

Full Version: Impossible Video Full Screen
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
<control type="button" id="604">
<width>322</width>
<label>$LOCALIZE[12005]</label>
<onback>SetFocus(700)</onback>
<include>dialog_MenuButton</include>
<onclick>ActivateWindow(fullscreenvideo)</onclick>
<visible>Player.HasVideo</visible>
</control>

Hello all
I tried everything, checked on other skin and I do not understand why I can not turn Full Screen in PlayerControl.xml file. is that there was a fix for Isengard?
Can you help me ?

Thx very much
<onclick>FullScreen</onclick> works for me.
ronie, has right and I use the same command.



Image
Thank you for your answers, but I can explain best . I do not mean a Fullscreen setting on a menu, but in the Playercontrol.xml file.
Video active => back on the menu, movie backward and make menu (opening PlayerControl and FullScreen. Does not work for me on Kodi Isengard.

http://prntscr.com/75j4us
Works for me too.

Code:
<onclick>FullScreen</onclick>
check if there are any clues in the Debug Log.

i'm using it in Playercontrol.xml without any issues.
<control type="button" id="604">
<width>322</width>
<label>$LOCALIZE[12005]</label>
<onback>SetFocus(700)</onback>
<onclick>Close</onclick>
<onclick>FullScreen</onclick>
<include>dialog_MenuButton</include>
<visible>Player.HasVideo</visible>
</control>

Thank you for your help, this is what I have to write for this to work.
ahhh right, i should have tested it instead of just looking at the code :-)

you're correct. there was a recent change in kodi that prevents switching to a new window when a dialog is visible.
so you need to close the dialog first indeed.
ah, so I was not completely crazy. lol

Thx Ronie