home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR8 / QF22S.ZIP / QFREADME < prev    next >
Text File  |  1993-08-08  |  4KB  |  129 lines

  1. Welcome to the Quiet Flight Macros for TSE.
  2.  
  3. INSTALLATION
  4. ────────────
  5.  
  6. Copy the QF macro files into your TSE macros sub-directory.  Don't worry,
  7. all of our macros start with the letters QF, so you'll be able to
  8. quickly uninstall them with a DEL QF*.*.
  9.  
  10. ** IMPORTANT **
  11. Please set a DOS ENVIRONMENT variable, QFPATH, to your TSE
  12. macros subdirectory.  This is essential for proper
  13. operation.
  14.  
  15. In your autoexec.bat, insert a line like this:
  16.  
  17. SET QFPATH=[Your TSE macro sub-directory]
  18.  
  19. For instance, since our TSE macros are located in C:\TSE\MAC, our
  20. autoexec has:
  21.  
  22. SET QFPATH=C:\TSE\MAC
  23.  
  24. You can also type in the QFPATH from the DOS prompt too.  Just type in
  25. what you would have inserted in the Autoexec.bat.
  26.  
  27. ** ANOTHER IMPORTANT! **
  28. Copy two files, QFX.EXE and QFDBF.COM, to the TSE macros sub-directory.
  29.  
  30. To have the QF macros to start up automatically, you have 2 choices:
  31.  
  32.    - CHOICE 1:
  33.  
  34.      Edit TSE.S (or your own configuration file), search
  35.      for "proc WhenLoaded()" and add the line ExecMacro("QF") just before
  36.      the end of the procedure.  For instance:
  37.  
  38.         proc WhenLoaded()
  39.             integer cid = GetBufferId()
  40.  
  41.             pick_buffer = CreateTempBuffer()
  42.             GotoBufferId(cid)
  43.             Hook(_ON_CHANGING_FILES_, OnChangingFiles)
  44.             Hook(_ON_FIRST_EDIT_, OnFirstEdit)
  45.             ExecMacro("QF")   <--- *** ADD THIS LINE ***
  46.         end
  47.  
  48.       If you choose this route, remember to re-burn your editor in with
  49.       the SC -b[Executable] TSE (or your configuration file).   Here's
  50.       our line, as an example:
  51.  
  52.           SC -bE TSE
  53.  
  54.    - CHOICE 2:
  55.  
  56.      Load QF from your command line using TSE's "-e"
  57.      command-line option.  For example:
  58.  
  59.         E test.prg -eQF
  60.  
  61.      You can put this inside a batch file to have TSE always load
  62.      the Quiet Flight macros.
  63.  
  64.      This method does not work as well as changing your TSE.MAC
  65.      file because of the way TSE handles macros executed from the
  66.      command line (it includes the macro file as one of the files to
  67.      edit).
  68.  
  69.  
  70. To load QF from inside the editor:
  71.  
  72.    Access the Macro/Execute menu or press the key assigned to the
  73.    MacMenu() (the default is F12).  Then enter "QF" for the macro to
  74.    execute.
  75.  
  76. BEGIN REGISTERED USERS ONLY:
  77. The source code has been included.  So, you can change the key
  78. assignments to your own preferences.  You'll find the QF key definitions
  79. in QFKEY.INC.  When you modify the key definitions, don't forget to
  80. modify your menu listings in QFMENU.INC.  After any changes you make to
  81. these two files, make sure you recompile QF.S to update the macros.  To
  82. recompile, type in SC QF.S at the DOS prompt.
  83.  
  84. Remember: To compile your QF macros, we've included a simple batch file
  85. called QFCOMP.BAT.  To recompile your QF macros, change to the
  86. sub-directory where your QF macros are and type in: QFCOMP
  87.  
  88. END OF REGISTERED USERS ONLY:
  89.  
  90. BEGIN UNREGISTERED USERS ONLY:
  91.  
  92. If you have downloaded Quiet Flight from a BBS or obtained it from
  93. a friend, then you are using an UNREGISTERED version of Quiet
  94. Flight which is intended for evaluation purposes only.
  95.  
  96. Registering Quiet Flight entitles you to these benefits:
  97.  
  98.    - Full source code for all of the Quiet Flight macros written in
  99.      SAL (SemWare Application Language).
  100.  
  101.    - Ability to change key definitions for Quiet Flight functions.
  102.  
  103.    - Technical support via e-mail or telephone
  104.    
  105.    - Updates and Additional Macros.
  106.  
  107. Quiet Flight sells for $49.95 + $10 S/H.  
  108.  
  109. Also, until the full release of the SEMWARE EDITOR, we offer these
  110. additional discounts.  If you are a registered user of BRIEF you will 
  111. receive $10 off.  If you are a registered user of dBRIEF or Quiet Flight 
  112. for BRIEF, you may receive an additional $10 off.
  113.  
  114. To register, print out the QFREG.TXT, fill it in and send it in. 
  115. Satisfaction is guaranteed, we have a 120 day return policy. 
  116.  
  117. END OF UNREGISTERED USERS ONLY:
  118.  
  119. ** Three Keys to Remember:
  120.    Alt \ will toggle Quiet Flight On and Off.
  121.    Alt / will bring up a menu for the Quiet Flight macros.
  122.    Ctrl F1 will bring up a list of your keyword expansion 
  123.    for the current file you are editing.
  124.  
  125.  
  126. Thank you for your support.
  127.  
  128. Randy Wallin and Ryan Katri.
  129.