home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / dtp / thumbnail / !ReadThis next >
Encoding:
Text File  |  1994-09-13  |  6.4 KB  |  193 lines

  1. This is !Executor, the playback only version of !Keystroke. It has been
  2. supplied to demonstrate some of the abilities of !Keystroke.
  3.  
  4. © Quantum Software 1992,1993,1994 Not to be sold, altered in any way.
  5.  
  6.  
  7. WHAT DOES IT DO? 
  8. ---------------- 
  9. This application has the ability to produce from a directory of JPEG¹ or
  10. TIFF¹ files a multi-sprite file. In effect making a !Paint 'thumbnail' file!
  11. These thumbnail sprite files are very useful for displaying your bit-map
  12. images quickly and whilst not being as good as professional thumbnail
  13. applications, those programs cost money and because !Paint and this copy of
  14. !Executor comes free this is an definite advantage!
  15.  
  16.  
  17. WHAT IS REQUIRED?
  18. -----------------
  19. Risc OS 3.1 or higher.
  20. A copy of !ChangeFSI (ideally v0.95, but v0.90 will also work. See note²).
  21. Every Acorn Risc OS machine is supplied with a copy of !ChangeFSI.
  22.  
  23. **(We suggest copying !Executor out of the Archive file before running!)**
  24. Load !Executor onto the Icon bar and make sure !ChangeFSI has been seen by the Filer.
  25.  
  26. Display any Filer directory which should JUST contain JPEG¹ or TIFF¹ files.
  27. See note¹ below.
  28.  
  29.  
  30. WHAT WILL HAPPEN?
  31. -----------------
  32. When the process is started !Executor will make sure that !Paint and
  33. !ChangeFSI are loaded, if not then it will load them both. If !ChangeFSI can
  34. not be found you will  have to locate a copy of it and display it in a Filer
  35. window and try again.
  36.  
  37. !Executor will then make sure that the Filer display is set to 'Large icons'
  38. and move the directory of your choice to the left hand side of the screen
  39. and resize it. It will also open up a empty !Paint window and attempt to
  40. load (one at a time) the various files into !ChangeFSI by double clicking on
  41. them. It will then find out the current height & width of the loaded image
  42. and resize it to a small fixed width of 100 pixels, but keeping the same
  43. aspect ratio.
  44.  
  45. !Executor will then transfer the image to !Paint and rename it back to it's
  46. original filename. !Executor will repeatingly do all this until every image
  47. within the directory is done. Then it will save this multi-sprite file
  48. within the directory as 'ZQuicklook'.
  49.  
  50. A finished banner will pop up to let you know when it is finished.
  51.   
  52.  
  53. HOW TO START IT OFF?
  54. --------------------
  55. Position the mouse pointer over a Filer directory containing the images and
  56. press 'Alt Q' to start! We have supplied a sample directory on the
  57. demonstration disc for you.
  58.  
  59. HOW TO ABORT THE PROCESS
  60. ------------------------
  61. The process may be aborted by holding the 'Escape' key down. Note: If the
  62. hourglass is on, then the process can not be aborted until the hourglass has
  63. gone (This is !ChangeFSI working).
  64.  
  65.  
  66. CAN I MAKE THE SPRITE IMAGES 16 OR 256 COLOURS?
  67. -----------------------------------------------
  68. Simply choose 'Alt Q' for creating 256 colour sprites or 'Alt W' for 16
  69. colour sprites. ('Alt E' will create 256 greyscale (monochrome) sprites and
  70. 'Alt R' will create 16 greyscale (monochrome) sprites if you are using v0.95
  71. of !ChangeFSI.)
  72.  
  73.  
  74.  
  75. CAN I MAKE THE PROCESS WORK FASTER?
  76. -----------------------------------
  77. Mmm... The limitation is the speed at which !ChangeFSI will convert the
  78. images. Try putting on the 'FAST' option of !ChangeFSI, this will blank the
  79. screen, but it will speeds things up a little. Colour cards or Risc PC
  80. owners need not bother as you will get very little speed increase. Remember
  81. this utility did not cost you anything!
  82.  
  83.  
  84.  
  85. note¹
  86. HOW DO I MAKE IT DO THE SAME FOR GIF OR BMP FILES?
  87. --------------------------------------------------
  88. Good question.
  89. In order for all this to work correctly, a double click on the image file
  90. must load into !ChangeFSI without it loading another copy of its self.
  91. !ChangeFSI v0.90 will only do this with TIFF files. v0.95 will only do JPEG
  92. or TIFF files.
  93.  
  94. If you want to improve things, a little 'painless' editing work is necessary
  95. to make it do better. (Please do NOT use your master copy of !ChangeFSI in
  96. case you make a mistake, use a copy of !ChangeFSI)
  97.  
  98. Open up the !ChangeFSI application and you will see a blue BASIC file called
  99. 'ChangeFSI'. Load this into !Edit and look for a line starting:
  100.  
  101. (!ChangeFSI v0.90 line looks like this)
  102.  
  103. WHEN &ff0 
  104.  
  105. or
  106.  
  107. (!ChangeFSI v0.95 line looks like this)
  108.  
  109. WHEN &ff0,&c85
  110.  
  111. change this one line so it reads:
  112.  
  113. WHEN &ff0,&C85,&695,&69C
  114.  
  115. ff0 is a TIFF file, c85 is a JPEG file, 695 is a GIF file, 69C is a BMP file.
  116.  
  117. Now resave this BASIC file.
  118.  
  119.  
  120. Load !ChangeFSI's !Run file into !Edit and you will see a line:
  121.  
  122. Set File$Type_FF0 TIFF
  123.  
  124. just under this line type in the following three lines:
  125.  
  126. Set Alias$@RunType_C85 Run <Obey$Dir>.!Run %%*0
  127. Set Alias$@RunType_695 Run <Obey$Dir>.!Run %%*0
  128. Set Alias$@RunType_69C Run <Obey$Dir>.!Run %%*0
  129.  
  130. If you have v0.95 of !ChangeFSI then the first line will already be there!
  131.  
  132. Save the !Run file and that's it!!
  133.  
  134. (All you have done is to make !ChangeFSI load in a JPEG, GIF or BMP file
  135. automatically when one of these files are double clicked upon!) Why Acorn
  136. did not do this themselves is a complete mystery!
  137.  
  138. If you want to do this for other image types, simply add their filetype to
  139. the above lines when you edit the 'ChangeFSI' and '!Run' files!  (You can
  140. not do this with sprites files I'm afraid as Sprite files will always load
  141. into !Paint).
  142.  
  143.  
  144.  
  145. Additional notes:
  146.  
  147. note²
  148. v0.90 is a lot slower than v0.95 and will not keep the correct aspect ratio
  149. as it lacks this ability. v0.95 does keep the aspect ratio correct. (v0.95
  150. works perfectly well on Risc OS 3.10+ assuming you have the latest Colours
  151. module v0.52 or better).
  152.  
  153.  
  154.  
  155.  
  156.  
  157. KEYSTROKE V3 USERS
  158. ------------------
  159.  
  160. Lucky v3 owners of !Keystroke will be interested to know that the first two actions of Alt Q are:
  161.  
  162. 1)
  163. *Command
  164. Set viewsize 100
  165. You may wish to make this number bigger so that the resultant sprites are
  166. larger, this means that the finished 'ZQuicklook' image file will be bigger,
  167. but more detail will be present when you view an individual sprite. Making
  168. it smaller will not help much as a value of 90-100 makes for a maximum
  169. display size when viewing them all at once.
  170.  
  171. 2)
  172. *Command
  173. Set finalname ZQuicklook
  174. If you do not like the choosen saved name you may change it here.
  175.  
  176. If you want to change the START keys, feel free! A quick 'Cut Group'
  177. followed by the usual methods to select another key and pasting should be
  178. OK.
  179.  
  180. Do NOT press 'Alt Shift Keypad -', 'Alt Shift Keypad Enter' or 'Alt Shift
  181. Keypad +' as these perform the hard work!
  182.  
  183. © Quantum Software 1992, 1993, 1994
  184.  
  185. QUANTUM SOFTWARE
  186. 35 PINEWOOD PARK
  187. LIVINGSTON
  188. EH54 8NN
  189. SCOTLAND
  190. PHONE (44) 01506 411162
  191.  
  192.  
  193.