home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
553.lha
/
ClockDJ_v5.02
/
ClockRexxExamples
/
move.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1991-09-09
|
201 b
|
13 lines
/* rexx move window */
options results
call addlib "rexxsupport.library",0,-30,0
address clockdj
getwindow 'ClockDJ'
win = result
x = 1
do y= 1 to 200
movewindow win x y
call delay 5
x = x+1
end