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.
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.
Support for XBMC2 plugin (formerly XBMCRepeat)
-
eatmeimadanish
- Experienced User
- Posts: 118
- Joined: Thu Oct 01, 2009 5:11 pm
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
It looks like Pako may have changed the GUID in the SVN, but i have not looked in the new release build 1544 to see if its the same.
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
OK, that explains it, looks like Pako changed the guid in build 1508 to not conflict with the old XBMC plugin, unfortunately I was unaware of this change and used the old guid.eatmeimadanish wrote:It looks like Pako may have changed the GUID in the SVN, but i have not looked in the new release build 1544 to see if its the same.
I hadn't updated EventGhost since before 0.4 was released so I didn't notice the new guid and when I updated to rev 1544 my plugin used the old guid again and I didn't notice any problems.
I'll update my plugin with the new guid right away.
So some people might need to change the guid that is in EventGhosts config by editing the config.xml directly and use this guid:
Code: Select all
{8C8B850C-773F-4583-AAD9-A568262B7933}Re: Support for XBMC2 plugin (formerly XBMCRepeat)
How i can send "Shutdown function timer" on/off command?
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
I did not find a direct way. I'll look if I can find another way later today.piipes wrote:How i can send "Shutdown function timer" on/off command?
jonib
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Thanks, i want disable xbmc Shutdown function timer when i change to dvbviewer.
I try other way too.
System suspend via eventghost idle action, but somehow it send "system idle" task when i watch tv?
It send system idle and then instantly unidle task.
I try other way too.
System suspend via eventghost idle action, but somehow it send "system idle" task when i watch tv?
It send system idle and then instantly unidle task.
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Hello, I come from an other topic:
viewtopic.php?f=2&t=3578
Pako tells me that you can help me (yes, you Jonib!!!) :
Can you help us?
Regards...
viewtopic.php?f=2&t=3578
Pako tells me that you can help me (yes, you Jonib!!!) :
What do you think about this? It's just to toggle fullscreen/minimize screen.Ask for it in topic Support for XBMC2 plugin (formerly XBMCRepeat).
It is possible that jonib to add this feature to his plugin.
Can you help us?
Regards...
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Sure, I'll try. Hopefully I understood what you want.FCB38 wrote:Can you help us?
Code: Select all
<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="1544">
<Action Name="Check if XBMC is minimized">
EventGhost.PythonScript(u"from win32gui import FindWindow, GetWindowPlacement\n\ntry:\n if (GetWindowPlacement(FindWindow('XBMC','XBMC'))[1] == 2):\n eg.result = True\n else:\n eg.result = False\n\nexcept:\n pass")
</Action>
</EventGhost>Then you can use the EventGhost "If" action to jump to an appropriate macro.
This is the code if you want to create the Python script action yourself:
Code: Select all
from win32gui import FindWindow, GetWindowPlacement
try:
if (GetWindowPlacement(FindWindow('XBMC','XBMC'))[1] == 2):
eg.result = True
else:
eg.result = False
except:
passRe: Support for XBMC2 plugin (formerly XBMCRepeat)
Your are a chief JONIB!!!
It's working perfectly.
I put the first code at the beginning of my xml file (the one is loaded by EG on startup).
I change the code given by PAKO (thank you PAKO too) by the second code that you give.
That's all. No more problem. I don't understand how it's working but it's working!!!
Thank you a lot.
It's working perfectly.
I put the first code at the beginning of my xml file (the one is loaded by EG on startup).
I change the code given by PAKO (thank you PAKO too) by the second code that you give.
That's all. No more problem. I don't understand how it's working but it's working!!!
Thank you a lot.
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
FCB38 wrote:Your are a chief JONIB!!!
I knew I was not clearIt's working perfectly.![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
I put the first code at the beginning of my xml file (the one is loaded by EG on startup).
I change the code given by PAKO (thank you PAKO too) by the second code that you give.
Great.That's all. No more problem. I don't understand how it's working but it's working!!!
jonib
XBMC Home Screen while playing
With
<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="1544">
<Action>
XBMC.Home()
</Action>
</EventGhost>
I can switch to Home Menu while playing a movie. How can I get back to the movie? I can see the movie in the background but cant find a action to get back.
It should work. The official xbmc remote on android have a button that switches between home menu and movie screen.
This post was moved/merged.
xbmc2 plugin issues?
There is a Topic for that... Here.
No need for multiple Topics per plugin.
Thanks.
<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="1544">
<Action>
XBMC.Home()
</Action>
</EventGhost>
I can switch to Home Menu while playing a movie. How can I get back to the movie? I can see the movie in the background but cant find a action to get back.
It should work. The official xbmc remote on android have a button that switches between home menu and movie screen.
This post was moved/merged.
xbmc2 plugin issues?
There is a Topic for that... Here.
No need for multiple Topics per plugin.
Thanks.
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Edit2: Use XBMC2\Actions\Media playing\Fullscreen or XBMC2\Buttons\Remote\Display to swith between the UI and video.
jonib
jonib
Last edited by jonib on Sat Dec 17, 2011 3:04 pm, edited 2 times in total.
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Thanks jonib.
eventghost.net
Be there or be square.
Be there or be square.
-
shinyghost
- Posts: 6
- Joined: Wed Dec 21, 2011 2:38 pm
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Controlling multiple XBMC clients?
Would it be possible for one set up commands to go to one XBMC IP address and another set to go to another?
Basically I want all the normal local ones for control on my own computer and then I want to be able to stop play on several other XBMC clients over the network.
Would it be possible for one set up commands to go to one XBMC IP address and another set to go to another?
Basically I want all the normal local ones for control on my own computer and then I want to be able to stop play on several other XBMC clients over the network.
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Sure, just add one XBMC2 plugin per XBMC you want to control and change the IP address in the XBMC2 config.shinyghost wrote:Controlling multiple XBMC clients?
jonib
-
shinyghost
- Posts: 6
- Joined: Wed Dec 21, 2011 2:38 pm
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Thanks for the reply.
That part makes sense but I guess I just don't fully understand it. If I create a plugin within a macro it will only be active for the length of the macro?
Sorry I am pretty new to event ghost and having a hard time finding a detailed tutorial.
Here is a picture of what I have so far.
https://imgur.com/8bdaw
That part makes sense but I guess I just don't fully understand it. If I create a plugin within a macro it will only be active for the length of the macro?
Sorry I am pretty new to event ghost and having a hard time finding a detailed tutorial.
Here is a picture of what I have so far.
https://imgur.com/8bdaw
