home *** CD-ROM | disk | FTP | other *** search
Fred Fish's Product-Info | 1995-08-25 | 3.4 KB | 121 lines |
- .name
- BlitzBlank
- .type
- Screen Blanker
- .short
- Modular screenblanker, lots of features
- .description
- Description of BlitzBlank:
- --------------------------
-
- Well, another screen saver. But this one's got these features:
-
- - AGA/OS 3.0 compatibel
- - most modules are graphic card compatible
- - modular (soon more Modules) concept
- - lots of useful options
- - lots of funny modules
- - build in mouseblanker (timed or by keystroke)
- - nice GUI (style-guide-compliant)
- - build in screen mode requester (Commodore forgot in OS 2.0)
- - ARexx-Interface
- - fully system friendly
- - it's own prefs-editor (BlitzBlankPrefs)
- - automatic switch-back to black screen if a blanker stops due to heavy
- CPU load
- - won't crash if some nasty program opens it's window on the blankscreen
- - mouse motion sensitivity adjustable
- - "blank now"- and "blank never"-corner (adjustable size)
- - monitors the joystick
- - flexible random function
- - Commodity
- - every module can have it's own screen mode (if the module supports it)
- - AmigaGuide documentation with context sensitiv help
- - Reblanking (module screen will be pushed to front every 5 seconds)
- .version
- 2.60
- .date
- 1995.05.16
- .author
- Thomas Börkel
- .requirements
- - an Amiga ;-))
- - AmigaOS 2.04 or higher (anybody who still uses 1.3 is at a loss)
- - @{" MUI " link mui} 2.3
- - the following libraries must be present in the LIBS: directory:
- * commodities.library
- * rexxsyslib.library
- * amigaguide.library
- .distribution
- Giftware
- .address
- Gartenstr. 16
- D-76761 Rülzheim
- Germany
- .email
- Thomas_Boerkel@amiga_inside2.schiele-ct.de
- .docs
- Deutsch/BlitzBlank.guide
- English/BlitzBlank.guide
- .described-by
- Richard Fish (rjf@amigalib.com)
- .submittal
- Downloaded via ftp from wuarchive.wustl.edu.
- .aminet-dir
- util/blank
- .execute
- LAB Start
- set choice `RequestChoice "Options Selection" "Please select an option" "View Guide" "Install Program" "UnInstall" "Run Program" "Cancel"`
- if $choice GT "0"
- if $choice EQ "1"
- set choice2 `RequestChoice "Options Selection" "Please select a Language" "English" "Deutsch" "Cancel"`
- if $choice2 GT "0"
- if $choice2 EQ "1"
- cd English
- MetaTool BlitzBlank.guide GUIDE
- cd /
- else
- if $choice2 EQ "2"
- cd Deutsch
- MetaTool BlitzBlank.guide GUIDE
- cd /
- endif
- endif
- endif
- else
- if $choice EQ "2"
- set choice2 `RequestChoice "Options Selection" "Please select a Language" "English" "Deutsch" "Cancel"`
- if $choice2 GT "0"
- if $choice2 EQ "1"
- Installer Install_BlitzBlank "BlitzBlank 2.60" MINUSER AVERAGE LANGUAGE english
- else
- if $choice2 EQ "2"
- Installer Install_BlitzBlank "BlitzBlank 2.60" MINUSER AVERAGE LANGUAGE deutsch
- endif
- endif
- endif
- else
- if $choice EQ "3"
- set choice2 `RequestChoice "Options Selection" "Please select a Language" "English" "Deutsch" "Cancel"`
- if $choice2 GT "0"
- if $choice2 EQ "1"
- Installer UnInstall_BlitzBlank "BlitzBlank 2.60" MINUSER AVERAGE LANGUAGE english
- else
- if $choice2 EQ "2"
- Installer UnInstall_BlitzBlank "BlitzBlank 2.60" MINUSER AVERAGE LANGUAGE deutsch
- endif
- endif
- endif
- else
- if $choice EQ "4"
- assign libs: libs/ ADD
- assign locale: locale/ ADD
- run >nil: BlitzBlank
- BlitzBlankPrefs
- endif
- endif
- endif
- endif
- skip Start BACK
- endif
-