home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 125.lha / View.doc < prev    next >
Text File  |  1986-11-20  |  3KB  |  78 lines

  1. VIEW Documentation
  2. ==================
  3.  
  4. IFF (ILBM) Picture VIEWer 1.0 - January 1, 1988
  5. (C) Copyright 1987 Mark Riley, All Rights Reserved.
  6.  
  7. VIEW is a *small* utility for displaying IFF pictures.  Now, I realize that
  8. there are plenty of IFF viewers out there already, but I thought that this
  9. one would be of interest because of its small size (only 600 bytes.)  There's
  10. no fancy anything in VIEW, since it is optimized for size.  This means no
  11. error messages or built in usage facilities.  Thus, VIEW is the smallest,
  12. tiniest, dirtiest IFF picture VIEWer in town (until some tall dark stranger
  13. comes up and blows it away... ;-)  If you haven't guessed already, VIEW
  14. is written in assembly language.
  15.  
  16. I'd like to thank Andry Rachmat for posting USHOW 2.0; there were some neat
  17. tricks for optimizing in it.  No doubt VIEW can probably be squeezed in size
  18. further, but I thought I'd release it and see what someone else can come
  19. up with.
  20.  
  21. Feel free to redistribute VIEW (for non commercial purposes only.)  If there
  22. are any questions or problems, I can be reached at the following services:
  23.  
  24. PLINK: SONIX - BIX: mriley
  25.  
  26. Happy VIEWing....  ;-)  -Mark-
  27.  
  28. P.S.  I'll be uploading a more robust version of VIEW that'll interact with
  29.       PLAY (my Sonix score player) and allow people to easily put together
  30.       really polished looking slide shows w/music.  Look for it at a BBS
  31.       near you!
  32.  
  33.  
  34. VIEWing Pictures
  35. ================
  36.  
  37. VIEW is simple to use.  You may want to install it into your "c:" directory
  38. before you use it though.  This way it'll be there no matter which directory
  39. you move to.
  40.  
  41. Usage: VIEW picture
  42.  
  43. Don't use quotes when typing the picture name, even if there are spaces.
  44. This is because there is no command line parser in VIEW (optimization), so
  45. what you type is what you get (I think it's actually easier.)  If VIEW has
  46. any problem displaying the picture, it'll just exit, no error message, no
  47. nothing (sacrifice for optimization.)
  48.  
  49. Once the picture is up, you can use the usual invisible screen drag and
  50. front/back gadgets to manipulate it.
  51.  
  52. To quit a picture, just type Ctrl-C.  The CLI from which you issued the
  53. VIEW command must be active in order for Ctrl-C to work (this is the case
  54. if you don't go roaming around to other screens while VIEWing.)  Otherwise
  55. just click in the CLI window and do a Ctrl-C.
  56.  
  57. If you "run" view then issue a "break" to the process number you ran it as.
  58. Here's an example:
  59.  
  60. 1> run view nagel
  61. [CLI 2]
  62. 1> break 2
  63. 1>
  64.  
  65. Being able to run VIEW, makes it a natural in execute files (slide shows)
  66. since you can quit it remotely with a break command:
  67.  
  68. 1> type slideshow
  69. run >nil: view nagel
  70. wait 10
  71. break 2
  72. run >nil: view nagel2
  73. wait 10
  74. break 2
  75. 1> execute slideshow
  76. 1>
  77.  
  78.