HomeGenie Forum
Automation Program Plugins and Wizard Scripting => Help => Topic started by: Gene on April 03, 2014, 05:55:55 PM
-
Examples using Program.Setup method:
Python
#setup program stuff
def setup():
hg.Program.Notify("Python Test", "Hello Python")
return
hg.Program.Setup(setup)
Ruby
#setup program stuff
hg.Program.Setup(System::Action.new {
hg.Program.Notify("Ruby Test", "Hello Ruby")
})
Cheers,
g.
-
Hey Gene,
Just wanted to thank you for this info!
Of course, I'm still very much looking forward to a possible solution for Javascript, though ;)
Best,
Jan