home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 408.lha / rexxinput / rxtest.rexx < prev   
OS/2 REXX Batch file  |  1990-09-05  |  462b  |  22 lines

  1. /*rxtest.rexx              */
  2. /*test rexx script         */
  3. /*run from cli  rx rxtest  this is a very simple example with no error
  4. checking. It needds a cli open on the bottom half of the screen and 
  5. workbench visable at the top.*/
  6.  
  7. options results   /*turn on string results*/
  8. address 'rexxinput'
  9. 'mouseto 20 30'
  10. 'clicklbutton'
  11. 'mouseto 20 10'
  12. 'pressrbutton'
  13. do x = 1 to 110
  14.   'mouserel 0 1'
  15. end
  16. 'relrbutton'
  17. 'mouseto 300 300'
  18. 'clicklbutton'
  19. 'stringcd'
  20. 'quit'
  21.  
  22.