Hold select in fullscreen
#1
Hi,

When I do hold select in fullscreen mode of a movie I get back to the Gui of XBMC.

I would like to change this to bring up an addon, is this possible ? The addon is the subtitle addon to download subtitles.

If not possible to bring up addon, can I disable this ?

Code:
<FullscreenVideo>
    <joystick name="AppleRemote">
      <button id="1">VolumeUp</button>
      <button id="2">VolumeDown</button>
      <button id="3">StepBack</button>
      <button id="4">StepForward</button>
      <button id="5">Pause</button>
      <button id="6">Stop</button>
      <button id="7">OSD</button>
      <button id="8">Fullscreen</button>
      <button id="9">Rewind</button>
      <button id="10">FastForward</button>
      <!-- pageup     -->      <button id="13">BigStepForward</button>
      <!-- pagedown   -->      <button id="14">BigStepBack</button>
      <!-- SwipeLeft  -->      <button id="80">StepBack</button>
      <!-- SwipeRight -->      <button id="81">StepForward</button>
      <!-- SwipeUp    -->      <button id="82">BigStepForward</button>
      <!-- SwipeDown  -->      <button id="83">BigStepBack</button>
      <!-- FlickLeft  -->      <button id="85">Rewind</button>
      <!-- FlickRight -->      <button id="86">FastForward</button>
      <!-- FlickUp    -->      <button id="87">BigStepForward</button>
      <!-- FlickDown  -->      <button id="88">BigStepBack</button>
    </joystick>
  </FullscreenVideo>

is it <button id="8">Fullscreen</button> that needs to be changed ?

Thanks !
Reply
#2
Jefman Wrote:Hi,

When I do hold select in fullscreen mode of a movie I get back to the Gui of XBMC.

I would like to change this to bring up an addon, is this possible ? The addon is the subtitle addon to download subtitles.

If not possible to bring up addon, can I disable this ?

Code:
<FullscreenVideo>
    <joystick name="AppleRemote">
      <button id="1">VolumeUp</button>
      <button id="2">VolumeDown</button>
      <button id="3">StepBack</button>
      <button id="4">StepForward</button>
      <button id="5">Pause</button>
      <button id="6">Stop</button>
      <button id="7">OSD</button>
      <button id="8">Fullscreen</button>
      <button id="9">Rewind</button>
      <button id="10">FastForward</button>
      <!-- pageup     -->      <button id="13">BigStepForward</button>
      <!-- pagedown   -->      <button id="14">BigStepBack</button>
      <!-- SwipeLeft  -->      <button id="80">StepBack</button>
      <!-- SwipeRight -->      <button id="81">StepForward</button>
      <!-- SwipeUp    -->      <button id="82">BigStepForward</button>
      <!-- SwipeDown  -->      <button id="83">BigStepBack</button>
      <!-- FlickLeft  -->      <button id="85">Rewind</button>
      <!-- FlickRight -->      <button id="86">FastForward</button>
      <!-- FlickUp    -->      <button id="87">BigStepForward</button>
      <!-- FlickDown  -->      <button id="88">BigStepBack</button>
    </joystick>
  </FullscreenVideo>

is it <button id="8">Fullscreen</button> that needs to be changed ?

Thanks !

From top of file
Code:
<joystick name="AppleRemote">
      <!-- plus       -->      <button id="1">Up</button>
      <!-- minus      -->      <button id="2">Down</button>
      <!-- left       -->      <button id="3">Left</button>
      <!-- right      -->      <button id="4">Right</button>
      <!-- center     -->      <button id="5">Select</button>
      <!-- menu       -->      <button id="6">PreviousMenu</button>
      <!-- hold center-->      <button id="7">Fullscreen</button>
      <!-- hold menu  -->      <button id="8">ContextMenu</button>

I think what your after is button 7, button 8 is menu button being held down
Reply
#3
chuckles Wrote:From top of file

I think what your after is button 7, button 8 is menu button being held down

Hi,
Thanks for the help, it where actually button 8 (menu) that I wanted to change from Fullscreen to run Subtitle addon and it worked like a charm like this:

Code:
<button id="8">RunScript(script.xbmc.subtitles)</button>
Reply

Logout Mark Read Team Forum Stats Members Help
Hold select in fullscreen0