KeyMapping Multiple Layers
#1
Hi Guys

Pretty new to xbmc and have been playing around with mapping the keys on my remote control

I use the following

<i mod="ctrl">ActivateWindow(Video)</i>

This brings up the Video Page when i press the blue button

It shows all the folders in there such as movies and TV

is it possible to map the key so it goes directly into video then movies then title?

IE go straight to all the movies in the movies folders and sub folders

Thanks in advance

Mark
Reply
#2
XBMC.ActivateWindow(Videos,MovieTitles,return)

The return part on the end is optional. It makes the screen return to the homescreen when the back button is pressed, instead of just going up a folder.
Image
Reply
#3
Thnak you so much that works perfect

One more I tried doing the same for my TV shows but cant get it to work
the structure is Video - Files - TV shows

have tried
XBMC.ActivateWindow(Videos,Files,TV shows,return)
&
XBMC.ActivateWindow(Videos,FilesTV shows,return)

But both Give a black screen

Any ideas?

Mark
Reply
#4
XBMC.ActivateWindow(Videos, TvShowTitles,return)

Also, in case the next question is how to get direct to live tv EPG guide, you want:

XBMC.ActivateWindowAndFocus(MyPVR, 31,0, 10,0)
Image
Reply
#5
Hi there

thanks for the help that works great

Is there a list out there of all the available options as I don't want to keep bothering you but don't know what these commands are called so cant search for them on Google

appreciate your patience with this "Nube"

Mark
Reply
#6
See Opening_Windows_and_Dialogs (wiki)
Reply
#7
Hi
Thanks for the list it was most helpful

There doesn't seem to be one to go to a second level

For instance Files Goes to sources://video/

I would like to go to sources://video/Recorded TV

Is that possible.
Mark
Reply
#8
Ok I found the answer myself. You can show the contents of any folder with the following

ActivateWindow(10025,D:\\Recorded TV\\,return)

just change the path for the path you want to show

Mark
Reply

Logout Mark Read Team Forum Stats Members Help
KeyMapping Multiple Layers0