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 8 matches

by riro
Fri Sep 25, 2009 8:56 am
Forum: Coding Corner
Topic: Twilight: sunrise/sunset and dusk/dawn plugin.
Replies: 9
Views: 5001

Re: Twilight: sunrise/sunset and dusk/dawn plugin.

Great stuff! Will try this asap.

If I did talk any Phyton I would have done this a long time ago... I like the approach, a small focused plugin.
by riro
Thu Sep 24, 2009 5:30 pm
Forum: General Support
Topic: Network send with payload
Replies: 5
Views: 2117

Re: Network send with payload

Did try the broadcaster but since I want to send messages between two sessions (One console and one via RDP) on the same computer that doesn't work.

Did try to find the download for the xPL-plugin but the dl-link was broken...?
by riro
Mon Sep 21, 2009 1:43 pm
Forum: General Support
Topic: Network send with payload
Replies: 5
Views: 2117

Network send with payload

I'm tying to send callerid-info over the net...

On my sending installation I get an event Main.Phonecall u"12345632423 - Some Name" from my callerid app. So on that installation it's easy to show OSD with the text "Hey... pick up the phone, {eg.event.payload} is calling".

Then I want to forward ...
by riro
Sun Mar 01, 2009 7:40 am
Forum: General Support
Topic: Create event from external app?
Replies: 5
Views: 2701

Create event from external app?

I want to create an event from an external app without using the -e parameter on the .exe-file.

Can someone point me in the right direction...?
(VB, C# or some other language)
by riro
Sun Jan 11, 2009 2:40 pm
Forum: General Support
Topic: 100% CPU
Replies: 12
Views: 3779

Re: 100% CPU

micke.prag wrote:We have looked at this and it seems the problems is gone when using the latest dll from trunk.
Any compiled version?

Could only find the source...
by riro
Sun Jan 11, 2009 2:35 pm
Forum: General Support
Topic: 100% CPU
Replies: 12
Views: 3779

Re: 100% CPU

Did a work-around... a restart of EG every night.

Easy... Launch this script at any time (Do not let EG wait for it to finish)

EG-restart.vbs

@echo off
ping 127.0.0.1 -n 10
cscript H:\EventGhost\Scripts\EG-stop.vbs
ping 127.0.0.1 -n 10
CD /D "C:\Program Files\EventGhost"
start EventGhost.exe ...
by riro
Fri Jan 09, 2009 4:33 pm
Forum: General Support
Topic: 100% CPU
Replies: 12
Views: 3779

Re: 100% CPU

Any news on this?

I have the same problem...
by riro
Thu Jan 08, 2009 4:36 pm
Forum: Plugin Support
Topic: Telldus TellStick
Replies: 11
Views: 17759

Re: Telldus TellStick

Made a small hack to make it work with 0.3.6.1476


def Configure(self, device=0):
dialog = eg.ConfigPanel(self)
# dialog = eg.ConfigurationDialog(self)
deviceList = []
numDevices = self.plugin.dll.devGetNumberOfDevices()
selected = 0
for i in range(numDevices):
id = self.plugin.dll ...