Outfile variable/string display function descriptions:

Variable note:

Graphics.On

  False  -  default colors in io.o/io.i
  True   -  do not change colors

Graphics.Off

  False  -  rotate io.o ansi string
  True   -  hilight io.o string

-end-

Imbedded ANSI strings are done as follows:

  Out2=Rtrim$(TreasureRecord.Prefix1) ' { prefix ansi code
  Out3=Rtrim$(TreasureRecord.TreasureName) ' name of item
  Call Capitalize(Out3) ' optional uppercasing words in string
  Strng="   "+Out2+Out3
  Call Convert.ANSI(True,VarQ,VarR) ' convert and display ansi string
  Carriage.Return=True ' turn off cr/lf
  Graphics.On=True
  Call IO.O ' display first part of string
  Graphics.On=False
  Graphics.Off=True
  Strng=" Falls From The Sky..."
  Call IO.O ' display second part of string

Or more simplicatally:

  Strng=AnyInputString$
  Call Convert.String
  Call Convert.ANSI(True,VarQ,VarR)
  Graphics.On=True
  Call IO.O
  Graphics.On=False

-end-
