home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 515.lha / BackTalk_v1.40 / FRQLIB.LZH / FR_Bypass.DOC < prev    next >
Text File  |  1991-05-11  |  5KB  |  148 lines

  1.  ---------------------
  2. |   FR Bypass 3.00    |
  3. |                     |
  4. | By: Khalid Aldoseri |
  5.  ---------------------
  6.  
  7. FR_Bypass allows the file requester in 'kd_freq.library' to be used with
  8. many programs that use other file requesters in libraries.
  9.  
  10. FR_Bypass will replace the file requesters in the following libraries:
  11.  
  12.   arp.library  The ARP file requester.
  13.   req.library  The file requester that comes with CED Pro 2.
  14.   asl.library  The standard file requester in AmigaDOS 2.0 and above.
  15.  
  16. Once the bypass is installed, every time a program calls any of the above
  17. file requesters, mine will come up instead!
  18.  
  19.  
  20. Installation:
  21. -------------
  22.  
  23. Copy FR_Bypass to your C: directory, and add it to your startup-sequence.
  24.  
  25. A window will come up informing you of the success of its installation.
  26. If it says 'Installation failed' then 'kd_freq.library' wasn't in the
  27. LIBS: directory.  Otherwise it will report the libraries found and bypassed.
  28. This can be something like this:
  29.  
  30.     'Installed: ARP REQ ASL Injector'
  31.  
  32. It will not allow you to run multiple copies of itself. You can quit it at
  33. any time by hitting 'right shift-right alt-q'.
  34.  
  35.  
  36. Required files:
  37. ---------------
  38.  
  39.  File name              Optional?   Version
  40.  --------------------   ---------   ------------
  41.  LIBS:kd_freq.library   Mandatory   2.0 or above
  42.  LIBS:arp.library       Optional    Any version
  43.  LIBS:asl.library       Optional    Any version
  44.  LIBS:req.library       Optional    Any version
  45.  
  46.  
  47. Startup options:
  48. ----------------
  49.  
  50. You can disable bypassing of a specific library, or disabling the Inject
  51. facility by adding a specific letter to the <options> as follows:
  52.  
  53.     FR_Bypass <options>
  54.  
  55.     FR_Bypass q    Disables req.library bypass.
  56.     FR_Bypass p    Disables arp.library bypass.
  57.     FR_Bypass l    Disables asl.library bypass.
  58.     FR_Bypass i    Disables injector.
  59.     FR_Bypass w    Do not show startup window.
  60.             (error reports will still be shown)
  61.  
  62.  
  63. Options can be grouped by using multiple letters in <options>.  i.e.
  64.  
  65.     FR_Bypass lq    Disables asl.library  & req.library bypass.
  66.  
  67.  
  68.  
  69. Programmer's Note:
  70. ------------------
  71.  
  72. FR_Bypass allows you to code for a standard file requester, like the
  73. asl.library requester, and still allow users access to a high-powered
  74. file requester if they wants one.
  75.  
  76. You do not have to worry about my library at all.  All you need to do
  77. is to code as usual for one of the above libraries and FR_Bypass will
  78. handle the differences in calling procedures between that FR and my FR.
  79.  
  80. e.g.  In the case or ARP, it will trap the normal ARP FR call, read the
  81. ARP FileRequester structure, set the right calling procedure for my FR,
  82. call my FR, return from it, and set the right results in ARP format,
  83. and return the call to your program.  Your program will not know the
  84. difference.  Of course, using this technique has one disadvantage:
  85. You cannot use some special features of my FR, like extended select.
  86.  
  87.  
  88. Limitations:
  89. ------------
  90.  
  91. If the bypass code cannot handle a specific situation, e.g. if the
  92. req.library call is used to bring up a font requester, Bypass will
  93. call the original file requester since my f-r cannot handle this
  94. request reasonably.
  95.  
  96. As of version 3.00, the asl bypass still cannot handle some asl calls
  97. to the asl file requester.  This will be fixed in the next udpate.
  98.  
  99.  
  100. File Injector:
  101. --------------
  102.  
  103. This uses my FR to allow you to select a directory/file at any time and
  104. 'inject' its name into the keyboard stream.
  105.  
  106. To invoke the FR hit the 'right shift-right alt-r' key and the FR will show
  107. up on the front screen.  You then select a file from the requester and click
  108. on OK.
  109.  
  110. After that, you can, at any time, hit the 'right shift-right alt-s' key and
  111. Inject will feed the directory/filename into the keyboard stream.  You can
  112. also feed only the directory name by using the 'right shift-right alt-d' key
  113. or the filename alone by using the 'right shift-right alt-f' key.
  114.  
  115. If the string to be output contains a space then it will be surrounded with
  116. double quotes.
  117.  
  118.  
  119. Summary of functions:  (all keys are with right shift-right alt combo)
  120.  
  121. Key    Action
  122. ---    --------------------------
  123.  r    Call up file requester.
  124.  s    Inject directory+filename.
  125.  d    Inject directory.
  126.  f    Inject filename.
  127.  q    Quit (unload) program.
  128.  
  129.  
  130. Note that the 'q' key still works even if the inject facility is disabled
  131. with the 'FR_Bypass i' command.
  132.  
  133.  
  134.  ---------------------------------------
  135. | Copyright 1990,1991  Khalid Aldoseri. |
  136. |             10 May 1991.              |
  137.  ---------------------------------------
  138.  
  139. CygnusEd Professional & CED are Copyright 1987,1988,1989 CygnusSoft Software.
  140.  
  141. ARP is Copyright 1987,1988,1989 by ARP Authors.
  142.  
  143. Req.library was written by Colin Fox (of Pyramyd Designs) and Bruce Dawson
  144. (of CygnusSoft Software).
  145.  
  146. asl.library comes with AmigaDOS version 2.0 and above.
  147. I believe this is Copyright CBM.
  148.