Difference between revisions of "Jump points"

From MythTV Official Wiki
Jump to: navigation, search
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
'''Jump points''' are a type of [[keybindings|keybinding]] which allow the definition of a single-keypress jump from any menu into a pre-defined list of [[mythfrontend]] menus, eg. 'Main Menu', 'Live TV', 'Program Finder'. Several plugins also support jump-points, eg. 'Play DVD', 'MythGallery', 'Video Gallery'.
 
'''Jump points''' are a type of [[keybindings|keybinding]] which allow the definition of a single-keypress jump from any menu into a pre-defined list of [[mythfrontend]] menus, eg. 'Main Menu', 'Live TV', 'Program Finder'. Several plugins also support jump-points, eg. 'Play DVD', 'MythGallery', 'Video Gallery'.
 +
 +
<pre>
 +
    &lt;button&gt;
 +
    &lt;type&gt;JUMP_VIDEO_GALLERY&lt;/type&gt;
 +
    &lt;text&gt;Videos&lt;/text&gt;
 +
    &lt;action&gt;JUMP Video Gallery&lt;/action&gt;
 +
    &lt;depends&gt;mythvideo&lt;/depends&gt;
 +
  &lt;/button&gt;
 +
</pre>
 +
 +
To see a list of available jump points, install mythweb and visit the key bindings page
 +
( Possibly http://localhost/mythweb/settings/mythtv/keys )
  
 
{{stub}}
 
{{stub}}
  
 
[[Category:Glossary]]
 
[[Category:Glossary]]

Latest revision as of 05:47, 23 August 2008

Jump points are a type of keybinding which allow the definition of a single-keypress jump from any menu into a pre-defined list of mythfrontend menus, eg. 'Main Menu', 'Live TV', 'Program Finder'. Several plugins also support jump-points, eg. 'Play DVD', 'MythGallery', 'Video Gallery'.

    <button>
     <type>JUMP_VIDEO_GALLERY</type>
     <text>Videos</text>
     <action>JUMP Video Gallery</action>
     <depends>mythvideo</depends>
   </button>

To see a list of available jump points, install mythweb and visit the key bindings page ( Possibly http://localhost/mythweb/settings/mythtv/keys )