home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / FINISH21.ZIP / READ.ME < prev    next >
Encoding:
Text File  |  1992-06-15  |  4.4 KB  |  121 lines

  1. THE FINISHING TOUCH
  2. Professional Software Installer
  3. Version 2.0
  4. June 1, 1992
  5. Developed by ImagiSOFT, Inc.
  6. who is a member of the Association of Shareware Professionals.
  7.  
  8.  
  9. This is a fully working shareware copy of THE FINISH TOUCH.
  10.           ~~~~~~~~~~~~~
  11.  
  12. To print the documentation use the command:
  13.     COPY INSTALL.TXT LPT1:
  14.  
  15. To print the order form use the command:
  16.     COPY ORDER.TXT LPT1:
  17.  
  18. The Finishing Touch Software Installer consists of the minimum six files:
  19.    PACKER.EXE             file compression utility
  20.    INSTALL.EXE            installation utility
  21.    INSTALL.FIL            sample installation script file
  22.    INSTALL.TXT            documentation for all of the above
  23.    ORDER.TXT              order form
  24.    READ.ME                this file
  25.  
  26. If these files are missing or altered, the software WILL NOT run!
  27.  
  28. A seventh file, SAMPLE.PAK should be included with this software to
  29. so people can see first hand how the software installer works with a "real"
  30. application.  ALL SEVEN files must be on the floppy disk to see the demo
  31. run or you will get a "Files Missing" message.
  32.  
  33. Four other, optional files have been added to see a "real" application of
  34. the Finishing Touch Software Installer which we used for our TSA Software.
  35.    1.FIL             is actually named "INSTALL.FIL" on our software
  36.                      it is small and asks the question Color Y/N?
  37.    2C.FIL            if the color is "Yes" then this file is loaded
  38.    2B.FIL            this file is loaded for LCD & monochrome monitors.
  39.    4.FIL             this file is loaded only if a fatal disk error occurs.
  40.  
  41. Modifying INSTALL.FIL and these four files is the "fast start" way to learn
  42. how to use THE FINISHING TOUCH Software Installer.  You have in your hands
  43. a fully working shareware evaluation copy.  We hope that you will find
  44. THE FINISHING TOUCH is the smallest, most powerful, easiest to use,
  45. software installer with the best file compression available anywhere.
  46.  
  47. ENJOY!
  48.  
  49. Michael J. Prestwich,
  50. President,
  51. ImagiSOFT, Inc.
  52.  
  53.  
  54. June 10, 1992
  55.  
  56. Today we implemented two minor changes:
  57.  
  58.   1)  DR DOS was displaying the CRC values during the UNPACK command which
  59.       caused an annoying scroll on the screen.  This problem was corrected.
  60.  
  61.   2)  A new user needed a SET.BUFFERS command similar SET.FILES so we added
  62.       it.  It works exactly the same way as SET.FILES command does; see the
  63.       documentation for details.
  64.  
  65.  
  66. June 15, 1992
  67.  
  68. Today we added several new commands:
  69.  
  70. PROMPT On/Off turns windows on or off for the COPY, DELETE, DISK, and UNPACK
  71. commands.  This is easier than "hiding" windows by making them the same color
  72. as the background as explained in the documentation.
  73.  
  74. PAUSE t
  75. Pause for t hundredths of a second.  Nice if you want to "animate" windows.
  76.  
  77. WINMOVE x y
  78. Moves the current window the new x y position.  If you use the command
  79. WINMOVE +1 +1 it will move the current window relative to its current position
  80. one row down and one row across.
  81.  
  82. BORDER t
  83.    t = type   0 = none
  84.               1 = single line (default)
  85.               2 = double line
  86.  
  87. WINUPDATE x y c
  88.           x position on the screen
  89.           y position on the screen
  90.           c color value
  91.  
  92. Use WINUPDATE to display a string inside the current open window. For example:
  93.   WINUPDATE +2 +1 79
  94.   "This line is displayed in the current"
  95.   "window with white letters on a red"
  96.   "background.  It is relative to the"
  97.   "upper left corner by 2 characters across"
  98.   "and 1 row down."
  99.  
  100.  
  101. Relative Cursor / Window Positions
  102.  
  103. WINOPEN now supports relative cursor positions.  For example, WINOPEN +0 +5 17
  104. will open a new window 5 rows down from the last window open. Relative
  105. positioning also works in the UNPACK, PATH, DRIVE, ASK, COPY, DELETE, WINMOVE,
  106. and WINUPDATE commands.
  107.  
  108. Relative cursor positioning is especially useful when you are printing the
  109. selected DRIVE and PATH on the screen with the variables ~1 and ~2.
  110. For example:
  111.  
  112. WINOPEN 0 0 79                                           ' red centered window
  113. "The directory ~1~2 already exists and contains files!"
  114. "Are you SURE you want to install your software in"
  115. "this directory    Y / N?"
  116. ASK +26 +3                                               ' position cursor on
  117.                                                          ' the N character
  118.                                                          ' no matter how the
  119.                                                          ' window is centered
  120.  
  121.