Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details

If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.

Search found 23 matches

by kirs
Sun Apr 12, 2009 12:27 pm
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC


I use many 'direct access' actions also. Lets all combine our XMLs to make a unified config. I'm using USB-UIRT so my code will be different than regular MCE receivers (even though I use a Harmony with MCE codes).

I've not been able to get the latest version of EG to work. I just spent 30mins ...
by kirs
Mon Nov 03, 2008 2:13 pm
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

Another couple of actions that I find useful for direct access to the Movies & TV Shows screens without going through the Videos screen:

("MyMovies", "Show Movies Screen", "Show Movies screen.", "ActivateWindow(MyVideoLibrary,movietitles,return)"),
("MyTVShows", "Show TV Shows Screen", "Show TV ...
by kirs
Tue Oct 14, 2008 1:49 pm
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

I've added the OSD action to the plugin in SVN. Thanks kricker.
by kirs
Mon Oct 13, 2008 8:13 pm
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

I am working off of R15884 right now. Having a hard time testing as I am at work and do not use a remote to test (work right out of the EventGhost UI).

Try letting the screen dim and hit a few actions. If it does not wake up it's because the XBMC event server does not recognize actions the same way ...
by kirs
Mon Oct 13, 2008 4:41 pm
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

XBMC sees EventGhost as neither a keyboard or remote. It's sending XBMC the raw actions. So, if you look at Keymap.xml in the remote section:

<left>StepBack</left>

EventGhost is sending the actual "StepBack" action rather than a "left" button press. Both methods are doable, but the way it is ...
by kirs
Mon Oct 13, 2008 10:47 am
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

The problem is the plugin sends the actual actions to XBMC (like play, pause, etc) and not emulated keystrokes which would work with what's in the keymap.xml.

It's really not a problem to add a bunch of actions like KeyUp, KeyDown, etc. which would send the emulated key pressed to XBMC but you can ...
by kirs
Thu Oct 09, 2008 11:06 am
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

The bug is fixed in SVN. If you build your own XBMC you should be set, if not you'll have to wait for the next release.
by kirs
Wed Oct 08, 2008 2:08 pm
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

I am seeing this too. It seems like a XBMC issue as the expected behavior should be to process actions when an context menu is opened. Hopefully it's an easy fix. I'll enter a bug for it and hopefully it's something they can fix for release.

EDIT:

Ticket is opened.

http://xbmc.org/trac/ticket ...
by kirs
Tue Oct 07, 2008 5:05 pm
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

New version for XBMC Atlantis Beta 2. Also added some missing actions.
by kirs
Mon Oct 06, 2008 11:01 am
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

I just wanted to say this is working great for me. I haven't ran into any snags with the latest version and the latest XBMC revision. Have you posted a link to this thread and the plugin on the XBMC forums?

Thanks for testing it out. Glad to see there's not problems. The post at the XBMC forums ...
by kirs
Sun Oct 05, 2008 11:13 pm
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

F3d0r wrote: The plugin works great, one important action I am missing is
AspectRatio

This action is mapped to keyboard button "z" in the standard Keymap.xml and controls video aspect ratio and zoom mode.
That's definitely in the latest revision. I map it to the '#' key on the remote myself.
by kirs
Fri Oct 03, 2008 3:47 pm
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

....and I'll be ready to test it! :)

Thanks :) You'll need the latest XBMC version from SVN though as the new way of doing things does not work on Beta 1. I've mapped 57 action, which is probably more than anyone will ever need, but if I missed anything let me know.

Oh yeah, the bug bringing up ...
by kirs
Fri Oct 03, 2008 2:59 pm
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

Ok, I didn't understand your post until I grabbed the latest library from SVN. Makes perfect sense and really streamlines the code! I won't need any changes to the Python library now because everything goes through:

self.plugin.xbmc.send_action(self.value, ACTION_BUTTON)

Really nice! I'll check ...
by kirs
Fri Oct 03, 2008 1:17 am
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

Finally got a awfull keyboard down from the attic :)
The difference is that Button press via PacketBUTTON will emulate the selected remote, ie keyboard. The action the sent key will generate will depend on the keymap.xml. So on default setup a Keyboard up will navigate you up but its possible to ...
by kirs
Wed Oct 01, 2008 6:30 pm
Forum: Plugin Support
Topic: XBMC
Replies: 212
Views: 137138

Re: XBMC

I have a few pointers.
Mainly in the comming RC/Gold version of XBMC it will support better actions so I would recommehnd you to update xbmccliet.py from svhn

now Its possigble to cohntroll all actiohns.
chnahmngbe lihmne
self.plugin.xbmc.send_action(self.value)
to
self.plugin.xbmc.send ...