Home » Archimedes archive » Archimedes World » archimedes_world_volume_15_issue_2_scp.adf » !ARMEdit_ARMEdit » Docs/Banner
Docs/Banner
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Archimedes archive » Archimedes World » archimedes_world_volume_15_issue_2_scp.adf » !ARMEdit_ARMEdit |
Filename: | Docs/Banner |
Read OK: | ✔ |
File size: | 24ED bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
File : Banner Date : 20-Jan-97 Author : � A.Thoukydides, 1995, 1997 Description : Description of the "Banner" application. INTRODUCTION The "Banner" application displays a banner window in the desktop, either for a predetermined length of time or until it is clicked on with the mouse. It is intended to be used while an application is loading, but it may also be used for other purposes. The layout of the window is specified by a templates file, which may include requests for text substitution from an optional messages file. Anti-aliased fonts are fully supported, and sprites are loaded into the application sprite area rather than the shared wimp pool. This application is FreeWare; it may be freely used and copied. However, I retain full copyright. See the section on "LEGAL MATTERS" for more details. USAGE The syntax is: Banner [<time>] [-Messages <messagesfile>] [-Sprites <spritefile>] [-Templates <templatesfile>] where <time> - The time in centi-seconds for which the window should be left open. If no value is specified then the window will remain open until the pointer is clicked on it. A reasonable value is 250 (for 2� seconds). <messagesfile> - The pathname of the messages file to use. The default filename is <Obey$Dir>.Resources.Messages. <spritefile> - The pathname of the sprites file to use. The default filename is <Obey$Dir>.Resources.Sprites. <templatesfile> - The pathname of the templates file to use. The default filename is <Obey$Dir>.Resources.Templates. All of the keywords may be abbreviated to their first letter. The files are used as follows: Messages - A MessageTrans file containing text to replace indirected text only icons with. The text following an "M" command in an icon validation string, up to the next semi-colon or terminator, is used as a token to pass to MessageTrans_Lookup. If a match is found then the icon text is replaced by the specified string, otherwise the icon text is unchanged. This can be used, for example, to display the program version number of licence details. Sprites - A sprite file to be loaded into the application sprite area. The program first checks whether a file more suitable for current mode is present (e.g. Sprites23, Sprites22 etc) using the same rules as for IconSprites. If a high-res monochrome mode is being used then Sprites23 is tried, otherwise the file SpritesXY is tried (where X and Y are the number of OS units per pixel in the two directions). Templates - A wimp template file which must contain a window definition called "banner" to be displayed. Only the Templates file is actually required; the other two are optional. These files can be shared with the main application; in fact it is quite a good idea to do so, e.g. a Version token in the messages file can be used for both the ProgInfo window and the banner. It is up to the user of this program to ensure that it is given a suitably sized wimpslot. The memory required is given approximately by: Size of the Banner executable + Combined sizes of the three resource files + 6 kbytes of extra workspace If you have alternative sprite file remember to use the size of the largest file when deciding how much memory to allocate. If there is insufficient memory to load the high-res sprites file then the standard resolution version is tried instead. Probably the best way of using this program in the start-up of an application is to have two Obey files. The first one, "!Run", is started when the application is run: | > <App$Dir>.!Run | Set a system variable to the application directory Set App$Dir <Obey$Dir> | Load the application sprites IconSprites <App$Dir>.!Sprites | Check that there is likely to be sufficient memory for both programs WimpSlot -min 576K -max 576K | Start the next part of the program loading once "Banner" has initialised Filer_Run <App$Dir>.!Run2 | Ensure that there is sufficient memory for the "Banner" program WimpSlot -min 64K -max 64K | Run the banner program, leaving window open for 2.5 seconds Run <App$Dir>.Banner 250 Remember that "Banner", unless told otherwise, will look for its resources in "<Obey$Dir>.Resources", which in this case will be the same as "<App$Dir>.Resources". The second Obey file, "!Run2", is started by the first one using a "Filer_Run" command causing it to start once the "Banner" application has started polling the wimp: | > !Run2 | Load any required resources, e.g. modules | Check that there is still sufficient memory to run WimpSlot -min 512K -max 512K | Finally start the application Run <App$Dir>.!RunImage %*0 This is not the only way in which "Banner" can be used, but it is one of the better ways as it does not significantly increase the start-up time of the application; the application and resources can continue loading while the banner is being displayed. LEGAL MATTERS The "Banner" application and documentation is supplied "as is"; no warranty, express or implied, of the merchantability of this software or its fitness for any particular purpose is given. In no circumstances shall the author, or any provider or distributor of this software, be liable for any damage, loss of profits, or any indirect or consequential loss arising out of the use of this software or inability to use this software. This application is FreeWare. Permission is granted for anyone to distribute it unchanged and in its entirety, providing that no profit is made in the process. The "Banner" application may not be distributed if modified or incomplete; neither may it be distributed without this documentation. To use this application, or any part of it, as part of a system or other application that is for sale (for however much and for whatever reasons) or released as copyright material then the author's express permission in writing must be obtained. The author maintains copyright on all the material supplied and reserves the right to change these conditions at any time without notice. CONTACTING THE AUTHOR I would be interested in hearing of any bugs or other unexpected features in this application, and will endeavour to correct any such problems in future releases. Suggestions for improvements are also most welcome. Implementation depends upon practicability and on how much spare time I have. If you have any comments on this program, or would like to suggest ways in which it could be improved, I can be contacted at one of the following addresses: Thalna 2 Dukes Drive Bearwood Bournemouth Dorset BH11 9SZ alex@thouky.tcp.co.uk If in any communication you make specific reference to the program code please: Quote the version number and date of the application (it is contained near the start of the executable binary). Refer only to the application as released. Supply as many details as possible about the problem, including the hardware and software configuration of the machine being used. Please send a stamped and self addressed envelope, or give details of how to contact via e-mail, if you would like a reply. I hope you find this application of some use. ACKNOWLEDGEMENTS I would like to the thank the following people for their contributions to the development of this application: Acorn Computers - The Risc PC, RISC OS and the ObjAsm assembler. Aidan Corey - Good ideas for improvements. Dominic Symes - The brilliant !Zap editor; get a copy immediately. Robin Watts - !Larger, the greatest backdrop program ever. Mark Wooding - !Glass, the best template editor. and everyone at the Acorn User Group in Oxford. THINGS TO DO The following are changes that may be made to this application sometime in the future: Only accept ";" as validation string separator if it is not preceded by a "\" character. Delete "M" commands from validation strings before passing the window to the wimp. This would protect against any later versions of the wimp trying to misuse "M" validation strings. VERSION HISTORY 0.00 (16-Apr-95) Original development version. 0.01 (21-Apr-95) Command-line arguments added to configure display time and filenames. 0.02 (22-Apr-95) Corrected handling of fonts on mode changes. Misaligned word load removed. Wimp_ReadSysInfo used to get sprite file suffix for current mode, rather than generating it from mode variables. Linked as a binary rather than AIF. Window recentred on mode change. Improved error handling. Font table moved from binary image to application workspace. 0.03 (03-May-95) Tidied up the code and improved the documentation. 1.00 (09-May-95) First official release version. 1.01 (20-Jan-97) Error checking improved when loading templates file.
00000000 46 69 6c 65 20 20 20 20 20 20 20 20 3a 20 42 61 |File : Ba| 00000010 6e 6e 65 72 0a 44 61 74 65 20 20 20 20 20 20 20 |nner.Date | 00000020 20 3a 20 32 30 2d 4a 61 6e 2d 39 37 0a 41 75 74 | : 20-Jan-97.Aut| 00000030 68 6f 72 20 20 20 20 20 20 3a 20 a9 20 41 2e 54 |hor : . A.T| 00000040 68 6f 75 6b 79 64 69 64 65 73 2c 20 31 39 39 35 |houkydides, 1995| 00000050 2c 20 31 39 39 37 0a 44 65 73 63 72 69 70 74 69 |, 1997.Descripti| 00000060 6f 6e 20 3a 20 44 65 73 63 72 69 70 74 69 6f 6e |on : Description| 00000070 20 6f 66 20 74 68 65 20 22 42 61 6e 6e 65 72 22 | of the "Banner"| 00000080 20 61 70 70 6c 69 63 61 74 69 6f 6e 2e 0a 0a 0a | application....| 00000090 49 4e 54 52 4f 44 55 43 54 49 4f 4e 0a 0a 54 68 |INTRODUCTION..Th| 000000a0 65 20 22 42 61 6e 6e 65 72 22 20 61 70 70 6c 69 |e "Banner" appli| 000000b0 63 61 74 69 6f 6e 20 64 69 73 70 6c 61 79 73 20 |cation displays | 000000c0 61 20 62 61 6e 6e 65 72 20 77 69 6e 64 6f 77 20 |a banner window | 000000d0 69 6e 20 74 68 65 20 64 65 73 6b 74 6f 70 2c 20 |in the desktop, | 000000e0 65 69 74 68 65 72 20 66 6f 72 0a 61 20 70 72 65 |either for.a pre| 000000f0 64 65 74 65 72 6d 69 6e 65 64 20 6c 65 6e 67 74 |determined lengt| 00000100 68 20 6f 66 20 74 69 6d 65 20 6f 72 20 75 6e 74 |h of time or unt| 00000110 69 6c 20 69 74 20 69 73 20 63 6c 69 63 6b 65 64 |il it is clicked| 00000120 20 6f 6e 20 77 69 74 68 20 74 68 65 20 6d 6f 75 | on with the mou| 00000130 73 65 2e 0a 49 74 20 69 73 20 69 6e 74 65 6e 64 |se..It is intend| 00000140 65 64 20 74 6f 20 62 65 20 75 73 65 64 20 77 68 |ed to be used wh| 00000150 69 6c 65 20 61 6e 20 61 70 70 6c 69 63 61 74 69 |ile an applicati| 00000160 6f 6e 20 69 73 20 6c 6f 61 64 69 6e 67 2c 20 62 |on is loading, b| 00000170 75 74 20 69 74 20 6d 61 79 20 61 6c 73 6f 20 62 |ut it may also b| 00000180 65 0a 75 73 65 64 20 66 6f 72 20 6f 74 68 65 72 |e.used for other| 00000190 20 70 75 72 70 6f 73 65 73 2e 20 54 68 65 20 6c | purposes. The l| 000001a0 61 79 6f 75 74 20 6f 66 20 74 68 65 20 77 69 6e |ayout of the win| 000001b0 64 6f 77 20 69 73 20 73 70 65 63 69 66 69 65 64 |dow is specified| 000001c0 20 62 79 20 61 20 74 65 6d 70 6c 61 74 65 73 0a | by a templates.| 000001d0 66 69 6c 65 2c 20 77 68 69 63 68 20 6d 61 79 20 |file, which may | 000001e0 69 6e 63 6c 75 64 65 20 72 65 71 75 65 73 74 73 |include requests| 000001f0 20 66 6f 72 20 74 65 78 74 20 73 75 62 73 74 69 | for text substi| 00000200 74 75 74 69 6f 6e 20 66 72 6f 6d 20 61 6e 20 6f |tution from an o| 00000210 70 74 69 6f 6e 61 6c 0a 6d 65 73 73 61 67 65 73 |ptional.messages| 00000220 20 66 69 6c 65 2e 20 41 6e 74 69 2d 61 6c 69 61 | file. Anti-alia| 00000230 73 65 64 20 66 6f 6e 74 73 20 61 72 65 20 66 75 |sed fonts are fu| 00000240 6c 6c 79 20 73 75 70 70 6f 72 74 65 64 2c 20 61 |lly supported, a| 00000250 6e 64 20 73 70 72 69 74 65 73 20 61 72 65 20 6c |nd sprites are l| 00000260 6f 61 64 65 64 0a 69 6e 74 6f 20 74 68 65 20 61 |oaded.into the a| 00000270 70 70 6c 69 63 61 74 69 6f 6e 20 73 70 72 69 74 |pplication sprit| 00000280 65 20 61 72 65 61 20 72 61 74 68 65 72 20 74 68 |e area rather th| 00000290 61 6e 20 74 68 65 20 73 68 61 72 65 64 20 77 69 |an the shared wi| 000002a0 6d 70 20 70 6f 6f 6c 2e 0a 0a 54 68 69 73 20 61 |mp pool...This a| 000002b0 70 70 6c 69 63 61 74 69 6f 6e 20 69 73 20 46 72 |pplication is Fr| 000002c0 65 65 57 61 72 65 3b 20 69 74 20 6d 61 79 20 62 |eeWare; it may b| 000002d0 65 20 66 72 65 65 6c 79 20 75 73 65 64 20 61 6e |e freely used an| 000002e0 64 20 63 6f 70 69 65 64 2e 20 48 6f 77 65 76 65 |d copied. Howeve| 000002f0 72 2c 20 49 0a 72 65 74 61 69 6e 20 66 75 6c 6c |r, I.retain full| 00000300 20 63 6f 70 79 72 69 67 68 74 2e 20 53 65 65 20 | copyright. See | 00000310 74 68 65 20 73 65 63 74 69 6f 6e 20 6f 6e 20 22 |the section on "| 00000320 4c 45 47 41 4c 20 4d 41 54 54 45 52 53 22 20 66 |LEGAL MATTERS" f| 00000330 6f 72 20 6d 6f 72 65 20 64 65 74 61 69 6c 73 2e |or more details.| 00000340 0a 0a 0a 55 53 41 47 45 0a 0a 54 68 65 20 73 79 |...USAGE..The sy| 00000350 6e 74 61 78 20 69 73 3a 0a 0a 20 20 20 20 42 61 |ntax is:.. Ba| 00000360 6e 6e 65 72 20 5b 3c 74 69 6d 65 3e 5d 20 5b 2d |nner [<time>] [-| 00000370 4d 65 73 73 61 67 65 73 20 3c 6d 65 73 73 61 67 |Messages <messag| 00000380 65 73 66 69 6c 65 3e 5d 20 5b 2d 53 70 72 69 74 |esfile>] [-Sprit| 00000390 65 73 20 3c 73 70 72 69 74 65 66 69 6c 65 3e 5d |es <spritefile>]| 000003a0 0a 20 20 20 20 20 20 20 20 20 20 20 5b 2d 54 65 |. [-Te| 000003b0 6d 70 6c 61 74 65 73 20 3c 74 65 6d 70 6c 61 74 |mplates <templat| 000003c0 65 73 66 69 6c 65 3e 5d 0a 0a 77 68 65 72 65 0a |esfile>]..where.| 000003d0 0a 20 20 20 20 3c 74 69 6d 65 3e 20 20 20 20 20 |. <time> | 000003e0 20 20 20 20 20 2d 20 54 68 65 20 74 69 6d 65 20 | - The time | 000003f0 69 6e 20 63 65 6e 74 69 2d 73 65 63 6f 6e 64 73 |in centi-seconds| 00000400 20 66 6f 72 20 77 68 69 63 68 20 74 68 65 20 77 | for which the w| 00000410 69 6e 64 6f 77 20 73 68 6f 75 6c 64 0a 20 20 20 |indow should. | 00000420 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000430 20 20 20 62 65 20 6c 65 66 74 20 6f 70 65 6e 2e | be left open.| 00000440 20 49 66 20 6e 6f 20 76 61 6c 75 65 20 69 73 20 | If no value is | 00000450 73 70 65 63 69 66 69 65 64 20 74 68 65 6e 20 74 |specified then t| 00000460 68 65 20 77 69 6e 64 6f 77 0a 20 20 20 20 20 20 |he window. | 00000470 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000480 77 69 6c 6c 20 72 65 6d 61 69 6e 20 6f 70 65 6e |will remain open| 00000490 20 75 6e 74 69 6c 20 74 68 65 20 70 6f 69 6e 74 | until the point| 000004a0 65 72 20 69 73 20 63 6c 69 63 6b 65 64 20 6f 6e |er is clicked on| 000004b0 20 69 74 2e 0a 20 20 20 20 20 20 20 20 20 20 20 | it.. | 000004c0 20 20 20 20 20 20 20 20 20 20 20 41 20 72 65 61 | A rea| 000004d0 73 6f 6e 61 62 6c 65 20 76 61 6c 75 65 20 69 73 |sonable value is| 000004e0 20 32 35 30 20 28 66 6f 72 20 32 bd 20 73 65 63 | 250 (for 2. sec| 000004f0 6f 6e 64 73 29 2e 0a 0a 20 20 20 20 3c 6d 65 73 |onds)... <mes| 00000500 73 61 67 65 73 66 69 6c 65 3e 20 20 2d 20 54 68 |sagesfile> - Th| 00000510 65 20 70 61 74 68 6e 61 6d 65 20 6f 66 20 74 68 |e pathname of th| 00000520 65 20 6d 65 73 73 61 67 65 73 20 66 69 6c 65 20 |e messages file | 00000530 74 6f 20 75 73 65 2e 20 54 68 65 20 64 65 66 61 |to use. The defa| 00000540 75 6c 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 |ult. | 00000550 20 20 20 20 20 20 20 20 20 20 66 69 6c 65 6e 61 | filena| 00000560 6d 65 20 69 73 20 3c 4f 62 65 79 24 44 69 72 3e |me is <Obey$Dir>| 00000570 2e 52 65 73 6f 75 72 63 65 73 2e 4d 65 73 73 61 |.Resources.Messa| 00000580 67 65 73 2e 0a 0a 20 20 20 20 3c 73 70 72 69 74 |ges... <sprit| 00000590 65 66 69 6c 65 3e 20 20 20 20 2d 20 54 68 65 20 |efile> - The | 000005a0 70 61 74 68 6e 61 6d 65 20 6f 66 20 74 68 65 20 |pathname of the | 000005b0 73 70 72 69 74 65 73 20 66 69 6c 65 20 74 6f 20 |sprites file to | 000005c0 75 73 65 2e 20 54 68 65 20 64 65 66 61 75 6c 74 |use. The default| 000005d0 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |. | 000005e0 20 20 20 20 20 20 20 66 69 6c 65 6e 61 6d 65 20 | filename | 000005f0 69 73 20 3c 4f 62 65 79 24 44 69 72 3e 2e 52 65 |is <Obey$Dir>.Re| 00000600 73 6f 75 72 63 65 73 2e 53 70 72 69 74 65 73 2e |sources.Sprites.| 00000610 0a 0a 20 20 20 20 3c 74 65 6d 70 6c 61 74 65 73 |.. <templates| 00000620 66 69 6c 65 3e 20 2d 20 54 68 65 20 70 61 74 68 |file> - The path| 00000630 6e 61 6d 65 20 6f 66 20 74 68 65 20 74 65 6d 70 |name of the temp| 00000640 6c 61 74 65 73 20 66 69 6c 65 20 74 6f 20 75 73 |lates file to us| 00000650 65 2e 20 54 68 65 20 64 65 66 61 75 6c 74 0a 20 |e. The default. | 00000660 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000670 20 20 20 20 20 66 69 6c 65 6e 61 6d 65 20 69 73 | filename is| 00000680 20 3c 4f 62 65 79 24 44 69 72 3e 2e 52 65 73 6f | <Obey$Dir>.Reso| 00000690 75 72 63 65 73 2e 54 65 6d 70 6c 61 74 65 73 2e |urces.Templates.| 000006a0 0a 0a 41 6c 6c 20 6f 66 20 74 68 65 20 6b 65 79 |..All of the key| 000006b0 77 6f 72 64 73 20 6d 61 79 20 62 65 20 61 62 62 |words may be abb| 000006c0 72 65 76 69 61 74 65 64 20 74 6f 20 74 68 65 69 |reviated to thei| 000006d0 72 20 66 69 72 73 74 20 6c 65 74 74 65 72 2e 20 |r first letter. | 000006e0 54 68 65 20 66 69 6c 65 73 0a 61 72 65 20 75 73 |The files.are us| 000006f0 65 64 20 61 73 20 66 6f 6c 6c 6f 77 73 3a 0a 20 |ed as follows:. | 00000700 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000710 20 0a 20 20 20 20 4d 65 73 73 61 67 65 73 20 20 | . Messages | 00000720 20 20 2d 20 41 20 4d 65 73 73 61 67 65 54 72 61 | - A MessageTra| 00000730 6e 73 20 66 69 6c 65 20 63 6f 6e 74 61 69 6e 69 |ns file containi| 00000740 6e 67 20 74 65 78 74 20 74 6f 20 72 65 70 6c 61 |ng text to repla| 00000750 63 65 20 69 6e 64 69 72 65 63 74 65 64 0a 20 20 |ce indirected. | 00000760 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000770 74 65 78 74 20 6f 6e 6c 79 20 69 63 6f 6e 73 20 |text only icons | 00000780 77 69 74 68 2e 20 54 68 65 20 74 65 78 74 20 66 |with. The text f| 00000790 6f 6c 6c 6f 77 69 6e 67 20 61 6e 20 22 4d 22 20 |ollowing an "M" | 000007a0 63 6f 6d 6d 61 6e 64 20 69 6e 0a 20 20 20 20 20 |command in. | 000007b0 20 20 20 20 20 20 20 20 20 20 20 20 20 61 6e 20 | an | 000007c0 69 63 6f 6e 20 76 61 6c 69 64 61 74 69 6f 6e 20 |icon validation | 000007d0 73 74 72 69 6e 67 2c 20 75 70 20 74 6f 20 74 68 |string, up to th| 000007e0 65 20 6e 65 78 74 20 73 65 6d 69 2d 63 6f 6c 6f |e next semi-colo| 000007f0 6e 20 6f 72 0a 20 20 20 20 20 20 20 20 20 20 20 |n or. | 00000800 20 20 20 20 20 20 20 74 65 72 6d 69 6e 61 74 6f | terminato| 00000810 72 2c 20 69 73 20 75 73 65 64 20 61 73 20 61 20 |r, is used as a | 00000820 74 6f 6b 65 6e 20 74 6f 20 70 61 73 73 20 74 6f |token to pass to| 00000830 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |. | 00000840 20 20 20 4d 65 73 73 61 67 65 54 72 61 6e 73 5f | MessageTrans_| 00000850 4c 6f 6f 6b 75 70 2e 20 49 66 20 61 20 6d 61 74 |Lookup. If a mat| 00000860 63 68 20 69 73 20 66 6f 75 6e 64 20 74 68 65 6e |ch is found then| 00000870 20 74 68 65 20 69 63 6f 6e 20 74 65 78 74 0a 20 | the icon text. | 00000880 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000890 20 69 73 20 72 65 70 6c 61 63 65 64 20 62 79 20 | is replaced by | 000008a0 74 68 65 20 73 70 65 63 69 66 69 65 64 20 73 74 |the specified st| 000008b0 72 69 6e 67 2c 20 6f 74 68 65 72 77 69 73 65 20 |ring, otherwise | 000008c0 74 68 65 20 69 63 6f 6e 0a 20 20 20 20 20 20 20 |the icon. | 000008d0 20 20 20 20 20 20 20 20 20 20 20 74 65 78 74 20 | text | 000008e0 69 73 20 75 6e 63 68 61 6e 67 65 64 2e 20 54 68 |is unchanged. Th| 000008f0 69 73 20 63 61 6e 20 62 65 20 75 73 65 64 2c 20 |is can be used, | 00000900 66 6f 72 20 65 78 61 6d 70 6c 65 2c 20 74 6f 0a |for example, to.| 00000910 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000920 20 20 64 69 73 70 6c 61 79 20 74 68 65 20 70 72 | display the pr| 00000930 6f 67 72 61 6d 20 76 65 72 73 69 6f 6e 20 6e 75 |ogram version nu| 00000940 6d 62 65 72 20 6f 66 20 6c 69 63 65 6e 63 65 20 |mber of licence | 00000950 64 65 74 61 69 6c 73 2e 0a 0a 20 20 20 20 53 70 |details... Sp| 00000960 72 69 74 65 73 20 20 20 20 20 2d 20 41 20 73 70 |rites - A sp| 00000970 72 69 74 65 20 66 69 6c 65 20 74 6f 20 62 65 20 |rite file to be | 00000980 6c 6f 61 64 65 64 20 69 6e 74 6f 20 74 68 65 20 |loaded into the | 00000990 61 70 70 6c 69 63 61 74 69 6f 6e 20 73 70 72 69 |application spri| 000009a0 74 65 20 61 72 65 61 2e 0a 20 20 20 20 20 20 20 |te area.. | 000009b0 20 20 20 20 20 20 20 20 20 20 20 54 68 65 20 70 | The p| 000009c0 72 6f 67 72 61 6d 20 66 69 72 73 74 20 63 68 65 |rogram first che| 000009d0 63 6b 73 20 77 68 65 74 68 65 72 20 61 20 66 69 |cks whether a fi| 000009e0 6c 65 20 6d 6f 72 65 20 73 75 69 74 61 62 6c 65 |le more suitable| 000009f0 20 66 6f 72 0a 20 20 20 20 20 20 20 20 20 20 20 | for. | 00000a00 20 20 20 20 20 20 20 63 75 72 72 65 6e 74 20 6d | current m| 00000a10 6f 64 65 20 69 73 20 70 72 65 73 65 6e 74 20 28 |ode is present (| 00000a20 65 2e 67 2e 20 53 70 72 69 74 65 73 32 33 2c 20 |e.g. Sprites23, | 00000a30 53 70 72 69 74 65 73 32 32 20 65 74 63 29 0a 20 |Sprites22 etc). | 00000a40 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000a50 20 75 73 69 6e 67 20 74 68 65 20 73 61 6d 65 20 | using the same | 00000a60 72 75 6c 65 73 20 61 73 20 66 6f 72 20 49 63 6f |rules as for Ico| 00000a70 6e 53 70 72 69 74 65 73 2e 20 49 66 20 61 20 68 |nSprites. If a h| 00000a80 69 67 68 2d 72 65 73 0a 20 20 20 20 20 20 20 20 |igh-res. | 00000a90 20 20 20 20 20 20 20 20 20 20 6d 6f 6e 6f 63 68 | monoch| 00000aa0 72 6f 6d 65 20 6d 6f 64 65 20 69 73 20 62 65 69 |rome mode is bei| 00000ab0 6e 67 20 75 73 65 64 20 74 68 65 6e 20 53 70 72 |ng used then Spr| 00000ac0 69 74 65 73 32 33 20 69 73 20 74 72 69 65 64 2c |ites23 is tried,| 00000ad0 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |. | 00000ae0 20 20 20 6f 74 68 65 72 77 69 73 65 20 74 68 65 | otherwise the| 00000af0 20 66 69 6c 65 20 53 70 72 69 74 65 73 58 59 20 | file SpritesXY | 00000b00 69 73 20 74 72 69 65 64 20 28 77 68 65 72 65 20 |is tried (where | 00000b10 58 20 61 6e 64 20 59 20 61 72 65 0a 20 20 20 20 |X and Y are. | 00000b20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 | th| 00000b30 65 20 6e 75 6d 62 65 72 20 6f 66 20 4f 53 20 75 |e number of OS u| 00000b40 6e 69 74 73 20 70 65 72 20 70 69 78 65 6c 20 69 |nits per pixel i| 00000b50 6e 20 74 68 65 20 74 77 6f 20 64 69 72 65 63 74 |n the two direct| 00000b60 69 6f 6e 73 29 2e 0a 0a 20 20 20 20 54 65 6d 70 |ions)... Temp| 00000b70 6c 61 74 65 73 20 20 20 2d 20 41 20 77 69 6d 70 |lates - A wimp| 00000b80 20 74 65 6d 70 6c 61 74 65 20 66 69 6c 65 20 77 | template file w| 00000b90 68 69 63 68 20 6d 75 73 74 20 63 6f 6e 74 61 69 |hich must contai| 00000ba0 6e 20 61 20 77 69 6e 64 6f 77 0a 20 20 20 20 20 |n a window. | 00000bb0 20 20 20 20 20 20 20 20 20 20 20 20 20 64 65 66 | def| 00000bc0 69 6e 69 74 69 6f 6e 20 63 61 6c 6c 65 64 20 22 |inition called "| 00000bd0 62 61 6e 6e 65 72 22 20 74 6f 20 62 65 20 64 69 |banner" to be di| 00000be0 73 70 6c 61 79 65 64 2e 0a 0a 4f 6e 6c 79 20 74 |splayed...Only t| 00000bf0 68 65 20 54 65 6d 70 6c 61 74 65 73 20 66 69 6c |he Templates fil| 00000c00 65 20 69 73 20 61 63 74 75 61 6c 6c 79 20 72 65 |e is actually re| 00000c10 71 75 69 72 65 64 3b 20 74 68 65 20 6f 74 68 65 |quired; the othe| 00000c20 72 20 74 77 6f 20 61 72 65 20 6f 70 74 69 6f 6e |r two are option| 00000c30 61 6c 2e 0a 0a 54 68 65 73 65 20 66 69 6c 65 73 |al...These files| 00000c40 20 63 61 6e 20 62 65 20 73 68 61 72 65 64 20 77 | can be shared w| 00000c50 69 74 68 20 74 68 65 20 6d 61 69 6e 20 61 70 70 |ith the main app| 00000c60 6c 69 63 61 74 69 6f 6e 3b 20 69 6e 20 66 61 63 |lication; in fac| 00000c70 74 20 69 74 20 69 73 20 71 75 69 74 65 20 61 0a |t it is quite a.| 00000c80 67 6f 6f 64 20 69 64 65 61 20 74 6f 20 64 6f 20 |good idea to do | 00000c90 73 6f 2c 20 65 2e 67 2e 20 61 20 56 65 72 73 69 |so, e.g. a Versi| 00000ca0 6f 6e 20 74 6f 6b 65 6e 20 69 6e 20 74 68 65 20 |on token in the | 00000cb0 6d 65 73 73 61 67 65 73 20 66 69 6c 65 20 63 61 |messages file ca| 00000cc0 6e 20 62 65 20 75 73 65 64 20 66 6f 72 0a 62 6f |n be used for.bo| 00000cd0 74 68 20 74 68 65 20 50 72 6f 67 49 6e 66 6f 20 |th the ProgInfo | 00000ce0 77 69 6e 64 6f 77 20 61 6e 64 20 74 68 65 20 62 |window and the b| 00000cf0 61 6e 6e 65 72 2e 0a 0a 49 74 20 69 73 20 75 70 |anner...It is up| 00000d00 20 74 6f 20 74 68 65 20 75 73 65 72 20 6f 66 20 | to the user of | 00000d10 74 68 69 73 20 70 72 6f 67 72 61 6d 20 74 6f 20 |this program to | 00000d20 65 6e 73 75 72 65 20 74 68 61 74 20 69 74 20 69 |ensure that it i| 00000d30 73 20 67 69 76 65 6e 20 61 20 73 75 69 74 61 62 |s given a suitab| 00000d40 6c 79 0a 73 69 7a 65 64 20 77 69 6d 70 73 6c 6f |ly.sized wimpslo| 00000d50 74 2e 20 54 68 65 20 6d 65 6d 6f 72 79 20 72 65 |t. The memory re| 00000d60 71 75 69 72 65 64 20 69 73 20 67 69 76 65 6e 20 |quired is given | 00000d70 61 70 70 72 6f 78 69 6d 61 74 65 6c 79 20 62 79 |approximately by| 00000d80 3a 0a 0a 20 20 20 20 53 69 7a 65 20 6f 66 20 74 |:.. Size of t| 00000d90 68 65 20 42 61 6e 6e 65 72 20 65 78 65 63 75 74 |he Banner execut| 00000da0 61 62 6c 65 0a 20 20 2b 20 43 6f 6d 62 69 6e 65 |able. + Combine| 00000db0 64 20 73 69 7a 65 73 20 6f 66 20 74 68 65 20 74 |d sizes of the t| 00000dc0 68 72 65 65 20 72 65 73 6f 75 72 63 65 20 66 69 |hree resource fi| 00000dd0 6c 65 73 0a 20 20 2b 20 36 20 6b 62 79 74 65 73 |les. + 6 kbytes| 00000de0 20 6f 66 20 65 78 74 72 61 20 77 6f 72 6b 73 70 | of extra worksp| 00000df0 61 63 65 0a 0a 49 66 20 79 6f 75 20 68 61 76 65 |ace..If you have| 00000e00 20 61 6c 74 65 72 6e 61 74 69 76 65 20 73 70 72 | alternative spr| 00000e10 69 74 65 20 66 69 6c 65 20 72 65 6d 65 6d 62 65 |ite file remembe| 00000e20 72 20 74 6f 20 75 73 65 20 74 68 65 20 73 69 7a |r to use the siz| 00000e30 65 20 6f 66 20 74 68 65 20 6c 61 72 67 65 73 74 |e of the largest| 00000e40 0a 66 69 6c 65 20 77 68 65 6e 20 64 65 63 69 64 |.file when decid| 00000e50 69 6e 67 20 68 6f 77 20 6d 75 63 68 20 6d 65 6d |ing how much mem| 00000e60 6f 72 79 20 74 6f 20 61 6c 6c 6f 63 61 74 65 2e |ory to allocate.| 00000e70 20 49 66 20 74 68 65 72 65 20 69 73 20 69 6e 73 | If there is ins| 00000e80 75 66 66 69 63 69 65 6e 74 0a 6d 65 6d 6f 72 79 |ufficient.memory| 00000e90 20 74 6f 20 6c 6f 61 64 20 74 68 65 20 68 69 67 | to load the hig| 00000ea0 68 2d 72 65 73 20 73 70 72 69 74 65 73 20 66 69 |h-res sprites fi| 00000eb0 6c 65 20 74 68 65 6e 20 74 68 65 20 73 74 61 6e |le then the stan| 00000ec0 64 61 72 64 20 72 65 73 6f 6c 75 74 69 6f 6e 20 |dard resolution | 00000ed0 76 65 72 73 69 6f 6e 0a 69 73 20 74 72 69 65 64 |version.is tried| 00000ee0 20 69 6e 73 74 65 61 64 2e 0a 0a 50 72 6f 62 61 | instead...Proba| 00000ef0 62 6c 79 20 74 68 65 20 62 65 73 74 20 77 61 79 |bly the best way| 00000f00 20 6f 66 20 75 73 69 6e 67 20 74 68 69 73 20 70 | of using this p| 00000f10 72 6f 67 72 61 6d 20 69 6e 20 74 68 65 20 73 74 |rogram in the st| 00000f20 61 72 74 2d 75 70 20 6f 66 20 61 6e 20 61 70 70 |art-up of an app| 00000f30 6c 69 63 61 74 69 6f 6e 0a 69 73 20 74 6f 20 68 |lication.is to h| 00000f40 61 76 65 20 74 77 6f 20 4f 62 65 79 20 66 69 6c |ave two Obey fil| 00000f50 65 73 2e 20 54 68 65 20 66 69 72 73 74 20 6f 6e |es. The first on| 00000f60 65 2c 20 22 21 52 75 6e 22 2c 20 69 73 20 73 74 |e, "!Run", is st| 00000f70 61 72 74 65 64 20 77 68 65 6e 20 74 68 65 0a 61 |arted when the.a| 00000f80 70 70 6c 69 63 61 74 69 6f 6e 20 69 73 20 72 75 |pplication is ru| 00000f90 6e 3a 0a 0a 20 20 20 20 7c 20 3e 20 3c 41 70 70 |n:.. | > <App| 00000fa0 24 44 69 72 3e 2e 21 52 75 6e 0a 20 20 20 20 0a |$Dir>.!Run. .| 00000fb0 20 20 20 20 7c 20 53 65 74 20 61 20 73 79 73 74 | | Set a syst| 00000fc0 65 6d 20 76 61 72 69 61 62 6c 65 20 74 6f 20 74 |em variable to t| 00000fd0 68 65 20 61 70 70 6c 69 63 61 74 69 6f 6e 20 64 |he application d| 00000fe0 69 72 65 63 74 6f 72 79 0a 20 20 20 20 53 65 74 |irectory. Set| 00000ff0 20 41 70 70 24 44 69 72 20 3c 4f 62 65 79 24 44 | App$Dir <Obey$D| 00001000 69 72 3e 0a 0a 20 20 20 20 7c 20 4c 6f 61 64 20 |ir>.. | Load | 00001010 74 68 65 20 61 70 70 6c 69 63 61 74 69 6f 6e 20 |the application | 00001020 73 70 72 69 74 65 73 0a 20 20 20 20 49 63 6f 6e |sprites. Icon| 00001030 53 70 72 69 74 65 73 20 3c 41 70 70 24 44 69 72 |Sprites <App$Dir| 00001040 3e 2e 21 53 70 72 69 74 65 73 0a 0a 20 20 20 20 |>.!Sprites.. | 00001050 7c 20 43 68 65 63 6b 20 74 68 61 74 20 74 68 65 || Check that the| 00001060 72 65 20 69 73 20 6c 69 6b 65 6c 79 20 74 6f 20 |re is likely to | 00001070 62 65 20 73 75 66 66 69 63 69 65 6e 74 20 6d 65 |be sufficient me| 00001080 6d 6f 72 79 20 66 6f 72 20 62 6f 74 68 20 70 72 |mory for both pr| 00001090 6f 67 72 61 6d 73 0a 20 20 20 20 57 69 6d 70 53 |ograms. WimpS| 000010a0 6c 6f 74 20 2d 6d 69 6e 20 35 37 36 4b 20 2d 6d |lot -min 576K -m| 000010b0 61 78 20 35 37 36 4b 0a 0a 20 20 20 20 7c 20 53 |ax 576K.. | S| 000010c0 74 61 72 74 20 74 68 65 20 6e 65 78 74 20 70 61 |tart the next pa| 000010d0 72 74 20 6f 66 20 74 68 65 20 70 72 6f 67 72 61 |rt of the progra| 000010e0 6d 20 6c 6f 61 64 69 6e 67 20 6f 6e 63 65 20 22 |m loading once "| 000010f0 42 61 6e 6e 65 72 22 20 68 61 73 20 69 6e 69 74 |Banner" has init| 00001100 69 61 6c 69 73 65 64 0a 20 20 20 20 46 69 6c 65 |ialised. File| 00001110 72 5f 52 75 6e 20 3c 41 70 70 24 44 69 72 3e 2e |r_Run <App$Dir>.| 00001120 21 52 75 6e 32 0a 0a 20 20 20 20 7c 20 45 6e 73 |!Run2.. | Ens| 00001130 75 72 65 20 74 68 61 74 20 74 68 65 72 65 20 69 |ure that there i| 00001140 73 20 73 75 66 66 69 63 69 65 6e 74 20 6d 65 6d |s sufficient mem| 00001150 6f 72 79 20 66 6f 72 20 74 68 65 20 22 42 61 6e |ory for the "Ban| 00001160 6e 65 72 22 20 70 72 6f 67 72 61 6d 0a 20 20 20 |ner" program. | 00001170 20 57 69 6d 70 53 6c 6f 74 20 2d 6d 69 6e 20 36 | WimpSlot -min 6| 00001180 34 4b 20 2d 6d 61 78 20 36 34 4b 0a 0a 20 20 20 |4K -max 64K.. | 00001190 20 7c 20 52 75 6e 20 74 68 65 20 62 61 6e 6e 65 | | Run the banne| 000011a0 72 20 70 72 6f 67 72 61 6d 2c 20 6c 65 61 76 69 |r program, leavi| 000011b0 6e 67 20 77 69 6e 64 6f 77 20 6f 70 65 6e 20 66 |ng window open f| 000011c0 6f 72 20 32 2e 35 20 73 65 63 6f 6e 64 73 0a 20 |or 2.5 seconds. | 000011d0 20 20 20 52 75 6e 20 3c 41 70 70 24 44 69 72 3e | Run <App$Dir>| 000011e0 2e 42 61 6e 6e 65 72 20 32 35 30 0a 0a 52 65 6d |.Banner 250..Rem| 000011f0 65 6d 62 65 72 20 74 68 61 74 20 22 42 61 6e 6e |ember that "Bann| 00001200 65 72 22 2c 20 75 6e 6c 65 73 73 20 74 6f 6c 64 |er", unless told| 00001210 20 6f 74 68 65 72 77 69 73 65 2c 20 77 69 6c 6c | otherwise, will| 00001220 20 6c 6f 6f 6b 20 66 6f 72 20 69 74 73 20 72 65 | look for its re| 00001230 73 6f 75 72 63 65 73 20 69 6e 0a 22 3c 4f 62 65 |sources in."<Obe| 00001240 79 24 44 69 72 3e 2e 52 65 73 6f 75 72 63 65 73 |y$Dir>.Resources| 00001250 22 2c 20 77 68 69 63 68 20 69 6e 20 74 68 69 73 |", which in this| 00001260 20 63 61 73 65 20 77 69 6c 6c 20 62 65 20 74 68 | case will be th| 00001270 65 20 73 61 6d 65 20 61 73 0a 22 3c 41 70 70 24 |e same as."<App$| 00001280 44 69 72 3e 2e 52 65 73 6f 75 72 63 65 73 22 2e |Dir>.Resources".| 00001290 20 54 68 65 20 73 65 63 6f 6e 64 20 4f 62 65 79 | The second Obey| 000012a0 20 66 69 6c 65 2c 20 22 21 52 75 6e 32 22 2c 20 | file, "!Run2", | 000012b0 69 73 20 73 74 61 72 74 65 64 20 62 79 20 74 68 |is started by th| 000012c0 65 20 66 69 72 73 74 0a 6f 6e 65 20 75 73 69 6e |e first.one usin| 000012d0 67 20 61 20 22 46 69 6c 65 72 5f 52 75 6e 22 20 |g a "Filer_Run" | 000012e0 63 6f 6d 6d 61 6e 64 20 63 61 75 73 69 6e 67 20 |command causing | 000012f0 69 74 20 74 6f 20 73 74 61 72 74 20 6f 6e 63 65 |it to start once| 00001300 20 74 68 65 20 22 42 61 6e 6e 65 72 22 0a 61 70 | the "Banner".ap| 00001310 70 6c 69 63 61 74 69 6f 6e 20 68 61 73 20 73 74 |plication has st| 00001320 61 72 74 65 64 20 70 6f 6c 6c 69 6e 67 20 74 68 |arted polling th| 00001330 65 20 77 69 6d 70 3a 0a 0a 20 20 20 20 7c 20 3e |e wimp:.. | >| 00001340 20 21 52 75 6e 32 0a 20 20 20 20 0a 20 20 20 20 | !Run2. . | 00001350 7c 20 4c 6f 61 64 20 61 6e 79 20 72 65 71 75 69 || Load any requi| 00001360 72 65 64 20 72 65 73 6f 75 72 63 65 73 2c 20 65 |red resources, e| 00001370 2e 67 2e 20 6d 6f 64 75 6c 65 73 0a 20 20 20 20 |.g. modules. | 00001380 0a 20 20 20 20 7c 20 43 68 65 63 6b 20 74 68 61 |. | Check tha| 00001390 74 20 74 68 65 72 65 20 69 73 20 73 74 69 6c 6c |t there is still| 000013a0 20 73 75 66 66 69 63 69 65 6e 74 20 6d 65 6d 6f | sufficient memo| 000013b0 72 79 20 74 6f 20 72 75 6e 0a 20 20 20 20 57 69 |ry to run. Wi| 000013c0 6d 70 53 6c 6f 74 20 2d 6d 69 6e 20 35 31 32 4b |mpSlot -min 512K| 000013d0 20 2d 6d 61 78 20 35 31 32 4b 0a 0a 20 20 20 20 | -max 512K.. | 000013e0 7c 20 46 69 6e 61 6c 6c 79 20 73 74 61 72 74 20 || Finally start | 000013f0 74 68 65 20 61 70 70 6c 69 63 61 74 69 6f 6e 0a |the application.| 00001400 20 20 20 20 52 75 6e 20 3c 41 70 70 24 44 69 72 | Run <App$Dir| 00001410 3e 2e 21 52 75 6e 49 6d 61 67 65 20 25 2a 30 0a |>.!RunImage %*0.| 00001420 0a 54 68 69 73 20 69 73 20 6e 6f 74 20 74 68 65 |.This is not the| 00001430 20 6f 6e 6c 79 20 77 61 79 20 69 6e 20 77 68 69 | only way in whi| 00001440 63 68 20 22 42 61 6e 6e 65 72 22 20 63 61 6e 20 |ch "Banner" can | 00001450 62 65 20 75 73 65 64 2c 20 62 75 74 20 69 74 20 |be used, but it | 00001460 69 73 20 6f 6e 65 20 6f 66 20 74 68 65 0a 62 65 |is one of the.be| 00001470 74 74 65 72 20 77 61 79 73 20 61 73 20 69 74 20 |tter ways as it | 00001480 64 6f 65 73 20 6e 6f 74 20 73 69 67 6e 69 66 69 |does not signifi| 00001490 63 61 6e 74 6c 79 20 69 6e 63 72 65 61 73 65 20 |cantly increase | 000014a0 74 68 65 20 73 74 61 72 74 2d 75 70 20 74 69 6d |the start-up tim| 000014b0 65 20 6f 66 20 74 68 65 0a 61 70 70 6c 69 63 61 |e of the.applica| 000014c0 74 69 6f 6e 3b 20 74 68 65 20 61 70 70 6c 69 63 |tion; the applic| 000014d0 61 74 69 6f 6e 20 61 6e 64 20 72 65 73 6f 75 72 |ation and resour| 000014e0 63 65 73 20 63 61 6e 20 63 6f 6e 74 69 6e 75 65 |ces can continue| 000014f0 20 6c 6f 61 64 69 6e 67 20 77 68 69 6c 65 20 74 | loading while t| 00001500 68 65 0a 62 61 6e 6e 65 72 20 69 73 20 62 65 69 |he.banner is bei| 00001510 6e 67 20 64 69 73 70 6c 61 79 65 64 2e 0a 0a 0a |ng displayed....| 00001520 4c 45 47 41 4c 20 4d 41 54 54 45 52 53 0a 0a 54 |LEGAL MATTERS..T| 00001530 68 65 20 22 42 61 6e 6e 65 72 22 20 61 70 70 6c |he "Banner" appl| 00001540 69 63 61 74 69 6f 6e 20 61 6e 64 20 64 6f 63 75 |ication and docu| 00001550 6d 65 6e 74 61 74 69 6f 6e 20 69 73 20 73 75 70 |mentation is sup| 00001560 70 6c 69 65 64 20 22 61 73 20 69 73 22 3b 20 6e |plied "as is"; n| 00001570 6f 20 77 61 72 72 61 6e 74 79 2c 0a 65 78 70 72 |o warranty,.expr| 00001580 65 73 73 20 6f 72 20 69 6d 70 6c 69 65 64 2c 20 |ess or implied, | 00001590 6f 66 20 74 68 65 20 6d 65 72 63 68 61 6e 74 61 |of the merchanta| 000015a0 62 69 6c 69 74 79 20 6f 66 20 74 68 69 73 20 73 |bility of this s| 000015b0 6f 66 74 77 61 72 65 20 6f 72 20 69 74 73 20 66 |oftware or its f| 000015c0 69 74 6e 65 73 73 0a 66 6f 72 20 61 6e 79 20 70 |itness.for any p| 000015d0 61 72 74 69 63 75 6c 61 72 20 70 75 72 70 6f 73 |articular purpos| 000015e0 65 20 69 73 20 67 69 76 65 6e 2e 20 49 6e 20 6e |e is given. In n| 000015f0 6f 20 63 69 72 63 75 6d 73 74 61 6e 63 65 73 20 |o circumstances | 00001600 73 68 61 6c 6c 20 74 68 65 20 61 75 74 68 6f 72 |shall the author| 00001610 2c 20 6f 72 0a 61 6e 79 20 70 72 6f 76 69 64 65 |, or.any provide| 00001620 72 20 6f 72 20 64 69 73 74 72 69 62 75 74 6f 72 |r or distributor| 00001630 20 6f 66 20 74 68 69 73 20 73 6f 66 74 77 61 72 | of this softwar| 00001640 65 2c 20 62 65 20 6c 69 61 62 6c 65 20 66 6f 72 |e, be liable for| 00001650 20 61 6e 79 20 64 61 6d 61 67 65 2c 20 6c 6f 73 | any damage, los| 00001660 73 0a 6f 66 20 70 72 6f 66 69 74 73 2c 20 6f 72 |s.of profits, or| 00001670 20 61 6e 79 20 69 6e 64 69 72 65 63 74 20 6f 72 | any indirect or| 00001680 20 63 6f 6e 73 65 71 75 65 6e 74 69 61 6c 20 6c | consequential l| 00001690 6f 73 73 20 61 72 69 73 69 6e 67 20 6f 75 74 20 |oss arising out | 000016a0 6f 66 20 74 68 65 20 75 73 65 20 6f 66 0a 74 68 |of the use of.th| 000016b0 69 73 20 73 6f 66 74 77 61 72 65 20 6f 72 20 69 |is software or i| 000016c0 6e 61 62 69 6c 69 74 79 20 74 6f 20 75 73 65 20 |nability to use | 000016d0 74 68 69 73 20 73 6f 66 74 77 61 72 65 2e 0a 0a |this software...| 000016e0 54 68 69 73 20 61 70 70 6c 69 63 61 74 69 6f 6e |This application| 000016f0 20 69 73 20 46 72 65 65 57 61 72 65 2e 20 50 65 | is FreeWare. Pe| 00001700 72 6d 69 73 73 69 6f 6e 20 69 73 20 67 72 61 6e |rmission is gran| 00001710 74 65 64 20 66 6f 72 20 61 6e 79 6f 6e 65 20 74 |ted for anyone t| 00001720 6f 20 64 69 73 74 72 69 62 75 74 65 0a 69 74 20 |o distribute.it | 00001730 75 6e 63 68 61 6e 67 65 64 20 61 6e 64 20 69 6e |unchanged and in| 00001740 20 69 74 73 20 65 6e 74 69 72 65 74 79 2c 20 70 | its entirety, p| 00001750 72 6f 76 69 64 69 6e 67 20 74 68 61 74 20 6e 6f |roviding that no| 00001760 20 70 72 6f 66 69 74 20 69 73 20 6d 61 64 65 20 | profit is made | 00001770 69 6e 20 74 68 65 0a 70 72 6f 63 65 73 73 2e 20 |in the.process. | 00001780 54 68 65 20 22 42 61 6e 6e 65 72 22 20 61 70 70 |The "Banner" app| 00001790 6c 69 63 61 74 69 6f 6e 20 6d 61 79 20 6e 6f 74 |lication may not| 000017a0 20 62 65 20 64 69 73 74 72 69 62 75 74 65 64 20 | be distributed | 000017b0 69 66 20 6d 6f 64 69 66 69 65 64 20 6f 72 0a 69 |if modified or.i| 000017c0 6e 63 6f 6d 70 6c 65 74 65 3b 20 6e 65 69 74 68 |ncomplete; neith| 000017d0 65 72 20 6d 61 79 20 69 74 20 62 65 20 64 69 73 |er may it be dis| 000017e0 74 72 69 62 75 74 65 64 20 77 69 74 68 6f 75 74 |tributed without| 000017f0 20 74 68 69 73 20 64 6f 63 75 6d 65 6e 74 61 74 | this documentat| 00001800 69 6f 6e 2e 0a 0a 54 6f 20 75 73 65 20 74 68 69 |ion...To use thi| 00001810 73 20 61 70 70 6c 69 63 61 74 69 6f 6e 2c 20 6f |s application, o| 00001820 72 20 61 6e 79 20 70 61 72 74 20 6f 66 20 69 74 |r any part of it| 00001830 2c 20 61 73 20 70 61 72 74 20 6f 66 20 61 20 73 |, as part of a s| 00001840 79 73 74 65 6d 20 6f 72 20 6f 74 68 65 72 0a 61 |ystem or other.a| 00001850 70 70 6c 69 63 61 74 69 6f 6e 20 74 68 61 74 20 |pplication that | 00001860 69 73 20 66 6f 72 20 73 61 6c 65 20 28 66 6f 72 |is for sale (for| 00001870 20 68 6f 77 65 76 65 72 20 6d 75 63 68 20 61 6e | however much an| 00001880 64 20 66 6f 72 20 77 68 61 74 65 76 65 72 20 72 |d for whatever r| 00001890 65 61 73 6f 6e 73 29 20 6f 72 0a 72 65 6c 65 61 |easons) or.relea| 000018a0 73 65 64 20 61 73 20 63 6f 70 79 72 69 67 68 74 |sed as copyright| 000018b0 20 6d 61 74 65 72 69 61 6c 20 74 68 65 6e 20 74 | material then t| 000018c0 68 65 20 61 75 74 68 6f 72 27 73 20 65 78 70 72 |he author's expr| 000018d0 65 73 73 20 70 65 72 6d 69 73 73 69 6f 6e 20 69 |ess permission i| 000018e0 6e 0a 77 72 69 74 69 6e 67 20 6d 75 73 74 20 62 |n.writing must b| 000018f0 65 20 6f 62 74 61 69 6e 65 64 2e 20 54 68 65 20 |e obtained. The | 00001900 61 75 74 68 6f 72 20 6d 61 69 6e 74 61 69 6e 73 |author maintains| 00001910 20 63 6f 70 79 72 69 67 68 74 20 6f 6e 20 61 6c | copyright on al| 00001920 6c 20 74 68 65 20 6d 61 74 65 72 69 61 6c 0a 73 |l the material.s| 00001930 75 70 70 6c 69 65 64 20 61 6e 64 20 72 65 73 65 |upplied and rese| 00001940 72 76 65 73 20 74 68 65 20 72 69 67 68 74 20 74 |rves the right t| 00001950 6f 20 63 68 61 6e 67 65 20 74 68 65 73 65 20 63 |o change these c| 00001960 6f 6e 64 69 74 69 6f 6e 73 20 61 74 20 61 6e 79 |onditions at any| 00001970 20 74 69 6d 65 0a 77 69 74 68 6f 75 74 20 6e 6f | time.without no| 00001980 74 69 63 65 2e 0a 0a 0a 43 4f 4e 54 41 43 54 49 |tice....CONTACTI| 00001990 4e 47 20 54 48 45 20 41 55 54 48 4f 52 0a 0a 49 |NG THE AUTHOR..I| 000019a0 20 77 6f 75 6c 64 20 62 65 20 69 6e 74 65 72 65 | would be intere| 000019b0 73 74 65 64 20 69 6e 20 68 65 61 72 69 6e 67 20 |sted in hearing | 000019c0 6f 66 20 61 6e 79 20 62 75 67 73 20 6f 72 20 6f |of any bugs or o| 000019d0 74 68 65 72 20 75 6e 65 78 70 65 63 74 65 64 20 |ther unexpected | 000019e0 66 65 61 74 75 72 65 73 20 69 6e 0a 74 68 69 73 |features in.this| 000019f0 20 61 70 70 6c 69 63 61 74 69 6f 6e 2c 20 61 6e | application, an| 00001a00 64 20 77 69 6c 6c 20 65 6e 64 65 61 76 6f 75 72 |d will endeavour| 00001a10 20 74 6f 20 63 6f 72 72 65 63 74 20 61 6e 79 20 | to correct any | 00001a20 73 75 63 68 20 70 72 6f 62 6c 65 6d 73 20 69 6e |such problems in| 00001a30 20 66 75 74 75 72 65 0a 72 65 6c 65 61 73 65 73 | future.releases| 00001a40 2e 20 53 75 67 67 65 73 74 69 6f 6e 73 20 66 6f |. Suggestions fo| 00001a50 72 20 69 6d 70 72 6f 76 65 6d 65 6e 74 73 20 61 |r improvements a| 00001a60 72 65 20 61 6c 73 6f 20 6d 6f 73 74 20 77 65 6c |re also most wel| 00001a70 63 6f 6d 65 2e 20 49 6d 70 6c 65 6d 65 6e 74 61 |come. Implementa| 00001a80 74 69 6f 6e 0a 64 65 70 65 6e 64 73 20 75 70 6f |tion.depends upo| 00001a90 6e 20 70 72 61 63 74 69 63 61 62 69 6c 69 74 79 |n practicability| 00001aa0 20 61 6e 64 20 6f 6e 20 68 6f 77 20 6d 75 63 68 | and on how much| 00001ab0 20 73 70 61 72 65 20 74 69 6d 65 20 49 20 68 61 | spare time I ha| 00001ac0 76 65 2e 0a 0a 49 66 20 79 6f 75 20 68 61 76 65 |ve...If you have| 00001ad0 20 61 6e 79 20 63 6f 6d 6d 65 6e 74 73 20 6f 6e | any comments on| 00001ae0 20 74 68 69 73 20 70 72 6f 67 72 61 6d 2c 20 6f | this program, o| 00001af0 72 20 77 6f 75 6c 64 20 6c 69 6b 65 20 74 6f 20 |r would like to | 00001b00 73 75 67 67 65 73 74 20 77 61 79 73 20 69 6e 0a |suggest ways in.| 00001b10 77 68 69 63 68 20 69 74 20 63 6f 75 6c 64 20 62 |which it could b| 00001b20 65 20 69 6d 70 72 6f 76 65 64 2c 20 49 20 63 61 |e improved, I ca| 00001b30 6e 20 62 65 20 63 6f 6e 74 61 63 74 65 64 20 61 |n be contacted a| 00001b40 74 20 6f 6e 65 20 6f 66 20 74 68 65 20 66 6f 6c |t one of the fol| 00001b50 6c 6f 77 69 6e 67 0a 61 64 64 72 65 73 73 65 73 |lowing.addresses| 00001b60 3a 0a 20 20 20 20 0a 20 20 20 20 54 68 61 6c 6e |:. . Thaln| 00001b70 61 0a 20 20 20 20 32 20 44 75 6b 65 73 20 44 72 |a. 2 Dukes Dr| 00001b80 69 76 65 0a 20 20 20 20 42 65 61 72 77 6f 6f 64 |ive. Bearwood| 00001b90 0a 20 20 20 20 42 6f 75 72 6e 65 6d 6f 75 74 68 |. Bournemouth| 00001ba0 0a 20 20 20 20 44 6f 72 73 65 74 0a 20 20 20 20 |. Dorset. | 00001bb0 42 48 31 31 20 39 53 5a 0a 20 20 20 20 0a 20 20 |BH11 9SZ. . | 00001bc0 20 20 61 6c 65 78 40 74 68 6f 75 6b 79 2e 74 63 | alex@thouky.tc| 00001bd0 70 2e 63 6f 2e 75 6b 0a 0a 49 66 20 69 6e 20 61 |p.co.uk..If in a| 00001be0 6e 79 20 63 6f 6d 6d 75 6e 69 63 61 74 69 6f 6e |ny communication| 00001bf0 20 79 6f 75 20 6d 61 6b 65 20 73 70 65 63 69 66 | you make specif| 00001c00 69 63 20 72 65 66 65 72 65 6e 63 65 20 74 6f 20 |ic reference to | 00001c10 74 68 65 20 70 72 6f 67 72 61 6d 20 63 6f 64 65 |the program code| 00001c20 20 70 6c 65 61 73 65 3a 0a 0a 20 20 20 20 51 75 | please:.. Qu| 00001c30 6f 74 65 20 74 68 65 20 76 65 72 73 69 6f 6e 20 |ote the version | 00001c40 6e 75 6d 62 65 72 20 61 6e 64 20 64 61 74 65 20 |number and date | 00001c50 6f 66 20 74 68 65 20 61 70 70 6c 69 63 61 74 69 |of the applicati| 00001c60 6f 6e 20 28 69 74 20 69 73 20 63 6f 6e 74 61 69 |on (it is contai| 00001c70 6e 65 64 0a 20 20 20 20 6e 65 61 72 20 74 68 65 |ned. near the| 00001c80 20 73 74 61 72 74 20 6f 66 20 74 68 65 20 65 78 | start of the ex| 00001c90 65 63 75 74 61 62 6c 65 20 62 69 6e 61 72 79 29 |ecutable binary)| 00001ca0 2e 0a 20 20 20 20 0a 20 20 20 20 52 65 66 65 72 |.. . Refer| 00001cb0 20 6f 6e 6c 79 20 74 6f 20 74 68 65 20 61 70 70 | only to the app| 00001cc0 6c 69 63 61 74 69 6f 6e 20 61 73 20 72 65 6c 65 |lication as rele| 00001cd0 61 73 65 64 2e 0a 20 20 20 20 0a 20 20 20 20 53 |ased.. . S| 00001ce0 75 70 70 6c 79 20 61 73 20 6d 61 6e 79 20 64 65 |upply as many de| 00001cf0 74 61 69 6c 73 20 61 73 20 70 6f 73 73 69 62 6c |tails as possibl| 00001d00 65 20 61 62 6f 75 74 20 74 68 65 20 70 72 6f 62 |e about the prob| 00001d10 6c 65 6d 2c 20 69 6e 63 6c 75 64 69 6e 67 20 74 |lem, including t| 00001d20 68 65 0a 20 20 20 20 68 61 72 64 77 61 72 65 20 |he. hardware | 00001d30 61 6e 64 20 73 6f 66 74 77 61 72 65 20 63 6f 6e |and software con| 00001d40 66 69 67 75 72 61 74 69 6f 6e 20 6f 66 20 74 68 |figuration of th| 00001d50 65 20 6d 61 63 68 69 6e 65 20 62 65 69 6e 67 20 |e machine being | 00001d60 75 73 65 64 2e 0a 0a 50 6c 65 61 73 65 20 73 65 |used...Please se| 00001d70 6e 64 20 61 20 73 74 61 6d 70 65 64 20 61 6e 64 |nd a stamped and| 00001d80 20 73 65 6c 66 20 61 64 64 72 65 73 73 65 64 20 | self addressed | 00001d90 65 6e 76 65 6c 6f 70 65 2c 20 6f 72 20 67 69 76 |envelope, or giv| 00001da0 65 20 64 65 74 61 69 6c 73 20 6f 66 20 68 6f 77 |e details of how| 00001db0 20 74 6f 0a 63 6f 6e 74 61 63 74 20 76 69 61 20 | to.contact via | 00001dc0 65 2d 6d 61 69 6c 2c 20 69 66 20 79 6f 75 20 77 |e-mail, if you w| 00001dd0 6f 75 6c 64 20 6c 69 6b 65 20 61 20 72 65 70 6c |ould like a repl| 00001de0 79 2e 0a 0a 49 20 68 6f 70 65 20 79 6f 75 20 66 |y...I hope you f| 00001df0 69 6e 64 20 74 68 69 73 20 61 70 70 6c 69 63 61 |ind this applica| 00001e00 74 69 6f 6e 20 6f 66 20 73 6f 6d 65 20 75 73 65 |tion of some use| 00001e10 2e 0a 0a 0a 41 43 4b 4e 4f 57 4c 45 44 47 45 4d |....ACKNOWLEDGEM| 00001e20 45 4e 54 53 0a 0a 49 20 77 6f 75 6c 64 20 6c 69 |ENTS..I would li| 00001e30 6b 65 20 74 6f 20 74 68 65 20 74 68 61 6e 6b 20 |ke to the thank | 00001e40 74 68 65 20 66 6f 6c 6c 6f 77 69 6e 67 20 70 65 |the following pe| 00001e50 6f 70 6c 65 20 66 6f 72 20 74 68 65 69 72 20 63 |ople for their c| 00001e60 6f 6e 74 72 69 62 75 74 69 6f 6e 73 20 74 6f 0a |ontributions to.| 00001e70 74 68 65 20 64 65 76 65 6c 6f 70 6d 65 6e 74 20 |the development | 00001e80 6f 66 20 74 68 69 73 20 61 70 70 6c 69 63 61 74 |of this applicat| 00001e90 69 6f 6e 3a 0a 0a 20 20 20 20 41 63 6f 72 6e 20 |ion:.. Acorn | 00001ea0 43 6f 6d 70 75 74 65 72 73 20 2d 20 54 68 65 20 |Computers - The | 00001eb0 52 69 73 63 20 50 43 2c 20 52 49 53 43 20 4f 53 |Risc PC, RISC OS| 00001ec0 20 61 6e 64 20 74 68 65 20 4f 62 6a 41 73 6d 20 | and the ObjAsm | 00001ed0 61 73 73 65 6d 62 6c 65 72 2e 0a 20 20 20 20 41 |assembler.. A| 00001ee0 69 64 61 6e 20 43 6f 72 65 79 20 20 20 20 20 2d |idan Corey -| 00001ef0 20 47 6f 6f 64 20 69 64 65 61 73 20 66 6f 72 20 | Good ideas for | 00001f00 69 6d 70 72 6f 76 65 6d 65 6e 74 73 2e 0a 20 20 |improvements.. | 00001f10 20 20 44 6f 6d 69 6e 69 63 20 53 79 6d 65 73 20 | Dominic Symes | 00001f20 20 20 2d 20 54 68 65 20 62 72 69 6c 6c 69 61 6e | - The brillian| 00001f30 74 20 21 5a 61 70 20 65 64 69 74 6f 72 3b 20 67 |t !Zap editor; g| 00001f40 65 74 20 61 20 63 6f 70 79 20 69 6d 6d 65 64 69 |et a copy immedi| 00001f50 61 74 65 6c 79 2e 0a 20 20 20 20 52 6f 62 69 6e |ately.. Robin| 00001f60 20 57 61 74 74 73 20 20 20 20 20 2d 20 21 4c 61 | Watts - !La| 00001f70 72 67 65 72 2c 20 74 68 65 20 67 72 65 61 74 65 |rger, the greate| 00001f80 73 74 20 62 61 63 6b 64 72 6f 70 20 70 72 6f 67 |st backdrop prog| 00001f90 72 61 6d 20 65 76 65 72 2e 0a 20 20 20 20 4d 61 |ram ever.. Ma| 00001fa0 72 6b 20 57 6f 6f 64 69 6e 67 20 20 20 20 2d 20 |rk Wooding - | 00001fb0 21 47 6c 61 73 73 2c 20 74 68 65 20 62 65 73 74 |!Glass, the best| 00001fc0 20 74 65 6d 70 6c 61 74 65 20 65 64 69 74 6f 72 | template editor| 00001fd0 2e 0a 0a 61 6e 64 20 65 76 65 72 79 6f 6e 65 20 |...and everyone | 00001fe0 61 74 20 74 68 65 20 41 63 6f 72 6e 20 55 73 65 |at the Acorn Use| 00001ff0 72 20 47 72 6f 75 70 20 69 6e 20 4f 78 66 6f 72 |r Group in Oxfor| 00002000 64 2e 0a 0a 0a 54 48 49 4e 47 53 20 54 4f 20 44 |d....THINGS TO D| 00002010 4f 0a 0a 54 68 65 20 66 6f 6c 6c 6f 77 69 6e 67 |O..The following| 00002020 20 61 72 65 20 63 68 61 6e 67 65 73 20 74 68 61 | are changes tha| 00002030 74 20 6d 61 79 20 62 65 20 6d 61 64 65 20 74 6f |t may be made to| 00002040 20 74 68 69 73 20 61 70 70 6c 69 63 61 74 69 6f | this applicatio| 00002050 6e 20 73 6f 6d 65 74 69 6d 65 20 69 6e 0a 74 68 |n sometime in.th| 00002060 65 20 66 75 74 75 72 65 3a 0a 0a 20 20 20 20 4f |e future:.. O| 00002070 6e 6c 79 20 61 63 63 65 70 74 20 22 3b 22 20 61 |nly accept ";" a| 00002080 73 20 76 61 6c 69 64 61 74 69 6f 6e 20 73 74 72 |s validation str| 00002090 69 6e 67 20 73 65 70 61 72 61 74 6f 72 20 69 66 |ing separator if| 000020a0 20 69 74 20 69 73 20 6e 6f 74 20 70 72 65 63 65 | it is not prece| 000020b0 64 65 64 20 62 79 20 61 0a 20 20 20 20 22 5c 22 |ded by a. "\"| 000020c0 20 63 68 61 72 61 63 74 65 72 2e 0a 0a 20 20 20 | character... | 000020d0 20 44 65 6c 65 74 65 20 22 4d 22 20 63 6f 6d 6d | Delete "M" comm| 000020e0 61 6e 64 73 20 66 72 6f 6d 20 76 61 6c 69 64 61 |ands from valida| 000020f0 74 69 6f 6e 20 73 74 72 69 6e 67 73 20 62 65 66 |tion strings bef| 00002100 6f 72 65 20 70 61 73 73 69 6e 67 20 74 68 65 20 |ore passing the | 00002110 77 69 6e 64 6f 77 20 74 6f 0a 20 20 20 20 74 68 |window to. th| 00002120 65 20 77 69 6d 70 2e 20 54 68 69 73 20 77 6f 75 |e wimp. This wou| 00002130 6c 64 20 70 72 6f 74 65 63 74 20 61 67 61 69 6e |ld protect again| 00002140 73 74 20 61 6e 79 20 6c 61 74 65 72 20 76 65 72 |st any later ver| 00002150 73 69 6f 6e 73 20 6f 66 20 74 68 65 20 77 69 6d |sions of the wim| 00002160 70 0a 20 20 20 20 74 72 79 69 6e 67 20 74 6f 20 |p. trying to | 00002170 6d 69 73 75 73 65 20 22 4d 22 20 76 61 6c 69 64 |misuse "M" valid| 00002180 61 74 69 6f 6e 20 73 74 72 69 6e 67 73 2e 0a 0a |ation strings...| 00002190 0a 56 45 52 53 49 4f 4e 20 48 49 53 54 4f 52 59 |.VERSION HISTORY| 000021a0 0a 0a 30 2e 30 30 20 28 31 36 2d 41 70 72 2d 39 |..0.00 (16-Apr-9| 000021b0 35 29 20 20 20 20 4f 72 69 67 69 6e 61 6c 20 64 |5) Original d| 000021c0 65 76 65 6c 6f 70 6d 65 6e 74 20 76 65 72 73 69 |evelopment versi| 000021d0 6f 6e 2e 0a 0a 30 2e 30 31 20 28 32 31 2d 41 70 |on...0.01 (21-Ap| 000021e0 72 2d 39 35 29 20 20 20 20 43 6f 6d 6d 61 6e 64 |r-95) Command| 000021f0 2d 6c 69 6e 65 20 61 72 67 75 6d 65 6e 74 73 20 |-line arguments | 00002200 61 64 64 65 64 20 74 6f 20 63 6f 6e 66 69 67 75 |added to configu| 00002210 72 65 20 64 69 73 70 6c 61 79 20 74 69 6d 65 20 |re display time | 00002220 61 6e 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 |and. | 00002230 20 20 20 20 20 20 20 20 66 69 6c 65 6e 61 6d 65 | filename| 00002240 73 2e 0a 0a 30 2e 30 32 20 28 32 32 2d 41 70 72 |s...0.02 (22-Apr| 00002250 2d 39 35 29 20 20 20 20 43 6f 72 72 65 63 74 65 |-95) Correcte| 00002260 64 20 68 61 6e 64 6c 69 6e 67 20 6f 66 20 66 6f |d handling of fo| 00002270 6e 74 73 20 6f 6e 20 6d 6f 64 65 20 63 68 61 6e |nts on mode chan| 00002280 67 65 73 2e 20 4d 69 73 61 6c 69 67 6e 65 64 0a |ges. Misaligned.| 00002290 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 000022a0 20 20 20 20 77 6f 72 64 20 6c 6f 61 64 20 72 65 | word load re| 000022b0 6d 6f 76 65 64 2e 20 57 69 6d 70 5f 52 65 61 64 |moved. Wimp_Read| 000022c0 53 79 73 49 6e 66 6f 20 75 73 65 64 20 74 6f 20 |SysInfo used to | 000022d0 67 65 74 20 73 70 72 69 74 65 0a 20 20 20 20 20 |get sprite. | 000022e0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 66 | f| 000022f0 69 6c 65 20 73 75 66 66 69 78 20 66 6f 72 20 63 |ile suffix for c| 00002300 75 72 72 65 6e 74 20 6d 6f 64 65 2c 20 72 61 74 |urrent mode, rat| 00002310 68 65 72 20 74 68 61 6e 20 67 65 6e 65 72 61 74 |her than generat| 00002320 69 6e 67 20 69 74 0a 20 20 20 20 20 20 20 20 20 |ing it. | 00002330 20 20 20 20 20 20 20 20 20 20 20 66 72 6f 6d 20 | from | 00002340 6d 6f 64 65 20 76 61 72 69 61 62 6c 65 73 2e 20 |mode variables. | 00002350 4c 69 6e 6b 65 64 20 61 73 20 61 20 62 69 6e 61 |Linked as a bina| 00002360 72 79 20 72 61 74 68 65 72 20 74 68 61 6e 20 41 |ry rather than A| 00002370 49 46 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 |IF.. | 00002380 20 20 20 20 20 20 20 20 57 69 6e 64 6f 77 20 72 | Window r| 00002390 65 63 65 6e 74 72 65 64 20 6f 6e 20 6d 6f 64 65 |ecentred on mode| 000023a0 20 63 68 61 6e 67 65 2e 20 49 6d 70 72 6f 76 65 | change. Improve| 000023b0 64 20 65 72 72 6f 72 20 68 61 6e 64 6c 69 6e 67 |d error handling| 000023c0 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |.. | 000023d0 20 20 20 20 20 20 46 6f 6e 74 20 74 61 62 6c 65 | Font table| 000023e0 20 6d 6f 76 65 64 20 66 72 6f 6d 20 62 69 6e 61 | moved from bina| 000023f0 72 79 20 69 6d 61 67 65 20 74 6f 20 61 70 70 6c |ry image to appl| 00002400 69 63 61 74 69 6f 6e 0a 20 20 20 20 20 20 20 20 |ication. | 00002410 20 20 20 20 20 20 20 20 20 20 20 20 77 6f 72 6b | work| 00002420 73 70 61 63 65 2e 0a 0a 30 2e 30 33 20 28 30 33 |space...0.03 (03| 00002430 2d 4d 61 79 2d 39 35 29 20 20 20 20 54 69 64 69 |-May-95) Tidi| 00002440 65 64 20 75 70 20 74 68 65 20 63 6f 64 65 20 61 |ed up the code a| 00002450 6e 64 20 69 6d 70 72 6f 76 65 64 20 74 68 65 20 |nd improved the | 00002460 64 6f 63 75 6d 65 6e 74 61 74 69 6f 6e 2e 0a 0a |documentation...| 00002470 31 2e 30 30 20 28 30 39 2d 4d 61 79 2d 39 35 29 |1.00 (09-May-95)| 00002480 20 20 20 20 46 69 72 73 74 20 6f 66 66 69 63 69 | First offici| 00002490 61 6c 20 72 65 6c 65 61 73 65 20 76 65 72 73 69 |al release versi| 000024a0 6f 6e 2e 0a 0a 31 2e 30 31 20 28 32 30 2d 4a 61 |on...1.01 (20-Ja| 000024b0 6e 2d 39 37 29 20 20 20 20 45 72 72 6f 72 20 63 |n-97) Error c| 000024c0 68 65 63 6b 69 6e 67 20 69 6d 70 72 6f 76 65 64 |hecking improved| 000024d0 20 77 68 65 6e 20 6c 6f 61 64 69 6e 67 20 74 65 | when loading te| 000024e0 6d 70 6c 61 74 65 73 20 66 69 6c 65 2e |mplates file.| 000024ed