But I know how it can be modified to make it work:
EDIT: what the heck, I just tried it again and it's working now. SO BIZARRE.
EDIT2: okay so I've noticed, if you make ANY CHANGES to the code above, and press TEST, EG will error like I quoted below. If you hit OK and OPEN THE SCRIPT BACK UP ...
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 11 matches
- Sun Apr 06, 2014 12:24 am
- Forum: Coding Corner
- Topic: why is this wxpython script crashing EG?
- Replies: 2
- Views: 2524
- Sat Apr 05, 2014 8:41 am
- Forum: Coding Corner
- Topic: why is this wxpython script crashing EG?
- Replies: 2
- Views: 2524
why is this wxpython script crashing EG?
Pasted this really simple code into an EG Python script:
import wx
app = wx.PySimpleApp()
choices = ["Alpha", "Baker", "Charlie", "Delta"]
dialog = wx.SingleChoiceDialog(None, "Pick A Word", "Choices",choices)
if dialog.ShowModal() == wx.ID_OK:
print "You selected: %s\n" % dialog ...
import wx
app = wx.PySimpleApp()
choices = ["Alpha", "Baker", "Charlie", "Delta"]
dialog = wx.SingleChoiceDialog(None, "Pick A Word", "Choices",choices)
if dialog.ShowModal() == wx.ID_OK:
print "You selected: %s\n" % dialog ...
- Sat Apr 05, 2014 3:50 am
- Forum: Coding Corner
- Topic: Upgrading Eventghost's version of Python?
- Replies: 4
- Views: 3031
Re: Upgrading Eventghost's version of Python?
Crud, okay, no tkinter for me...back to the drawing board...
- Thu Apr 03, 2014 12:35 am
- Forum: Coding Corner
- Topic: SpeakEasy - a speech recognition plugin - EXPIRIMENTAL
- Replies: 7
- Views: 5075
Re: SpeakEasy - a speech recognition plugin - EXPIRIMENTAL
Been using this for a few weeks now and absolutely love it!
- Thu Apr 03, 2014 12:30 am
- Forum: General Support
- Topic: PC to Android and Android - Android
- Replies: 3
- Views: 3122
Re: PC to Android and Android - Android
I think...the best solution to your Karaoke setup would be to have everyone interact via a locally-served webpage, cutting out apps entirely. Going the Tasker / Eventghost route may not be the best choice.
- Thu Apr 03, 2014 12:27 am
- Forum: General Support
- Topic: PC to Android and Android - Android
- Replies: 3
- Views: 3122
Re: PC to Android and Android - Android
I've only found THREE ways you can send a message to an Android phone from a desktop, and have Tasker react:
1) Autoremote
(which i didn't like because it doesn't work entirely on your local network, but that's just me. The app/plugin is fantastic)
2) the Eventghost app by Tim Hoeck: https ...
1) Autoremote
(which i didn't like because it doesn't work entirely on your local network, but that's just me. The app/plugin is fantastic)
2) the Eventghost app by Tim Hoeck: https ...
- Thu Apr 03, 2014 12:20 am
- Forum: Coding Corner
- Topic: Adding additional python modules to Eventghost?
- Replies: 3
- Views: 3555
Re: Adding additional python modules to Eventghost?
Okay so to add additional python modules to Eventghost, you just put the scripts in
/lib26/site-packages
it seems they CAN'T be in a subdirectory, and the name used as import must be the name of the file (???)
i've gotten several modules (is that even the right term?) to work this way, but ...
/lib26/site-packages
it seems they CAN'T be in a subdirectory, and the name used as import must be the name of the file (???)
i've gotten several modules (is that even the right term?) to work this way, but ...
- Thu Apr 03, 2014 12:17 am
- Forum: Coding Corner
- Topic: Upgrading Eventghost's version of Python?
- Replies: 4
- Views: 3031
Upgrading Eventghost's version of Python?
So it looks like Eventghost runs on Stackless Python 2.6.5 final 0 ,
...which DOESN'T include a Python library called tkinter ....
...which is very VERy useful in making GUI elements (which i'd like to do)...
...so Slackless Python 3.2.2 is available, and I'd like to just install that over 2.6.5 ...
...which DOESN'T include a Python library called tkinter ....
...which is very VERy useful in making GUI elements (which i'd like to do)...
...so Slackless Python 3.2.2 is available, and I'd like to just install that over 2.6.5 ...
- Thu Mar 20, 2014 12:03 am
- Forum: Plugin Support
- Topic: SchedulGhost
- Replies: 174
- Views: 105010
Re: SchedulGhost
is there a way to view all upcoming tasks added with eg.scheduler.AddTask or eg.scheduler.AddTaskAbsolute ?
They don't seem to show up in SchedulGhost...
They don't seem to show up in SchedulGhost...
- Wed Mar 19, 2014 11:40 pm
- Forum: Coding Corner
- Topic: SpeakEasy - a speech recognition plugin - EXPIRIMENTAL
- Replies: 7
- Views: 5075
Re: SpeakEasy - a speech recognition plugin - EXPIRIMENTAL
this looks GREAT! I can't wait to try it out!
- Wed Mar 19, 2014 11:38 pm
- Forum: Coding Corner
- Topic: Adding additional python modules to Eventghost?
- Replies: 3
- Views: 3555
Adding additional python modules to Eventghost?
hey everybody -
I'm completely new to Python but I've managed to get really far with just general Googling and poking around Stackoverflow, I've looked up my question and haven't found a proper answer so I thought I'd register and ask it here...
Okay, how do you add a Python module to Eventghost ...
I'm completely new to Python but I've managed to get really far with just general Googling and poking around Stackoverflow, I've looked up my question and haven't found a proper answer so I thought I'd register and ask it here...
Okay, how do you add a Python module to Eventghost ...