home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / boot / startup-menu / product-info < prev    next >
Fred Fish's Product-Info  |  1995-10-22  |  2KB  |  89 lines

  1. .name
  2. StartUp-Menu
  3. .type
  4. OS Utility
  5. .short
  6. Customizable startup utility
  7. .description
  8. A menu which allows you to choose between various options at
  9. startup. Features: ARexx support; screen database support;
  10. unlimited number of buttons/choices; can show a file in the
  11. menu backgroud; public screen support; any font on the menu;
  12. can scroll phrases along the bottom of the menu; the menu
  13. can have any palette; menu can pop up only if certain 
  14. qualifiers are pressed (eg. Mouse buttons); can show free
  15. RAM and time and can can also alter system settings (disable
  16. drive clicking, enable * as a wildcard and public screen
  17. flags).
  18. .version
  19. 1.41
  20. .date
  21. 1994.12.19
  22. .author
  23. Lee Kindness
  24. .requirements
  25. Requires OS2.0+
  26. .distribution
  27. Copyrighted but Freely Redistributable
  28. .address
  29. 8 Craigmarn Rd.
  30. Portlethen
  31. Aberdeen AB1 4QR
  32. SCOTLAND
  33. .construction
  34. Written in HighSpeed Pascal
  35. .tested
  36. Developed on an Amiga A1200 120MBHD ParNETed to an A600 SD
  37. .reference
  38. FreshFish-Jul94:BBS/util/Startup-Menu-1.5.lha
  39. 1.5
  40. FreshFish-Jul94:New/util/boot/Startup-Menu/
  41. 1.5
  42. AmigaLibDisk966:Startup-Menu/
  43. 1.00
  44. FreshFish-May94:New/AmigaLibDisks/d996/Startup-Menu/
  45. 1.00
  46. FreshFish-May94:BBS/AmigaLib/d996/Startup-Menu.lha
  47. 1.00
  48. FrozenFish-Apr94:BBS/ALib/d9xx/d996/Startup-Menu.lha
  49. 1.00
  50. GoldFish1-Apr94:BBS/d9xx/d996/Startup-Menu.lha
  51. 1.00
  52. GoldFish2-Apr94:d9xx/d996/Startup-Menu/
  53. 1.00
  54. .docs
  55. Startup-Menu.GUIDE
  56. Distribution.doc
  57. .described-by
  58. Richard Fish
  59. .submittal
  60. Submitted on disk directly by the author.
  61. .aminet-dir
  62. util/boot
  63. .execute
  64. set choice `RequestChoice "Startup-Menu" "Please select an option" "View Readme" "View Guide" "Install" "Uninstall" "Run" "Cancel"`
  65.  
  66. if $choice EQ "0"
  67.   quit 5
  68. endif
  69.  
  70. if $choice EQ "1"
  71.   MetaTool StartupMenu.readme TEXT
  72. endif
  73.  
  74. if $choice EQ "2"
  75.   MetaTool Startup-Menu.GUIDE GUIDE
  76. endif
  77.  
  78. if $choice EQ "3"
  79.   Installer SCRIPT Install_SM APPNAME Startup-Menu LOGFILE RAM:SM_Install_Log endif
  80. endif
  81.  
  82. if $choice EQ "4"
  83.   Installer SCRIPT Remove_SM MINUSER EXPERT APPNAME "Startup-Menu removal"
  84. endif
  85.  
  86. if $choice EQ "5"
  87.   SMPrefs
  88. endif
  89.