home *** CD-ROM | disk | FTP | other *** search
- /* $VER: SetLessonDefaults.rexx 1.0a (01.11.94)
- Copyright 1994 Soft-Logik Publishing Corporation
- May not be distributed without Soft-Logik Publishing Corporation's express written permission */
-
- /* SAME OLD STUFF */
- OPTIONS RESULTS
- TRACE OFF
- ADDRESS COMMAND
- /* Make sure rexx support is opened */
- IF ~SHOW('L','rexxsupport.library') THEN
- CALL ADDLIB('rexxsupport.library',0,-30)
-
- ADDRESS 'PAGESTREAM'
-
- loadsettings file 'pagestream3:macros/setlessondefaults.prefs'
-
- /* Allocate requester */
- allocarexxrequester '"Lesson Defaults"' 424 71
- reqhandle=result
- /* Add gadgets */
- addarexxgadget reqhandle EXIT 177 54 70 label "_Ok"
- addhandle=result
- addarexxgadget reqhandle TEXT 8 10 408 border none string "'You are now ready to do lessons 1 or 5. Note that'"
- addarexxgadget reqhandle TEXT 8 20 408 border none string "'the features required for lessons 2, 3 and 4 are'"
- addarexxgadget reqhandle TEXT 8 30 408 border none string "'not all implemented in this version.'"
- doarexxrequester reqhandle
- freearexxrequester reqhandle
-
- ADDRESS COMMAND
- 'delete t:blank.prefs >NIL:'
-