home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / sys / amiga / programm / 18452 < prev    next >
Encoding:
Internet Message Format  |  1993-01-10  |  1.2 KB

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!rpi!batcomputer!munnari.oz.au!uniwa!DIALix!acix!johnv
  2. From: johnv@acix.DIALix.oz.au (John Verhoeven)
  3. Subject: Re: Arexx question
  4. Newsgroups: comp.sys.amiga.programmer
  5. References: <1993Jan7.071959.4572@sol.UVic.CA>
  6. X-Newsreader: TIN [version 1.1 PL8]
  7. Message-ID: <johnv.0445@acix.DIALix.oz.au>
  8. Date: 10 Jan 93 16:41:58 WST
  9. Organization: ACix - Private UUCP Node, Cloverdale, Western Australia.
  10. Lines: 21
  11.  
  12. Aaron  Ramsey (aramsey@ugly.UVic.CA) wrote:
  13. > I have a simple question about Arexx... I want for my Arexx program to
  14. > sit and wait for say 3 minutes or so, and then continue on with the program.
  15.  
  16. Try the ARexx Delay() function from the rexxsupport.library (v34.9).
  17.  
  18. From the V1.15 update docs:
  19.  
  20. DELAY() Support Function.
  21. Usage: DELAY(ticks)
  22. The DELAY() function waits for the specified number of ticks (1/50 second)
  23. and then returns.  This function should be used whenever you need to
  24. suspend the execution of an ARexx program for some amount of time.  While
  25. the program is waiting, the computer is free to execute other tasks.
  26. Example:
  27. call delay 100          /* two seconds */
  28.  
  29. Or failing that use:
  30.  
  31. address command 'wait 3 mins'
  32.  
  33.