home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d9xx / d926 / jcgraph.lha / JcGraph / Rexx / RotPreSet1.rex < prev    next >
OS/2 REXX Batch file  |  1993-10-07  |  328b  |  14 lines

  1. /* RotPreSet1.rex */
  2. /* -------------- */
  3. /* Description: Will set the X,Y and Z rotation value previously set  */
  4. /*              with 'Set1' button.                                   */
  5.  
  6. options results
  7.  
  8. address 'JCGRAPH'
  9.  
  10. if open('Preset','T:RotPreset1','R') then do
  11.   Rotation=readln('Preset')
  12.   'SetRotation ' Rotation
  13. end
  14.