home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / fish / disks / d1112.lha / Programs / BlitzBlank / Product-Info < prev    next >
Encoding:
Fred Fish's Product-Info  |  1995-08-25  |  3.4 KB  |  121 lines

  1. .name
  2. BlitzBlank
  3. .type
  4. Screen Blanker
  5. .short
  6. Modular screenblanker, lots of features
  7. .description
  8. Description of BlitzBlank:
  9. --------------------------
  10.  
  11. Well, another screen saver. But this one's got these features:
  12.  
  13. - AGA/OS 3.0 compatibel
  14. - most modules are graphic card compatible
  15. - modular (soon more Modules) concept
  16. - lots of useful options
  17. - lots of funny modules
  18. - build in mouseblanker (timed or by keystroke)
  19. - nice GUI (style-guide-compliant)
  20. - build in screen mode requester (Commodore forgot in OS 2.0)
  21. - ARexx-Interface
  22. - fully system friendly
  23. - it's own prefs-editor (BlitzBlankPrefs)
  24. - automatic switch-back to black screen if a blanker stops due to heavy
  25.   CPU load
  26. - won't crash if some nasty program opens it's window on the blankscreen
  27. - mouse motion sensitivity adjustable
  28. - "blank now"- and "blank never"-corner (adjustable size)
  29. - monitors the joystick
  30. - flexible random function
  31. - Commodity
  32. - every module can have it's own screen mode (if the module supports it)
  33. - AmigaGuide documentation with context sensitiv help
  34. - Reblanking (module screen will be pushed to front every 5 seconds)
  35. .version
  36. 2.60
  37. .date
  38. 1995.05.16
  39. .author
  40. Thomas Börkel
  41. .requirements
  42. - an Amiga ;-))
  43. - AmigaOS 2.04 or higher (anybody who still uses 1.3 is at a loss)
  44. - @{" MUI " link mui} 2.3
  45. - the following libraries must be present in the LIBS: directory:
  46.   * commodities.library
  47.   * rexxsyslib.library
  48.   * amigaguide.library
  49. .distribution
  50. Giftware
  51. .address
  52. Gartenstr. 16
  53. D-76761 Rülzheim
  54. Germany
  55. .email
  56. Thomas_Boerkel@amiga_inside2.schiele-ct.de
  57. .docs
  58. Deutsch/BlitzBlank.guide
  59. English/BlitzBlank.guide
  60. .described-by
  61. Richard Fish (rjf@amigalib.com)
  62. .submittal
  63. Downloaded via ftp from wuarchive.wustl.edu.
  64. .aminet-dir
  65. util/blank
  66. .execute
  67. LAB Start
  68. set choice `RequestChoice "Options Selection" "Please select an option" "View Guide" "Install Program" "UnInstall" "Run Program" "Cancel"`
  69. if $choice GT "0"
  70.   if $choice EQ "1"
  71.     set choice2 `RequestChoice "Options Selection" "Please select a Language" "English" "Deutsch" "Cancel"`
  72.     if $choice2 GT "0"
  73.       if $choice2 EQ "1"
  74.         cd English
  75.         MetaTool BlitzBlank.guide GUIDE
  76.         cd /
  77.       else
  78.         if $choice2 EQ "2"
  79.           cd Deutsch
  80.           MetaTool BlitzBlank.guide GUIDE
  81.           cd /
  82.         endif
  83.       endif
  84.     endif
  85.   else
  86.     if $choice EQ "2"
  87.       set choice2 `RequestChoice "Options Selection" "Please select a Language" "English" "Deutsch" "Cancel"`
  88.       if $choice2 GT "0"
  89.         if $choice2 EQ "1"
  90.           Installer Install_BlitzBlank "BlitzBlank 2.60" MINUSER AVERAGE LANGUAGE english
  91.         else
  92.           if $choice2 EQ "2"
  93.             Installer Install_BlitzBlank "BlitzBlank 2.60" MINUSER AVERAGE LANGUAGE deutsch
  94.           endif
  95.         endif
  96.       endif
  97.     else
  98.       if $choice EQ "3"
  99.         set choice2 `RequestChoice "Options Selection" "Please select a Language" "English" "Deutsch" "Cancel"`
  100.         if $choice2 GT "0"
  101.           if $choice2 EQ "1"
  102.             Installer UnInstall_BlitzBlank "BlitzBlank 2.60" MINUSER AVERAGE LANGUAGE english
  103.           else
  104.             if $choice2 EQ "2"
  105.               Installer UnInstall_BlitzBlank "BlitzBlank 2.60" MINUSER AVERAGE LANGUAGE deutsch
  106.             endif
  107.           endif
  108.         endif
  109.       else
  110.         if $choice EQ "4"
  111.           assign libs: libs/ ADD
  112.           assign locale: locale/ ADD
  113.           run >nil: BlitzBlank
  114.           BlitzBlankPrefs
  115.         endif
  116.       endif
  117.     endif
  118.   endif
  119.   skip Start BACK
  120. endif
  121.