home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / Timing / ClockDJ.lha / ClockDJ / ClockRexxExamples / move.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1991-08-05  |  201 b   |  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.