home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magazyn Exec 3
/
CD_Magazyn_EXEC_nr_3.iso
/
Recent
/
biz
/
haage
/
ArtEffect4Demo.lha
/
ArtEffect4-Demo
/
Rexx
/
help.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-04-11
|
406b
|
25 lines
/*
list all commands and their templates
*/
options results
address "ArtEffect"
/* request commandlist */
help STEM me.
do i=0 to me.commandlist.count-1
help command me.commandlist.i
say "Command" i+1 || ": " || result
end
help STEM me. pluginlist
do i=0 to me.commandlist.count-1
print = "PlugIn " i+1 || ": " || me.commandlist.i
help plugin me.commandlist.i
say print || ": " || result
end