/* 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
