home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / PROGRAMM / LADYBUG.ZIP / ADDENDA.LST next >
File List  |  1984-03-19  |  3KB  |  101 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.                      LADYBUG 1.0 MANUAL ADDENDA
  8.  
  9.                            18 March 1984
  10.  
  11.                            David N. Smith
  12.                          44 Ole Musket Lane
  13.                           Danbury, CT 06810
  14.  
  15.                Copyright (c) 1984 by David N. Smith
  16.                          All Rights Reserved
  17.  
  18.  
  19.  
  20.  LADYBUG STATUS
  21.  
  22.  
  23.  LadyBug version 0.9 was shipped to over a hundred users and has has a
  24.  lot of uses.  It also had some bugs.  All known bugs have fixed in
  25.  version 1.0.  However, a lot of new function has been added and a lot
  26.  of things improved.  Therefore there are probably additional bugs
  27.  lurking around.
  28.  
  29.  The author will be happy to include in future releases any procedures
  30.  that someone sends.  Be sure to say that the procedures are for
  31.  distribution.  Your name will be included on them and with the
  32.  description in the manual unless you say not to.
  33.  
  34.  
  35.  
  36.  KNOWN BUGS AND RESTRICTIONS
  37.  
  38.  On PCjr there is enough less memory remaining out of its 128K that
  39.  LadyBug barely fits and large procedures will not fit.  In tests, for
  40.  example, the RAILS procedure would not load.  Since the PCjr tests,
  41.  some slack has been squeezed out of LadyBug but it still is tight.
  42.  Version 1.1 of LadyBug will certainly run better on PCjr.
  43.  
  44.  
  45.  
  46.  "print 1 + rc" does not work even when the character typed is a
  47.  number.  Instead do this:
  48.  
  49.      make "elf rc
  50.      print 1 + run :elf
  51.  
  52.  
  53.  
  54.  The first works and the second doesn't:
  55.  
  56.      if rc = 3 [...]
  57.      if 3 = rc [...]
  58.  
  59.  
  60.  
  61.  After a CATALOG command the background color is not restored.  A
  62.  DRAW command will restore it.
  63.  
  64.  
  65.  
  66.  If you lie and tell LadyBug that you have a Monochrome display in
  67.  addition to your graphics display, LB will run, but:
  68.  
  69.    * All text will be in 80 column mode and TEXTCOLUMNS has no effect.
  70.    * The editor will not display anything.
  71.  
  72.  
  73.  
  74.  Remember that the Monochrome screen referred to is the IBM Monochrome
  75.  screen which displays text only and not simply a non-color graphics
  76.  screen.
  77.  
  78.  
  79.  
  80.  When WRAP is on and a figure draws through a corner some lines get
  81.  messed up.  For example, try:
  82.  
  83.    penup  setxy 250 150  pendown
  84.    poly 150 170
  85.  
  86.  WRAP works in most cases you will ever encounter.
  87.  
  88.  
  89.  
  90.  If you type a command which exceeds 40 columns in graphics mode,
  91.  the screen scrolls up.
  92.  
  93.  
  94.  
  95.  The extended character set (those characters above ASCII 127) has
  96.  problems when you have both the IBM MONOCHROME display as well as the
  97.  graphics display.  To use the characters on the graphics display,
  98.  switch to the graphics display while still in DOS (use the MODE COLOR
  99.  command) and THEN start up LadyBug.
  100.  
  101.