home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 4
/
AACD04.ISO
/
AACD
/
Online
/
TView
/
Rexx
/
example.rexx
next >
Wrap
OS/2 REXX Batch file
|
1999-10-10
|
620b
|
31 lines
/********************************************************************
* Example of an arexx script to be used with TView.
* Will go thru the list and print it out in a shell.
* Just type "rx example.rexx" in a shell.
********************************************************************/
options results
address tview.1
"GetNumberItems"
items=RESULT
echo "Number of entries:" items
do i=0 to items-1
"SetActive "i
"GetShowView"
sw=RESULT
"GetProgram"
prog=RESULT
"GetTime"
time=RESULT
"GetInfo"
info=RESULT
"GetChannel"
chan=RESULT
echo chan time prog sw
/*echo info*/
end