home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Magazin: Amiga-CD 1996 July
/
AMIGA_1996_7.BIN
/
patches
/
pagestream
/
3.0cfupdate
/
macros.lha
/
SetLessonDefaults.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-11-01
|
1KB
|
31 lines
/* $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:'