home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 2: PC / frozenfish_august_1995.bin / bbs / d07xx / d0727.lha / 2View / ARexx.doc < prev    next >
Text File  |  1992-09-04  |  2KB  |  82 lines

  1.  
  2.      2View's ARexx port name depends on the number of copies of 2View that
  3. are currently running.    The first copy of 2View has the ARexx port
  4. '2View.1', the second, '2View.2', etc. up to '2View.99'
  5.  
  6. 'quit'
  7.  - Quit 2View (same as pressing the right mouse button)
  8.  
  9. 'advance'
  10.  - Advance to the next picture in the sequence, or quit if we're at the end
  11.    of a non-looping sequence (same as pressing the left mouse button)
  12.  
  13. 'get width'
  14.  - Get the width of the current picture
  15.  
  16. 'get height'
  17.  - Get the height of the current picture
  18.  
  19. 'get depth'
  20.  - Get the number of bitplanes in the current picture
  21.  
  22. 'get viewmodes'
  23.  - Get a 32-bit hex number that describes the viewmodes (HAM, HIRES, etc.)
  24.    of the current picture (this is the same as the Screen.ViewModes flag)
  25.  
  26. 'get timeleft'
  27.  - Get the time left to display the current picture, in ticks.    If the
  28.    user didn't specify a time on the command line, this returns zero.
  29.  
  30. 'get timeperpicture'
  31.  - Get the time each picture is to be displayed, in ticks.  If the user
  32.    didn't specify a time on the command line, this returns zero.
  33.  
  34. 'get version'
  35.  - Get a string giving the current version and release date of 2View
  36.  
  37. 'get playlistname'
  38.  - Get the name of the current playlist, or '?NONE?' if no playlist is
  39.    being used
  40.  
  41. 'get looping'
  42.  - Returns 'TRUE' if the user specified the 'loop' flag, 'FALSE' if not
  43.  
  44. 'get printpictures'
  45.  - Returns 'TRUE' if the user specified the 'print' flag, 'FALSE' if not
  46.  
  47. 'get specialmodes'
  48.  - If the current picture is a SHAM image, this returns SHAM.  If it is a
  49.    MacroPaint image, it returns MACROPAINT.  If the picture is neither SHAM
  50.    nor MacroPaint image, this returns NONE.
  51.  
  52. 'get cyclerate'
  53.  - Gets the rate at which the colors in the current picture are cycling
  54.    (the rate being the number of 1/60ths of a second between each step in
  55.    the cycling).  If no colors are cycling, this returns -VOID-
  56.  
  57. 'get cycling'
  58.  - If colors are cycling in the current picture, this returns CYCLING.    If
  59.    colors were cycling, but were stopped by the user or an ARexx macro,
  60.    this returns CYCLINGPAUSED.    If there is no color cycling associated
  61.    with the current picture, this returns NOCYCLING.
  62.  
  63. 'pictoback'
  64.  - Send the current picture to the back
  65.  
  66. 'pictofront'
  67.  - Send the current picture to the front
  68.  
  69. 'print'
  70.  - Print the current picture
  71.  
  72. 'cycle on'
  73.  - Turn on color cycling if possible.
  74.  
  75. 'cycle off'
  76.  - Turn off color cycling, if possible.
  77.  
  78. 'cycle toggle'
  79.  - Toggle color cycling on or off, if possible.
  80.  
  81.  
  82.