home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Graphics
/
SViewIV
/
ARexx-Scripts
/
SetSVOperator.rx
< prev
next >
Wrap
Text File
|
2000-08-08
|
969b
|
54 lines
/*
$VER: SetSVOperator.rx V9.00 (15.8.99)
© 1993-99 by Andreas R. Kleinert
This script demonstrates how to modify the default SVOperator
settings without using the GUI, but SViewIV's ARexxPort.
The resulting changes will also appear on SViewIV's GUI,
if already open.
*/
address command
SViewIV "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
say ""
say "ARexx: SViewIV has been started : Waiting a moment..."
wait 5
OPTIONS RESULTS
SIGNAL ON ERROR
SVIIPORT = 'SViewII.rx'
SVNGPORT = 'SViewNG.rx'
SVPORT = 'SuperView.rx'
IF ~SHOW('P',SVPORT) THEN SVPORT = SVNGPORT
IF ~SHOW('P',SVPORT) THEN SVPORT = SVIIPORT
IF ~SHOW('P',SVPORT) THEN DO
say "Could not locate ARexx port of SViewII !"
CALL ErrorOut 0
END
ADDRESS VALUE SVPORT
'SVOPERATOR=HilbertDither256'
address command wait 5
'SVOPERATOR=XOR'
CALL ErrorOut 0
/* Errorout procedure ----------------------- */
ErrorOut:
PARSE ARG ExitCode
EXIT ExitCode
END