home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1996 July / macformat-039.iso / DATABASE / SHARED.DIR / 01025.ls < prev    next >
Encoding:
Text File  |  1996-03-14  |  886 b   |  29 lines

  1. on domebaby
  2.   set num to the number of lines in field "makernumbers"
  3.   repeat with i = 1 to num
  4.     set boo to line i of field "makernumbers"
  5.     set tmp to word the number of words in boo of boo & "," & word 1 of boo
  6.     put tmp into line i of field "MakerList"
  7.   end repeat
  8.   sortlines("makerlist")
  9. end
  10.  
  11. on dome2
  12.   set num to the number of lines in field "makerlist"
  13.   repeat with i = 1 to num
  14.     set tmp to line i of field "makerlist"
  15.     set tmpnum to value(item 2 of tmp)
  16.     put item 1 of tmp into line tmpnum of field "makernumlist"
  17.   end repeat
  18. end
  19.  
  20. on dome3
  21.   set num to the number of lines in field "makerfullnames"
  22.   repeat with i = 156 to num
  23.     delete word 1 of line i of field "makerfullnames"
  24.     set tmp to line i of field "makerfullnames"
  25.     set num2 to the number of words in tmp
  26.     put word 1 to num2 of tmp into line i of field "makerfullnames"
  27.   end repeat
  28. end
  29.