Yes, you can. Or well, you probably cannot call the lua functions directly but you can create a new function for it. Something like this:
| Code: |
function Execute(program)
os.execute(program)
end
|
There are few problems with this though. Lua uses system()-call to execute the command which brings up the command prompt. Other problem is that it will also wait until the application quits which makes Rainlendar to hang. Though running applications with "start" helps with the latter case.
| Code: |
action="Execute(start Notepad.exe)"
|