home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / r / riscript / !RiScript / Doc / Operators < prev    next >
Text File  |  1994-07-08  |  942b  |  46 lines

  1. RiScript supports an extended subset of level I
  2. operators of the PostScript language.
  3.  
  4. The following level I operators are not imple-
  5. mented:
  6.  
  7.   initclip
  8.   clippath
  9.   clip
  10.   eoclip
  11.  
  12.   setscreen
  13.   currentscreen
  14.   nulldevice
  15.  
  16. This means that RiScript does not support clipping,
  17. which is quite difficult for objects (it is a jump
  18. over for bitmaps, but that's other business).
  19.  
  20. The following level II operators are implemented:
  21.  
  22.   <<
  23.   >>
  24.   setcmykcolor
  25.   currentcmykcolor
  26.   undef
  27.  
  28.   ... and more (e.g. disk operations)
  29.  
  30. The following extra operators are implemented:
  31.  
  32.   system
  33.   getenv
  34.  
  35. System will let you issue a CLI-command (where the
  36. output will be discarded). It takes a string and
  37. returns the exit value.
  38.  
  39. Getenv will let you retrieve system variables. It
  40. takes two strings (the upper one is the name of
  41. the variable and the lower one will be used to 
  42. return the value). It furthermore returns a boolean
  43. value (was the variable known?).
  44.  
  45.  
  46.