home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / gfx / misc / imagefx_sdk / product-info < prev    next >
Encoding:
Fred Fish's Product-Info  |  1995-10-10  |  1.1 KB  |  54 lines

  1. # This file contains product information that can be used by
  2. # KingFisher 2.0 and other similar tools.
  3.  
  4. .name
  5. ImageFX_SDK
  6. .type
  7. Image Processing
  8. .short
  9. ImageFX 2.0 Source Developers Kit
  10. .description
  11. This developers kit will allow most Amiga programs to develop modules for
  12. nearly any part of the ImageFX 2.0 system.
  13. .version
  14. 2.0
  15. .author
  16. Nova Design, Inc.
  17. .distribution
  18. Copyrighted but Freely Redistributable
  19. .docs
  20. README
  21. ASSUMPTIONS
  22. DISTRIBUTION
  23. REVISIONS
  24. .described-by
  25. Dan Fish (daf@starfish.amigalib.com)
  26. .submittal
  27. Downloaded via ftp from wuarchive.wustl.edu.
  28. .aminet-dir
  29. gfx/misc
  30. .execute
  31. set choice `RequestChoice "ImageFX_SDK" "Please select an option" "View Readme 1" "View Readme 2" "View AutoDocs" "Cancel"`
  32.  
  33. if $choice EQ "0"
  34.   quit 5
  35. endif
  36.  
  37. if $choice EQ "1"
  38.   MetaTool ifxsdk20.readme TEXT
  39. endif
  40.  
  41. if $choice EQ "2"
  42.   MetaTool README TEXT
  43. endif
  44.  
  45. if $choice EQ "3"
  46.   cd Doc
  47.   set filechoice `RequestFile TITLE "Select File" PATTERN "#?.autodoc"`
  48.   set dirchoice `pathname $filechoice`
  49.   set filechoice `basename $filechoice`
  50.   failat 21
  51.   cd $dirchoice
  52.   MetaTool $filechoice TEXT
  53. endif
  54.