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 blingblangblong
Thu Oct 20, 2016 9:11 pm
Forum: Plugin Support
Topic: IF THEN ELSE? of JUMP IF?
Replies: 9
Views: 2967

Re: IF THEN ELSE? of JUMP IF?

ok so you want it to monitor all mouse movements all the time????. if so that is going to be a couple percent hit to your cpu.

and you would have to use threading for something like that. it's a pretty involved script. I don't have a problem coding it up for ya i just want to get all the info on ...
by blingblangblong
Wed Oct 12, 2016 11:09 am
Forum: Coding Corner
Topic: eventghost to control speedfan
Replies: 1
Views: 1682

eventghost to control speedfan

Hello i wonder if any one can help me figure out how to us eg to control speed fan. Lets say at %50 fan speed when watching a movie then drop it to %35 when system idle. I know that is what speed fan does any way but i would like to have eg record my actions to redo them later at a press of a ...
by blingblangblong
Tue Oct 11, 2016 4:31 pm
Forum: Plugin Support
Topic: IF THEN ELSE? of JUMP IF?
Replies: 9
Views: 2967

Re: IF THEN ELSE? of JUMP IF?

it might be easier if you explain what you are trying to accomplish and then we can work from there and give you the best possible way to achieve what you want to do.

OK I would like to make a python script that monitors my mouse at a given coordinates (x,y) (maybe 0, 0 or maybe 0, 1079 I'm not ...
by blingblangblong
Mon Oct 10, 2016 3:48 pm
Forum: Plugin Support
Topic: IF THEN ELSE? of JUMP IF?
Replies: 9
Views: 2967

Re: IF THEN ELSE? of JUMP IF?

I also tried this and broke it into an endless loop lol


from eg.WinApi.Dynamic import mouse_event, GetCursorPos, SetCursorPos, POINT
import time

def goto(linenum):
global line
line = linenum

line = 1
while True:
if line == 1:
point = POINT()
GetCursorPos(point)
print point.x
print point ...
by blingblangblong
Mon Oct 10, 2016 2:56 pm
Forum: Plugin Support
Topic: IF THEN ELSE? of JUMP IF?
Replies: 9
Views: 2967

Re: IF THEN ELSE? of JUMP IF?

Ok ive tried a few other variations and i'm now stuck with the loop in the wrong place


from eg.WinApi.Dynamic import mouse_event, GetCursorPos, SetCursorPos, POINT
import time

for x in range(0, 5):
point = POINT()
GetCursorPos(point)
print point.x
print point.y
if -1 < point.x < 20:
eg ...
by blingblangblong
Mon Oct 10, 2016 2:30 pm
Forum: Plugin Support
Topic: IF THEN ELSE? of JUMP IF?
Replies: 9
Views: 2967

Re: IF THEN ELSE? of JUMP IF?

i am not sure exactly what you are trying to accomplish with this script. but all you have to do is remove the 0 after the colon

Hello and thank you for your help. I want to make a script that runs in a loop that can monitor mouse and activate something at that point of being there after a delay ...
by blingblangblong
Sun Oct 09, 2016 11:54 pm
Forum: Plugin Support
Topic: IF THEN ELSE? of JUMP IF?
Replies: 9
Views: 2967

IF THEN ELSE? of JUMP IF?

Hello I hope some one can help me with this problem.
I'm trying to achieve a hot corner of sorts but I am unable to create the code i need.
This is what i have come up with but it doesn't work
from eg.WinApi.Dynamic import mouse_event, GetCursorPos, SetCursorPos, POINT

point = POINT ...
by blingblangblong
Thu Oct 06, 2016 7:28 pm
Forum: Plugin Support
Topic: libCEC plugin for Pulse Eight HDMI-CEC usb adapter
Replies: 178
Views: 73148

Re: libCEC plugin for Pulse Eight HDMI-CEC usb adapter

Hello I hope someone can help me. I have downloaded the op v0.3 plugin after successfully loading i can turn my TV on and off fine using the test function for each event.

I am puzzled as to why event ghost does not list any of the codes received from the TV via pulse-eight adapter. when i run ...