home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 November / pcwk_11_98B.iso / Lotus / GERMAN / LOTUS027.DSK / FONTLIST.TPL < prev    next >
Text File  |  1995-07-31  |  378b  |  14 lines

  1.     REM This script builds a simple font
  2.     REM table in a parallel column.  For best
  3.     REM results, run this script in a new document.
  4.     
  5.     .CreateParallelColumns 2, $LtsAlignmentLeft
  6.     
  7.     Forall face In .ActiveDocument.PrintManager.FaceNames
  8.         .Type face
  9.         .GotoNextParallelColumn
  10.         .Text.Font.FontName = face
  11.         .Type "abcdeABCDE1234"
  12.         .GotoNextParallelColumn
  13.     End Forall
  14.