Kodi Community Forum

Full Version: remote key mapping videolibrary > movies > titles.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
so finally figured out how to assign a few custom key functions on my remote

its setup as an MCE remote in Lirc.

i have my buttons setup like so in my userdata/keymaps/remote.xml
Code:
<myvideo>XBMC.ActivateWindow(MyVideos,Movies)</myvideo>
      <mymusic>XBMC.ActivateWindow(MyMusic)</mymusic>
      <mypictures>XBMC.ActivateWindow(MyPictures)</mypictures>
      <mytv>XBMC.ActivateWindow(VideoLibrary,TvShows)</mytv>

now for music and photos this works great, but for Tv and Movies I am taken to a screen to which I have to select "Title" because thats how I browse. or I can pick year, actors, studio, etc etc

how I can make that button take me directly to (videolibrary,Movies>Title) and same goes for my tv shows

I have read just about every keyboard remote mapping thread and must have missed how to do this

Edit: the youtube plugin requires pressing the tab key to get to your Que'd Videos how can i replicate the tab key on my remote to another button
global mapping says:
Tab Toggles fullscreen modes (either visualisation or video playback)
I tried this but it didn't work
XBMC.ActivateWindow(ToggleFullscreen)

-=Jason=-
If im not mistaken,

<myvideo>XBMC.ActivateWindow(MyVideos,MyMovieTitles)</myvideo>
<mytv>XBMC.ActivateWindow(VideoLibrary,MyTvShowTitles)</mytv>

should work. You might have to add an s at the end of Movie and TvShow.
http://wiki.xbmc.org/index.php?title=Ope...nd_Dialogs

If the wiki is up to date:

XBMC.ActivateWindow(VideoLibrary,MovieTitles)
XBMC.ActivateWindow(VideoLibrary,TvShowTitles)
I guess I am mistaken then Blush. toiva is right
toiva Wrote:http://wiki.xbmc.org/index.php?title=Ope...nd_Dialogs

If the wiki is up to date:

XBMC.ActivateWindow(VideoLibrary,MovieTitles)
XBMC.ActivateWindow(VideoLibrary,TvShowTitles)
EDIT: Success I must have copied another code similar from another part of the wiki
copying what you just posted is working as it should

-=Jason=-