home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ACS 1998 #4
/
amigaacscoverdisc1998-041998.iso
/
utilities
/
commercialdemos
/
arteffect2.0
/
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