home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / exc20.zip / HELP.TXT < prev    next >
Text File  |  1993-03-06  |  4KB  |  70 lines

  1. ;EXC Script Commands - Quick Reference
  2.  
  3. ; Note: Brackets ([]) indicate an optional parameter and should not be
  4. ;       included as part of the command.  Quotes (""), where specified, 
  5. ;       are required to be entered as part of the parameter.
  6.  
  7. ; BEEP                   Sound a short beep on speaker. Useful in debugging
  8. ;                        scripts.
  9. ; CASE ON                The CASE commands enable case-sensitive (ON) or case-
  10. ; CASE OFF               insensitive (OFF) compares by WAITFOR and SEARCH.  The
  11. ;                        initial mode is CASE ON.
  12. ; CLEAR                  Clear the screen.
  13. ; CURSOR col row         Move the cursor to the specified coordinates.
  14. ; DELAY n                Wait n seconds
  15. ; GOTO label             Unconditional branch to label.
  16. ; IFN label              If condition set to N, go to label.
  17. ; IFY label              If condition set to Y, go to label.
  18. ; HIDEWIN                Restore a window displayed with SHOWIN to it's 
  19. ;                        original color attributes.
  20. ; KEY mnemonic [n]       Push the key onto the keyboard stack. 'n' is the
  21. ;                        number of times you want the keycode inserted.
  22. ; LOCATE "string"        Reads the screen until the string appears, then moves 
  23. ;                        the cursor to the start of the string.
  24. ; LOOK "string"          Test to see if the string was on the screen at the 
  25. ;                        time the screen was last read.  Screen reads occur
  26. ;                        during execution of READ, SEARCH, WAITSCR and WAITFOR 
  27. ;                        commands.  Sets "Y/N" condition.
  28. ; ON n label             Command will do nothing n times and on pass n+1, it
  29. ;                        will branch to label.
  30. ; PAUSE                  Causes the script to be paused as if Scroll Lock were
  31. ;                        pressed.
  32. ; QUIT                   Halt processing the script file.
  33. ;                        End-of-file on the script file issues an automatic
  34. ;                        QUIT.
  35. ; READ                   Read the current screen contents.
  36. ; SCRMAX cols rows       Specifies the largest screen size that will be used       
  37. ;                        during execution.  Used to allocate screen buffer.
  38. ; SEARCH "string"        Read screen and test to see if the string is on the 
  39. ;                        screen. Sets "Y/N" condition.
  40. ; SETWAIT nnn            Wait nnn seconds before a WAITFOR or WAITSCR times
  41. ;                        out.
  42. ; SHOW attr "string"     Display the string using the specified attribute.
  43. ;                        Displays at the location specified in SHOWAT.
  44. ; SHOWAT col row         Specifies location for subsequent SHOW command
  45. ;                        strings to be displayed.
  46. ; SHOWIN attr            Rewrite the current window text in the specified
  47. ;                        attribute.
  48. ; TICK n                 Same as DELAY except n represents 1/18th of a second
  49. ;                        instead of a second.
  50. ; TIME hhmmss            Pause execution of subsequent commands until the               
  51. ;   
  52. ;                        specified time of day.
  53. ; TIMEOUT label          Branch to label when the next WAITFOR or WAITSCR
  54. ;                        timeout occurs.
  55. ; TYPE "string"          Type the ASCII string.
  56. ; TYPFILE filespec [mnemonic]      
  57. ;                        Type the contents of the specified file.  Replace
  58. ;                        CR/LFs with specified mnemonic.
  59. ; WAITFOR [NOT] "string" Wait until the string appears on the screen.  If NOT
  60. ;                        specified, wait until string is not on screen.
  61. ; WAITSCR                Wait until anything changes on the screen.
  62. ; WINCOLS start end      Limit screen reads and SHOWIN to the screen columns
  63. ;                        specified.
  64. ; WINMAX                 Remove row and column restraints imposed by WINCOLS
  65. ;                        and WINROWS.  Subsequent reads read the full screen.
  66. ; WINROWS start end      Limit screen reads and SHOWIN to the screen rows
  67. ;                        specified.
  68. ; :label                 Define a label.
  69. ;
  70.