whatever the Task plugin is showing is what is running on your computer. I do not run windows 10 so I am not 100% familiar with all of the running processes and services of it. Try googling it
thanks for the reply,
I can't be sure about what it does, but from what I gather it is part of windows ...
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.
Search found 14 matches
- Wed Mar 29, 2017 11:28 pm
- Forum: General Support
- Topic: EG and backgroundTaskHost
- Replies: 3
- Views: 1778
- Mon Mar 27, 2017 9:01 pm
- Forum: General Support
- Topic: EG and backgroundTaskHost
- Replies: 3
- Views: 1778
EG and backgroundTaskHost
hi
eventghost version: 0.5.0 beta4
I have set eventghost to enable and disable certain keys depending on if a specific program is active
for example if kodi is active certain key actions will get enabled
and if say "Task.Deactivated.Kodi" or "Task.Destroyed.Kodi" are triggered those keys will be ...
eventghost version: 0.5.0 beta4
I have set eventghost to enable and disable certain keys depending on if a specific program is active
for example if kodi is active certain key actions will get enabled
and if say "Task.Deactivated.Kodi" or "Task.Destroyed.Kodi" are triggered those keys will be ...
- Mon Apr 18, 2016 7:34 pm
- Forum: Plugin Support
- Topic: Support for XBMC2 plugin (formerly XBMCRepeat)
- Replies: 1402
- Views: 616091
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Great. so stuff are working like you want it?
I assumed you had a newer version as you linked to the version I added that option, I need to check what needs fixing in the plugin and then have Pako put the new version in EventGhost as the version right now seems a bit old.
jonib
yes things are ...
I assumed you had a newer version as you linked to the version I added that option, I need to check what needs fixing in the plugin and then have Pako put the new version in EventGhost as the version right now seems a bit old.
jonib
yes things are ...
- Sun Apr 17, 2016 10:14 pm
- Forum: Plugin Support
- Topic: Media Player Classic
- Replies: 160
- Views: 104788
Re: Media Player Classic
thank you very much, everything's working and it's a nice workaround.
- Sun Apr 17, 2016 9:06 pm
- Forum: Plugin Support
- Topic: Support for XBMC2 plugin (formerly XBMCRepeat)
- Replies: 1402
- Views: 616091
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
sorry for the trouble, found the ver 0.6.33 and updated it, all seems to be order,jonib wrote:Every JSON-RPC action should have a checkbox to disable the wait for that action.
found the option you were talking about and it seems to have solved the problem
I am grateful for your help
- Sun Apr 17, 2016 2:00 pm
- Forum: Plugin Support
- Topic: Media Player Classic
- Replies: 160
- Views: 104788
Re: Media Player Classic
This is not EventGhost/MPC-HC plugin bug.
This is MPC-HC property.
You can easily verify this by using these steps (MPC-HC control manually using keyboard shortcuts):
1) Start a movie and pause playback (Space)
2) Increase rate (Ctrl-Up)
3) Pause playback (Space)
4) Reset Rate (Ctrl-R)
I see ...
This is MPC-HC property.
You can easily verify this by using these steps (MPC-HC control manually using keyboard shortcuts):
1) Start a movie and pause playback (Space)
2) Increase rate (Ctrl-Up)
3) Pause playback (Space)
4) Reset Rate (Ctrl-R)
I see ...
- Sun Apr 17, 2016 2:42 am
- Forum: Plugin Support
- Topic: Support for XBMC2 plugin (formerly XBMCRepeat)
- Replies: 1402
- Views: 616091
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Do you still have the colon problem?
yes it still gives an invalid syntax error while the 2nd one without colon works just fine
eg.plugins.XBMC2.JSONRPC(u'GUI.Getproperties', u'"properties":["currentwindow"]', False)
Traceback (most recent call last):
Python script "8", line 1, in <module ...
yes it still gives an invalid syntax error while the 2nd one without colon works just fine
eg.plugins.XBMC2.JSONRPC(u'GUI.Getproperties', u'"properties":["currentwindow"]', False)
Traceback (most recent call last):
Python script "8", line 1, in <module ...
- Sun Apr 17, 2016 12:36 am
- Forum: Plugin Support
- Topic: Media Player Classic
- Replies: 160
- Views: 104788
Re: Media Player Classic
hi,
I want to use the play button for "Play/Pause" which works fine,
but I also want it to do a "Reset Rate" (in case I used "Forward" button to "Increase Rate").
but when I add "Reset Rate" action under or above "Play/Pause", it messes up the play/pause action, it seems two actions get executed ...
I want to use the play button for "Play/Pause" which works fine,
but I also want it to do a "Reset Rate" (in case I used "Forward" button to "Increase Rate").
but when I add "Reset Rate" action under or above "Play/Pause", it messes up the play/pause action, it seems two actions get executed ...
- Sat Apr 16, 2016 12:27 am
- Forum: Plugin Support
- Topic: Support for XBMC2 plugin (formerly XBMCRepeat)
- Replies: 1402
- Views: 616091
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Kodi JSON-RPC parameters can be "ByName" (uses {}) or "ByPosition" (uses []), GUI.Getproperties takes one parameter so my example is "ByPosition" [["fullscreen"]] So it don't need the "properties" parameter name.
So your code was missing a colon (:) that is needed to separate the parameter name ...
So your code was missing a colon (:) that is needed to separate the parameter name ...
- Fri Apr 15, 2016 2:11 pm
- Forum: Plugin Support
- Topic: Support for XBMC2 plugin (formerly XBMCRepeat)
- Replies: 1402
- Views: 616091
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
This is how I do it:
JSON-RPC action: GUI.GetProperties with parameter: [["fullscreen"]]
Then a Python script action:
if eg.result["fullscreen"] == True:
eg.result = True
else:
eg.result = False
Then a Jump action to another macro based on the result.
Thank you very much, I got it working ...
JSON-RPC action: GUI.GetProperties with parameter: [["fullscreen"]]
Then a Python script action:
if eg.result["fullscreen"] == True:
eg.result = True
else:
eg.result = False
Then a Jump action to another macro based on the result.
Thank you very much, I got it working ...
- Fri Apr 15, 2016 4:35 am
- Forum: Plugin Support
- Topic: Support for XBMC2 plugin (formerly XBMCRepeat)
- Replies: 1402
- Views: 616091
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
I understand, thanks for the efforts.
This might work JSON-RPC command for subtitle search .
that actually did the trick,
it took me a while to figure out how JSON-RPC works, how to enable it and update it etc.., but eventually I was able to make it work.
thank you,
one question, do you ...
This might work JSON-RPC command for subtitle search .
that actually did the trick,
it took me a while to figure out how JSON-RPC works, how to enable it and update it etc.., but eventually I was able to make it work.
thank you,
one question, do you ...
- Thu Apr 14, 2016 7:12 pm
- Forum: Plugin Support
- Topic: Support for XBMC2 plugin (formerly XBMCRepeat)
- Replies: 1402
- Views: 616091
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
sorry,
found the last two ("TvShowTitles" & "MovieTitle"), I was usning "Remote->My TV" & "Remote->My Video",
I found it under "Windows" , "Show TV Shows Screen" & "Show Movies Screen",
still I don't think there is anything that executes a subtitle search.
thanks.
found the last two ("TvShowTitles" & "MovieTitle"), I was usning "Remote->My TV" & "Remote->My Video",
I found it under "Windows" , "Show TV Shows Screen" & "Show Movies Screen",
still I don't think there is anything that executes a subtitle search.
thanks.
- Thu Apr 14, 2016 6:17 pm
- Forum: Plugin Support
- Topic: Support for XBMC2 plugin (formerly XBMCRepeat)
- Replies: 1402
- Views: 616091
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Hi,
I am really sorry that I wasn't clear.
I thought as this plugin executes xbmc/kodi commands, it would be enough to just mention those commands (they could probably be new),
there are actions that I use in keymaps that I thought it would be useful to be able to use them through my remote ...
I am really sorry that I wasn't clear.
I thought as this plugin executes xbmc/kodi commands, it would be enough to just mention those commands (they could probably be new),
there are actions that I use in keymaps that I thought it would be useful to be able to use them through my remote ...
- Wed Apr 13, 2016 11:46 pm
- Forum: Plugin Support
- Topic: Support for XBMC2 plugin (formerly XBMCRepeat)
- Replies: 1402
- Views: 616091
Re: Support for XBMC2 plugin (formerly XBMCRepeat)
Hi,
How can I add
"subtitlesearch" (preferably in fullscreen only),
movie titles ( activatewindow(videos,movietitles) ),
or tv titles ( activatewindow(videos,movietitles)) ?
thanks
How can I add
"subtitlesearch" (preferably in fullscreen only),
movie titles ( activatewindow(videos,movietitles) ),
or tv titles ( activatewindow(videos,movietitles)) ?
thanks