home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff293.lzh / ClockDJ / ClockDJRexx / move.rexx < prev    next >
OS/2 REXX Batch file  |  1989-12-14  |  201b  |  13 lines

  1. /* rexx  move window */
  2. options results
  3. call addlib "rexxsupport.library",0,-30,0
  4. address clockdj
  5. getwindow 'ClockDJ'
  6. win = result
  7. x = 1
  8. do y= 1 to 200 
  9.     movewindow win x y
  10.     call delay 5
  11.     x = x+1
  12.     end
  13.