home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / utilities / armedit_1 / !ARMEdit / !Run < prev    next >
Text File  |  1997-02-21  |  1KB  |  29 lines

  1. |   File        : !Run
  2. |   Date        : 21-Feb-97
  3. |   Author      : © A.Thoukydides, 1996, 1997
  4. |   Description : The first part of the script used to start the ARMEdit
  5. |                 application. This checks that the computer is running a
  6. |                 sufficiently recent version of RISC OS, displays a pretty
  7. |                 banner, and starts the second part of the script.
  8.  
  9. | Set a system variable to the application directory
  10. Set ARMEdit$Dir <Obey$Dir>
  11.  
  12. | Load the application sprites
  13. IconSprites <ARMEdit$Dir>.!Sprites
  14.  
  15. | Check that it is a sufficiently recent version of the operating system
  16. RMEnsure UtilityModule 3.10 Error 0 This application is only suitable for use with RISC OS 3.10 or later versions.
  17.  
  18. | Check that there is likely to be sufficient memory for both programs
  19. WimpSlot -min 136K -max 136K
  20.  
  21. | Start the next part of the program loading once the banner has initialised
  22. Filer_Run <ARMEdit$Dir>.!Run2
  23.  
  24. | Ensure that there is sufficient memory for the banner program
  25. WimpSlot -min 52K -max 52K
  26.  
  27. | Run the banner program, leaving window open for 3 seconds
  28. Run <ARMEdit$Dir>.Banner 300 -sprites <ARMEdit$Dir>.Resources.Banner
  29.