[SOLVED] kemap: movie information (possible bug?)

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Freestyler Offline
Junior Member
Posts: 16
Joined: Apr 2010
Reputation: 0
Post: #1
Hi!
I'm trying to map a key to the "movie info" window, so I don't have to open the context menu first and then click on movie info. I've tried adding

Code:
<browser_forward>ActivateWindow(movieinformation)</browser_forward>

to the global/keyboard section of the keyboard.xml file. This doesn't work as expected: the movie info window shows up, but it's empty, or it shows the previous movie info (eg. I open the context menu, go to movie info and it works. Then, on another movie, I press browser_forward to directly show movie info, but I still see the movie info of the previous movie).

I've also tried:

Code:
<video>
  <keyboard>
    <browser_forward>ActivateWindow(movieinformation)</browser_forward>
  </keyboard>
</video>

But this doesn't work: if I press browser_forward nothing happens.

Is this a bug or am I doing something wrong?
Thanks!
(This post was last modified: 2012-05-14 17:39 by Freestyler.)
find quote
jhsrennie Offline
Team-XBMC Developer
Posts: 7,237
Joined: Nov 2008
Reputation: 117
Location: Chester, UK
Post: #2
Code:
<browser_forward>Info</browser_forward>
find quote
Freestyler Offline
Junior Member
Posts: 16
Joined: Apr 2010
Reputation: 0
Post: #3
Many thanks for the quick reply!
I think that this info is missing from the wiki, in the Window IDs page "Info" isn't present.

Anyway great work Wink
find quote
jhsrennie Offline
Team-XBMC Developer
Posts: 7,237
Joined: Nov 2008
Reputation: 117
Location: Chester, UK
Post: #4
Info isn't a window id, it's an action. See http://wiki.xbmc.org/index.php?title=Action_IDs for details.
find quote
Freestyler Offline
Junior Member
Posts: 16
Joined: Apr 2010
Reputation: 0
Post: #5
Thanks again Wink
find quote