Keyboard shortcuts
#1
I am sure i am missing the obvious here but can someone tell me what the keyboard shortcuts are to jump directly to Music \ Videos \ Weather \ Pictures are please?
Reply
#2
Ctrl-m --> Music
Ctrl-e --> Videos
Ctrl-i --> Pictures

For weather, you'll have to create your own keyboard shortcut in your custom keyboard.xml (wiki) file located in your userdata (wiki)/keymaps directory. If you don't already have a custom keyboard.xml (wiki) file, create one in your userdata (wiki)/keymaps directory with the following content:
Code:
<keymap>
  <global>
    <keyboard>
      <some-key>ActivateWindow(weather)</some-key>
    </keyboard>
  </global>
</keymap>

Hint: If you don't like having to use the Ctrl key to activate keyboard shortcuts for Music, Video and Pictures, you could assign your own keys to display those pages as is done with weather in the example above. Just include the additional key definitions in the <keyboard> stanza in keyboard.xml (wiki):
Code:
:
  <some-key2>ActivateWindow(music)</some-key2>
  <some-key3>ActivateWindow(video)</some-key3>
  <some-key4>ActivateWindow(pictures)</some-key4>
:
Reply
#3
That is perfect, thank you.
Reply

Logout Mark Read Team Forum Stats Members Help
Keyboard shortcuts0