home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / rexx / arexxsupervisor / product-info < prev   
Fred Fish's Product-Info  |  1995-10-23  |  1KB  |  61 lines

  1. .name
  2. ARexxSupervisor
  3. .type
  4. Developement Software
  5. .short
  6. Tool to test/debug ARexx interfaces
  7. .description
  8. ARexxSupervisor  is  mainly  a  tool for the developpers of you who want to
  9. integrate and properly test/debug ARexx interfaces in their programs.
  10.  
  11. ARexxSupervisor provides a means of mouse-controlling the data that is sent
  12. to  a valid ARexx port.  Be careful however, it is easy to make destructive
  13. actions or provoke deadlocks or gurus.
  14. .version
  15. 1.20
  16. .author
  17. F.DELACROIX
  18. .requirements
  19. OS 2.04+
  20. reqtools.library V38+
  21. errormsg.library V4.0+
  22. ARexx
  23. amigaguide.library for online help
  24. .distribution
  25. Shareware
  26. .price
  27. $10
  28. .address
  29. Frederic DELACROIX
  30. 5 rue d'Artres
  31. 59269 QUERENAING
  32. FRANCE, EARTH
  33. .docs
  34. ARexxSupervisor.Guide
  35. ARexxSupervisor.GuideFra
  36. .described-by
  37. Richard Fish (rjf@amigalib.com)
  38. .submittal
  39. Submitted on disk directly by the author.
  40. .aminet-dir
  41. util/rexx
  42. .execute
  43. set choice `RequestChoice "ARexxSupervisor" "Please select an option" "View English Guide" "View French Guide" "Run Program" "Cancel"`
  44.  
  45. if $choice EQ "0"
  46.   quit 5
  47. endif
  48.  
  49. if $choice EQ "1"
  50.   MetaTool ARexxSupervisor.Guide GUIDE
  51. endif
  52.  
  53. if $choice EQ "2"
  54.   MetaTool ARexxSupervisor.GuideFra GUIDE
  55. endif
  56.  
  57. if $choice EQ "3"
  58.   assign libs: "" ADD
  59.   ARexxSupervisor
  60. endif
  61.