[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 04:11:47 -0500
On Wed, Mar 12, 2008 at 3:57 AM, Rolf <rb@san.rr.com> wrote:
> Running the script below, I got the error:
> Test.vbs: no such file or directory.
That was my mistake, sorry.
Like Shmuel said, try changing the line:
local f=io.open(vb)
To this:
local f=io.open(vb,"w")
> I was actually wondering about this. Is the file supposed to be written to
> the hard drive somewhere?
Yes.
- Jeff