home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-Update.iso / CDROM / Contents / READMEs / Peanuts-3 / Tools / screen / backspace / old / MovieShowView.README < prev    next >
Encoding:
Text File  |  1996-11-09  |  2.4 KB  |  60 lines

  1. -------------------------------------------------------------------
  2. MovieShow 1.1 - A BackSpace module which shows TIFF movies
  3. -------------------------------------------------------------------
  4.  
  5. Hacked by Paul Burchard <burchard@math.utah.edu> from
  6. Bill Carson's SlideShow module (see its README for more history).
  7. Thanks to Sam Streeper for corrections!
  8.  
  9. NOTES:
  10.  
  11. This module displays movies in screensavers which accept BackSpace modules.  The movies must be in ".anim" format, that is, a folder named NAME.anim (where NAME can be anything) containing TIFF frames, named in display order as:
  12.  
  13.     NAME.anim/NAME.1.tiff
  14.     NAME.anim/NAME.2.tiff
  15.     ...etc...
  16.  
  17. Until NeXTstep 3.0, you'll need to use the dwrite command to select a movie (as described below).
  18.  
  19. If you like the enclosed weather movie, you can make your own up-to-date weather movies using WAIStation.app (also available from the FTP archives).  Get "weather.src" source from "directory-of-servers.src" by asking about "weather", then ask "weather.src" for "gif".  When you retrieve the GIF files, they'll open in ImageViewer, which lets you save them as TIFF files.
  20.  
  21.  
  22. INSTALLATION:
  23.  
  24.  
  25. 1. Move "MovieShowView.o" into the Backspace application folder, and "Weather-920515.anim" to your Images folder.  E.g.:
  26.  
  27.     mv MovieShowView.o /LocalApps/Backspace.app
  28.     mv Weather-920515.anim ~/Library/Images
  29.  
  30. You can recompile first if you wish, using the supplied Makefile.
  31.  
  32.  
  33. 2. Set prefs as desired using the dwrite command.  (You need to restart the screensaver for any changes to take effect.)  Here are the default values:
  34.  
  35.     dwrite MovieShow Movie       ~/Library/Images/Weather-920515.anim
  36.     
  37.         dwrite MovieShow FrameTime   5
  38.     dwrite MovieShow BeginPause  12
  39.     dwrite MovieShow EndPause    30
  40.     dwrite MovieShow DarkTime    0
  41.     
  42.     dwrite MovieShow Jump        YES
  43.         dwrite MovieShow SlideFrames NO
  44.     dwrite MovieShow SlidePauses NO
  45.     
  46.     dwrite MovieShow TimeUnit    25
  47.  
  48. FrameTime = all movie frames held this many time units
  49. BeginPause = extra time units to hold first frame
  50. EndPause = extra time units to hold last frame
  51. DarkTime = time units between movie runs, when screen is completely dark
  52.  
  53. Jump = do you want movie to start at random new location each time it runs?
  54. SlideFrames = do you want movie to slide on screen as it is running?
  55. SlidePauses = do you want picture to slide while movie pauses at begin/end?
  56.  
  57. TimeUnit = number of program loops to count as one time unit; don't make this
  58.     too big or sliding will be jerky
  59.  
  60.