home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / WordProcessors / PAGESTREAM3,0-1.DMS / in.adf / Macros.LHA / SetLessonDefaults.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1994-08-31  |  715 b   |  21 lines

  1. /* SetLessonDefaults.rexx */
  2. /* Copyright 1994 Soft-Logik Publishing Corporation */
  3. /* May not be distributed without Soft-Logik Publishing Corporation's express written permission */
  4. /* $VER: 1.0 */
  5.  
  6. OPTIONS RESULTS
  7. ADDRESS 'PAGESTREAM'
  8.  
  9. /* Allocate requester */
  10. allocarexxrequester '"Work in Progress"' 444 63
  11.     reqhandle=result
  12.  
  13. /* Add gadgets */
  14. addarexxgadget reqhandle EXIT 187 46 70 label "_Ok"
  15.     addhandle=result
  16. addarexxgadget reqhandle TEXT 8 10 424 border none string "'Sorry, this is not finished yet. A completed version'"
  17. addarexxgadget reqhandle TEXT 8 22 424 border none string "'will be included with a free update to PageStream3.'"
  18. doarexxrequester reqhandle
  19. freearexxrequester reqhandle
  20. EXIT
  21.