home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / wp_dtp / textplus.lzh / TextPlus / English / rexx / tab.tpl < prev    next >
Text File  |  1991-04-11  |  321b  |  22 lines

  1. /* tab-macro */
  2.  
  3. /* löscht alle tabs und setzte an jede 10 Spalte ein tab */
  4. /* clears all tabs and sets a tab every 10th column */
  5.  
  6. /* TextPlus ist unser Gastgeber. */
  7. /* TextPlus is our host. */
  8.  
  9. address 'TextPlus'
  10.  
  11. 'ClearTabs'
  12.  
  13. 'SetTab' 1
  14.  
  15. do i = 10 by 10 to 70
  16.  
  17.    'SetTab' i
  18.  
  19. end
  20.  
  21. 'Display' 'Tab-Macro ... finished'
  22.