home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 266.lha / ClockDJ_v4.03 / ClockDJRexx / move.rexx < prev    next >
OS/2 REXX Batch file  |  1989-07-10  |  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.