home *** CD-ROM | disk | FTP | other *** search
- /*
- $VER: ConvertFile.rx V3.2 (9.7.94)
- © 1993-94 by Andreas R. Kleinert
-
- This script demonstrates loading, saving (converting) and
- displaying files by using SuperView's ARexxPort.
-
- */
-
- address command
-
- SuperView "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
-
- say ""
- say "ARexx : SuperView has been started : Waiting three seconds ..."
-
- wait 3
-
- say "ARexx : Loading a GIF Graphics via the LOAD command"
- address 'SuperView.rx' "LOAD=SuperView.GIF"
-
- say "ARexx : Saving Graphics as BMP V3.00"
-
- address 'SuperView.rx' "SAVE_TYPE=BMP V3.00"
- address 'SuperView.rx' "SAVE=SuperView.bmp"
-
- wait 3
-
- say "ARexx : Load this BMP Gfx now for control"
-
- address 'SuperView.rx' "SHOW=SuperView.bmp"
-
- say "ARexx : O.K. : Let's quit !"
-
- Wait 2
-
- address 'SuperView.rx' "QUIT"
-
- exit
-