[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: NEWBIE Question: LUA wait() function?
- From: "Jeff Pohlmeyer" <yetanothergeek@...>
- Date: Wed, 12 Mar 2008 02:26:03 -0500
local vb="test.vbs"
local f=io.open(vb)
f:write("WScript.Sleep(1000)\n")
f:close()
for i=1,10 do
print("Waiting")
io.flush()
os.execute(vb)
end