home *** CD-ROM | disk | FTP | other *** search
/ AMIGA PD 1 / AMIGA-PD-1.iso / Programme_zum_Heft / Anwendungen / Kurztests / Spot / FAQ next >
Text File  |  1994-08-14  |  4KB  |  100 lines

  1.  
  2.   ---------------------------------------------------------------------------
  3.                                 EYAWTKASAWATA
  4.   (Everything You Always Wanted To Know About Spot And Weren't Afraid To Ask)
  5.  
  6.                                      aka
  7.  
  8.                                   Spot FAQ
  9.  
  10.                         $VER: Spot_FAQ 1.1 (13.8.93)
  11.   ---------------------------------------------------------------------------
  12.  
  13.  
  14.   Q. When I switch 'Check Date' on my editor comes up when I write a
  15.      message, but after saving and quitting it Spot does not put up
  16.      the message header window.  What's wrong ?
  17.  
  18.   A. When you use the 'Check Date' feature you must make sure your
  19.      editor does _not_ run asynchronously.  Otherwise the editor is
  20.      launched in the background and Spot will immediately check the date
  21.      on the temporary file it uses.  As this file won't have changed (you
  22.      haven't had the chance to do anything yet) Spot will abort the
  23.      message writing.  Your editor will still be in front allowing you
  24.      to write or edit a message that will never be used, making the
  25.      whole problem very confusing.
  26.  
  27.   Q. I am a CED 3.5 user and I like to use the 'Check Date' feature.  But
  28.      /sometimes/ it doesn't work.
  29.  
  30.   A. There is a bug in ED 3.5 the CED launcher.  If CED is not running in
  31.      the background already (Hot-Start enabled on) it will ignore the -s
  32.      or -sticky flag.  Use this small script to circumvent the problem:
  33.  
  34.      --- cut ---
  35.      /* Small script to invoke Ced 3.5 from Spot */
  36.  
  37.      /* This script is needed since there is a bug in 
  38.         Ced 3.5 invoker (Ed): it ignores the '-s' flag
  39.         when Ced was not running yet. */
  40.  
  41.      parse arg file .
  42.      if ~show('p','rexx_ced') then do
  43.         address command 'C:CEd -r'
  44.         address command 'WaitForPort rexx_ced'
  45.         end
  46.      address command 'C:Ed' file '-s'
  47.      --- cut ---
  48.  
  49.   Q. When I press the Help key there is some disk activity, but Spot's
  50.      guide does not appear.  I am however sure the guide file is in
  51.      the same directory as Spot or in the AmigaGuide guide path.
  52.      What is happening ?
  53.  
  54.   A. You are using a buggy version of amigaguide.library.  Make sure
  55.      you use at least version 34.6 of the library.
  56.  
  57.   Q. When I perform a maintenance lots of messages get deleted.  But when
  58.      I look at my Spot area files I see they are still just as large as
  59.      before the maintenance.  Is this a bug ?
  60.  
  61.   A. No.  When you delete files on your harddisk, does your harddisk get
  62.      smaller ?
  63.      When Spot deletes a message from an area it leaves some free space,
  64.      the file size remains the same.  When you consequently write or
  65.      import a new message Spot  will reuse this free space.  The optimize
  66.      function will make Spot reorganize all areas and will free as much
  67.      diskspace as possible.  It is advised you optimize regularly.
  68.  
  69.   Q. Why don't the extensions (.mo1, .sa4,...) on the outbound packets
  70.      correspond to today ?
  71.  
  72.   A. Although a mail bundle might seem to be named by the weekday, it has
  73.      absolutely nothing at all to do with the day of the week.  The real
  74.      date is contained within the packet header(s) inside the bundle.
  75.      The extension is simply used to keep each bundle uniquely named.
  76.  
  77.   Q. Very often Spot's wait pointer does not change back to the normal
  78.      mouse pointer image.  What's happening ?
  79.  
  80.   A. You are most probably running QMouse.  There is an incompatibility
  81.      between Spot and QMouse (probably because Spot uses new Kickstart 3.0
  82.      pointer functions).  Disabling QMouse's mouseblank feature reportedly
  83.      fixes this problem (MBLANK parameter).
  84.  
  85.   Q. When I try to use an AmigaDOS or ARexx script in place of the command
  86.      to unpack my mail bundles Spot freezes just before the unpacking
  87.      should occur.  Is this a bug ?
  88.  
  89.   A. Yes, this is a bug, but not in Spot.  It turned out this problem is
  90.      the result of a bug in the RAW: and CON: devices.  Luckily there is a
  91.      workaround.  Simply redirect both input and output of the script to
  92.      NIL:.  So use "Execute >NIL: <NIL: script" to run your script.
  93.      Don't worry, the output of the commands in the script _will_ still
  94.      appear in Spot's console window.
  95.  
  96.   Q. When will the next version of Spot be released ?
  97.  
  98.   A. 42
  99.  
  100.