home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 11 / 11.iso / m / m111 / 2.img / GRPCT2.EXE / TMPFILE.TXT < prev    next >
Encoding:
Text File  |  1990-02-12  |  965 b   |  24 lines

  1. ;          ------------  Quick Introduction to GRASP  -------------
  2. ;
  3. ; To use GRASP, just enter GRASP commands on successive lines and then press
  4. ; F10 to execute the program. A GRASP program line may start with one of three
  5. ; things:
  6. ;
  7. ; 1) A comment, which starts with a semi-colon, like this line.
  8. ; 2) A label, which is a name (no spaces) with a colon at the end.
  9. ; 3) A valid GRASP command.
  10. ;
  11. ; The following program sets the video mode, loads a picture, dissolves it to
  12. ; the screen, then waits for a key to be pressed. PRESS F10 TO RUN IT.
  13. ;
  14. video A        ; Set video mode to CGA 320x200 4 color
  15. pload grasp,1    ; Load grasp.pic into buffer 1
  16. pfade 20,1    ; Fade picture to screen using pfade number 20
  17. waitkey        ; Wait for a keypress
  18. ;
  19. ; For more help, press one of the following function keys:
  20. ;
  21. ; F1 - Help with this editor.
  22. ; F2 - A list of all GRASP commands and their syntax.
  23. ; F3 - A description of all the fades and valid video modes.
  24. ;