home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
misc
/
jcgraph
/
rexx
/
rotpreset4.rex
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-02-27
|
328b
|
14 lines
/* RotPreSet4.rex */
/* -------------- */
/* Description: Will set the X,Y and Z rotation value previously set */
/* with 'Set4' button. */
options results
address 'JCGRAPH'
if open('Preset','T:RotPreset4','R') then do
Rotation=readln('Preset')
'SetRotation ' Rotation
end