home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magazyn Amiga Shareware Floppies
/
ma86.dms
/
ma86.adf
/
SViewNG.lha
/
SViewNG_EL.lha
/
SViewNG
/
ARexx-Scripts
/
SetSVDriver.rx
< prev
next >
Wrap
Text File
|
1997-07-20
|
888b
|
52 lines
/*
$VER: SetDriver.rx V6.21 (17.3.97)
© 1993-97 by Andreas R. Kleinert
This script demonstrates how to modify the global SVDriver preferences
by using SViewNG's ARexxPort.
The resulting changes will also appear on SViewNG's GUI,
if already open.
*/
address command
SViewNG "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
say ""
say "ARexx: SViewNG has been started : Waiting a moment..."
wait 5
OPTIONS RESULTS
SIGNAL ON ERROR
SVNGPORT = 'SViewNG.rx'
SVPORT = 'SuperView.rx'
IF ~SHOW('P',SVPORT) THEN SVPORT = SVNGPORT
IF ~SHOW('P',SVPORT) THEN DO
say "Could not locate ARexx port of SViewNG !"
CALL ErrorOut 0
END
ADDRESS VALUE SVPORT
'SVDRIVER=ECS ScreenDriver'
address command wait 5
'SVDRIVER=AGA ScreenDriver'
CALL ErrorOut 0
/* Errorout procedure ----------------------- */
ErrorOut:
PARSE ARG ExitCode
EXIT ExitCode
END