Help on ratio pixel control shortcut
#1
Based on wiki http://wiki.xbmc.org/index.php?title=Keyboard.xml

Quote:IncreasePAR Used in video fullscreen to increase the pixel aspect ratio (stretch).
DecreasePAR Used in video fullscreen to decrease the pixel aspect ratio (stretch).

This function is controlling subtitle position on my end (eden). This is a bug or I'm doing it wrong?

Code:
<FullscreenVideo>
    <keyboard>
      <up mod="ctrl">IncreasePAR</up>
      <down mod="ctrl">DecreasePAR</up>
    </keyboard>
</FullscreenVideo>

I just want to increased/decrease the height of video on playing screen. I don't want to use default presets for aspect ratio by shortcut "Z".
I wish to have Rotten Tomatoes (user+critics) + IMDB both ratings display in skin.
Reply
#2
The default keymap shifts the subs, so your custom keymap is not overriding.

Quite possibly due to you missing the <keymap> tags?

Explain how you've setup your custom keymap.

Cheers,
Jonathan
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#3
Yeah, my custom keymap is not overriding. So I changed to pageup/down and it is working.

My actual keyboard.xml:

Code:
<keymap>
  <global>
    <keyboard>
      <home mod="ctrl">XBMC.ActivateWindow(Home)</home>
      <r mod="alt">RestartApp</r>
      <s mod="ctrl,shift">ReloadSkin()</s> <!-- allow reload skin when you change content of any skin .xml file without need to restart XBMC -->
    </keyboard>
  </global>
  <MyVideoLibrary>
    <keyboard>
      <f mod="ctrl">SendClick(19)</f>
      <s mod="ctrl">SendClick(8)</s>
      <h>ToggleWatched</h>
    </keyboard>
  </MyVideoLibrary>  
  <FullscreenVideo>
    <keyboard>
      <backspace>XBMC.PlayerControl(Previous)</backspace> <!-- Restart a movie in playing screen-->
      <pageup>IncreasePAR</pageup>
      <pagedown>DecreasePAR</pagedown>
    </keyboard>
  </FullscreenVideo>
</keymap>

I appreciate your feedback, Thank you!
I wish to have Rotten Tomatoes (user+critics) + IMDB both ratings display in skin.
Reply
#4
And where have you placed this file?
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#5
Already is working, thank for your help.
I wish to have Rotten Tomatoes (user+critics) + IMDB both ratings display in skin.
Reply

Logout Mark Read Team Forum Stats Members Help
Help on ratio pixel control shortcut0