home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 107 / af107sub.adf / GUIToolKit.LZX / GUIToolKitV1.5 / Arexx / moveallgads.rx next >
Encoding:
Text File  |  1997-11-16  |  214 b   |  15 lines

  1. /* This script will move all gadgets xoffset and yoffset  */
  2.  
  3. address "GUITKREXX"
  4. Options Results
  5. xoff=0
  6. yoff=10
  7.  
  8. NoOfGadgets
  9. n=Result
  10. do loop = 1 to n
  11.     MoveGadget loop xoff yoff
  12. end
  13. UpDateDisplay    
  14. say "all done!"
  15.