Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Embedded REBOL in emails

From: carl:cybercraft at: 25-Aug-2002 10:18

On 25-Aug-02, Ed Dana wrote:
> As some may recall, I created a program that executes REBOL commands > in email. It worked fine for a while, but recently, it started > blowing up when it tried to execute the command sent to it. > The error follows: > = Execute this! > If find Letter/Header/Subject Me Do > Letter/Header/Content ** Script Error: > is missing its value2 > argument ** Where: Rules > ** Near: > Wait 0:00:05 > The statement "Do Letter/Header/Content" is the statement that was > executing. It contained a REBOL command to "Wait 0:00:05", nothing > more complicated than that. > I'm still a relative newbie to REBOL, so I'm sure it's something > simple. I seem to recall some differences between the DO and the > LOAD command. Should I be using LOAD instead? > Any and all advice greatly appreciated.
Is that on Amiga Ed? As there's problems with wait on Amiga. Try this... loop 10 [ print 1 wait 1] I usually can't get to the end of that loop without REBOL locking up. (Ctrl C needed to close the Console.) If you find that's the problem - report it to feedback. It's an annoying bug, and it wouldn't hurt to have RT reminded about it again before they bring out the next release of REBOL. (; -- Carl Read