Livin wrote:Reporting Back...
Thanks.
Looks like it is working. I get events such as...
XBMC2.OnAction.ACTION_BUILT_IN_FUNCTION
XBMC2.OnAction.ACTION_PLAYER_PLAY
Good. Those are the OnAction events basically any button/action you send from EventGhost will generate those. You can disable those by setting SetBroadcast to "1".
Though, this info is not useful for me. I already get 99% of these based on IR that EG already logs.
Hihi, sorry but I was expecting this reaction. The
broadcast events are a bit limited. I'll be adding
JSON-RPC notifications next and those should be a bit more useful.
I will need to know specifics like...
- what section has been selected: Movies, TV, Photos, Favorite="New", etc. This is the only way to trigger events relevant to what is happening.
Unfortunately I don't think XBMC supports any of these kind of event yet.
- name of the video, music, photo, etc is showing/playing.
These kind of events should be showing, have you tried to start/stop playing files
Example of events I get:
- Code: Select all
XBMC.MediaChanged.MovieTitle u"ETC: EXCLUSIVE FIRST LOOK: Transformers 3D the RIDE BEHIND THE SCENES!"
XBMC.OnPlayBackPaused
XBMC.OnPlayBackStopped
XBMC.OnPlayBackStarted
XBMC.OnPlayBackResumed
XBMC.OnPlayBackSeek.25951
Possible to get these specifics passed through?
Next test version should have more useful events, but I'm limited to what XBMC supports.
jonib