home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 049 / qf30s.zip / QFREADME < prev    next >
Text File  |  1994-09-20  |  4KB  |  135 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 TSESTART.S  and add the line ExecMacro("QF") in the main()
  35.      procedure.  For instance:
  36.                      proc main()
  37.                           ExecMacro("QF")
  38.                      end main
  39.  
  40.    - CHOICE 2:
  41.      
  42.      Edit TSE.S (or your own configuration file), search
  43.      for "proc WhenLoaded()" and add the line ExecMacro("QF") just before
  44.      the end of the procedure.  For instance:
  45.  
  46.         proc WhenLoaded()
  47.             integer cid = GetBufferId()
  48.  
  49.             pick_buffer = CreateTempBuffer()
  50.             GotoBufferId(cid)
  51.             Hook(_ON_CHANGING_FILES_, OnChangingFiles)
  52.             Hook(_ON_FIRST_EDIT_, OnFirstEdit)
  53.             ExecMacro("QF")   <--- *** ADD THIS LINE ***
  54.         end
  55.  
  56.       If you choose this route, remember to re-burn your editor in with
  57.       the SC -b[Executable] TSE (or your configuration file).   Here's
  58.       our line, as an example:
  59.  
  60.           SC -bE TSE
  61.  
  62.    - CHOICE 3:
  63.  
  64.      Load QF from your command line using TSE's "-e"
  65.      command-line option.  For example:
  66.  
  67.         E test.prg -eQF
  68.  
  69.      You can put this inside a batch file to have TSE always load
  70.      the Quiet Flight macros.
  71.  
  72.      This method does not work as well as changing your TSE.MAC
  73.      file because of the way TSE handles macros executed from the
  74.      command line (it includes the macro file as one of the files to
  75.      edit).
  76.  
  77.      **  Special Note **
  78.      
  79.      Please do not use TSE's AUTOLOAD to initialize QF.
  80.      
  81. To load QF from inside the editor:
  82.  
  83.    Access the Macro/Execute menu or press the key assigned to the
  84.    MacMenu() (the default is F12).  Then enter "QF" for the macro to
  85.    execute.
  86.  
  87. BEGIN REGISTERED USERS ONLY:
  88. The source code has been included.  So, you can change the key
  89. assignments to your own preferences.  You'll find the QF key definitions
  90. in QFKEY.INC.  When you modify the key definitions, don't forget to
  91. modify your menu listings in QFMENU.INC.  After any changes you make to
  92. these two files, make sure you recompile QF.S to update the macros.  To
  93. recompile, type in SC QF.S at the DOS prompt.
  94.  
  95. Remember: To compile your QF macros, we've included a simple batch file
  96. called QFCOMP.BAT.  To recompile your QF macros, change to the
  97. sub-directory where your QF macros are and type in: QFCOMP
  98.  
  99. END OF REGISTERED USERS ONLY:
  100.  
  101. BEGIN UNREGISTERED USERS ONLY:
  102.  
  103. If you have downloaded Quiet Flight from a BBS or obtained it from
  104. a friend, then you are using an UNREGISTERED version of Quiet
  105. Flight which is intended for evaluation purposes only.
  106.  
  107. Registering Quiet Flight entitles you to these benefits:
  108.  
  109.    - Full source code for all of the Quiet Flight macros written in
  110.      SAL (SemWare Application Language).
  111.  
  112.    - Ability to change key definitions for Quiet Flight functions.
  113.  
  114.    - Technical support via e-mail or telephone
  115.    
  116.    - Updates and Additional Macros.
  117.  
  118. Quiet Flight sells for $49.95 + $10 S/H.  
  119.  
  120. To register, print out the QFREG.TXT, fill it in and send it in. 
  121. Satisfaction is guaranteed, we have a 120 day return policy. 
  122.  
  123. END OF UNREGISTERED USERS ONLY:
  124.  
  125. ** Three Keys to Remember:
  126.    Alt \ will toggle Quiet Flight On and Off.
  127.    Alt / will bring up a menu for the Quiet Flight macros.
  128.    Ctrl F1 will bring up a list of your keyword expansion 
  129.    for the current file you are editing.
  130.  
  131.  
  132. Thank you for your support.
  133.  
  134. Randy Wallin and Ryan Katri.
  135.