home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff274.lzh / SlideMaster / Slide.doc < prev    next >
Text File  |  1989-11-16  |  2KB  |  84 lines

  1. *****************************************************************************
  2. * Instructions for SlideMaster version 0.1            Oct 24 1989 *
  3. *****************************************************************************
  4.  
  5.   SlideMaster can be run from the CLI or the workbench:
  6.  
  7.     From the CLI:  SlideMaster0.1 +[time] -[wipe] FileName .......
  8.              Displays picture FileName for [time] seconds, using the
  9.              [wipe] transition for this picture.  Default time is 5
  10.              seconds, default wipes are random.  A '!' at the end
  11.              makes it repeat in a loop.  Pressing a key or mouse
  12.              button will exit show.
  13.  
  14.            SlideMaster0.1
  15.              SlideMaster loads and becomes an ARexx host.
  16.              It will open a public port named 'SMASTER' and wait for
  17.              commands.
  18.  
  19.     From the Workbench:
  20.            Using extended selection (pressing the shift key) select
  21.            the picture(s) you want to see, then double click on
  22.            SlideMaster0.1.  All the pictures will be shown with 5
  23.            seconds per picture, and a random wipe.  Pressing a key or
  24.            mouse button will exit show.
  25.  
  26.            Double click on SlideMaster.  This loads SlideMaster as
  27.            an ARexx host with a public port named 'SMASTER'
  28.  
  29.  
  30.   Using the wipes:
  31.     From the CLI:
  32.       The wipes are:
  33.     l   = Left
  34.     r   = Right
  35.     u   = Up
  36.     d   = Down
  37.     h2c = Horizontal To Center
  38.     hfc = Horizontal From Center
  39.     v2c = Vertical To Center
  40.     vfc = Vertical From Center
  41.  
  42.     For example:
  43.       SlideMaster0.1 +7 -hfc df0:Lauran
  44.  
  45.     From ARexx:
  46.       The first thing you need to do is specify the host (SlideMaster):
  47.  
  48.     shell 'SMASTER'
  49.       or:
  50.     address 'SMASTER'
  51.  
  52.       To load a picture:
  53.  
  54.     loadpic <name>
  55.  
  56.       This does not display it, however
  57.  
  58.       Displaying the picture with a wipe:
  59.  
  60.     wipe <motion>
  61.  
  62.     The Possible motions are:
  63.  
  64.       Left
  65.       Right
  66.       Up
  67.       Down
  68.       HorizToCenter
  69.       HorizFromCenter
  70.       VertToCenter
  71.       VertFromCenter
  72.  
  73.       Quiting SlideMaster:
  74.  
  75.     close
  76.  
  77.     This will cause SlideMaster to close its port and exit.
  78.  
  79.       Of course, before we can do any of this, SlideMaster must have been
  80.       loaded as an ARexx host (see above).
  81.  
  82.       See 'Slide.REXX' for a complete example.
  83.  
  84.