home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #2 / RBBS_vol1_no2.iso / 009z / symcolor.cor < prev    next >
Text File  |  1985-11-28  |  3KB  |  61 lines

  1.  
  2.  
  3.                     Correction:
  4.  
  5. In the July 9, 1985 Spreadsheet Clinic the addresses for changing colors
  6. in Lotus 1-2-3 with DEBUG were correct, but those for Symphony work only for a
  7. specific combination of drivers.  To find the address where the color-control
  8. data is stored in your own configuration, you must start by using DEBUG to
  9. search Symphony's LOTUS.SET file.  At the A>, with LOTUS.SET in drive A:
  10. and DEBUG.COM in drive B:, type
  11.  
  12.                            b:debug lotus.set <CR>.
  13.  
  14. Then, at the debug - prompt, type
  15.  
  16.                               rcx <CR>.
  17.  
  18. This will give you the (hexadecimal) ending address of the file.  It is the
  19. four-digit number after the characters CX.  Write that address down and hit a
  20. blank <CR> to leave the file's contents unchanged.
  21. Now, at DEBUG's - prompt, type
  22.  
  23.                         s 100 xxxx 07 30 0A 20 <enter>.
  24.  
  25. For xxxx, you substitute the hex address you wrote down in the previous step.
  26. The s is the search command, so DEBUG will scan from the beginning of the file
  27. (100) to its end (xxxx), looking for the values (which are Symphony's default
  28. color values) you typed in.  Finding them, the command will return their
  29. address (say, yyyy), the four digits after the colon.
  30.  
  31. To change the colors you can now proceed as described in the Spreadsheet
  32. Clinic column.  Type
  33.  
  34.                             -e yyyy <CR>.
  35.  
  36. This will display the contents at that address and allow you to change colors
  37. by entering the new two-digit values you desire.  After entering the first, hit
  38. the space bar, and the value at the next address will appear.  Type a new value,
  39. then a space, and continue until you have typed four values.   Then hit a
  40. <CR>.  You then write the new values to your file and exit DEBUG with the
  41. following commands:
  42.  
  43.                             -w <CR>
  44.                             -q <enter>
  45.  
  46. DEBUG will tell you how many bytes it is writing and then quit to the A>.
  47.  
  48.                                              Michael Duke
  49.  
  50.                                              Oklahoma City
  51.  
  52. Jared Taylor replies:
  53. This patch works fine.  We apologize for the error in that column.  Bear in mind
  54. that each two-digit value you change affects two different colors, background
  55. and foreground.  Instead of the default color values, you might try 3F 1C 4E 24
  56. for a pleasant effect.
  57. BUG.COM in drive B:, type
  58.  
  59.                            b:debug lotus.set <CR>.
  60.  
  61. T