Home » Archimedes archive » Micro User » MU 1991-03.adf » PD-Stuff » Utilities/Clocks/!IconClock/!Help
Utilities/Clocks/!IconClock/!Help
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 » Micro User » MU 1991-03.adf » PD-Stuff |
Filename: | Utilities/Clocks/!IconClock/!Help |
Read OK: | ✔ |
File size: | 0E81 bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
| > !Help for !IconClock This program displays a clock on the iconbar. The clock may be either a twelve or twenty four hour clock. The clock also has three types of clockface available. These are raised, lowered and border. The time format and clockface type can be selected from the iconbar menu and its submenus. To configure the program to your own favourite clock type you can use the system variable IconClock$Options. There are six (twelve) possible values of the variable. They are :- 24R or 24r 24 hour clock, raised clockface (the default) 24L or 24l 24 hour clock, lowered clockface 24B or 24b 24 hour clock, border clockface 12R or 12r 12 hour clock, raised clockface 12L or 12l 12 hour clock, lowered clockface 12B or 12b 12 hour clock, border clockface When the iconclock is run the variable IconClock$Options is looked for. If it is isn't defined then the variable is defined to the default, of 24R. If it is defined it is checked for validity. If it is invalid an error window is displayed saying the the variable is invalid and has been replaced by the default. If it is valid then the desired clockface and time format are used. The iconclock is really a module which, once loaded, will start the clock each time the desktop is entered. The reason it is in an application directory is one so that you will hopefully read this file and two so that the icons required can be loaded into the wimp pool. If you have a harddisc there are two ways to run this application, either by making to application be run every time the desktop is started (see below for ways to do this if don't know how to), or by loading the sprites (see below for comment on this) and the module before the desktop is started. To start the application every time the desktop is started you can use *Desktop <full path>.!IconClock eg *Desktop adfs::Disc4.$.Desk_Utils.!IconClock Or if you want to run more than one task upon startup you can use *Desktop -File <full path of file> where this file contains a sequence of commands to be run upon startup. So to run the iconclock you should include the line *Run <full path>.!IconClock somewhere in the file. If the module is loaded seperately (which is the preferable way to run this application) the sprite you plan to use for the clockface must be loaded. Note you only have to load the sprite for the clockface you want to use. So once you have decided which clockface you like best copy the sprite out of the !Sprites file in this application into a seperate file and *IconSprites this file in your !Boot file. Or I recomend you put it in the !Sprites of your !System directory and *Run this application in your !Boot file. I know this all sounds horribly technical but it is not an easy thing to explain (believe me). If you have only loaded some of the sprites then some of the menu entries on the clockface menu will be greyed (unselectable). If the sprite for the clockface selected by the IconClock$Options variable is not in the wimp pool upon startup then an error message will be generated and the application will not startup. Although I have tested this program fairly thoroughly I offer no guarentee what so ever and accept no responsibility for any damage caused by its use or misuse. This program is in the public domain and may be freely copied as long as no charges are made for it all the files are left unchanged. You may use the source of parts of it in your own programs as long I am credited. Yours, Pop Mobility Freak (Ian Ashley)
00000000 7c 20 3e 20 21 48 65 6c 70 20 66 6f 72 20 21 49 || > !Help for !I| 00000010 63 6f 6e 43 6c 6f 63 6b 0a 0a 20 20 20 54 68 69 |conClock.. Thi| 00000020 73 20 70 72 6f 67 72 61 6d 20 64 69 73 70 6c 61 |s program displa| 00000030 79 73 20 61 20 63 6c 6f 63 6b 20 6f 6e 20 74 68 |ys a clock on th| 00000040 65 20 69 63 6f 6e 62 61 72 2e 20 54 68 65 20 63 |e iconbar. The c| 00000050 6c 6f 63 6b 20 6d 61 79 20 62 65 20 65 69 74 68 |lock may be eith| 00000060 65 72 20 61 0a 74 77 65 6c 76 65 20 6f 72 20 74 |er a.twelve or t| 00000070 77 65 6e 74 79 20 66 6f 75 72 20 68 6f 75 72 20 |wenty four hour | 00000080 63 6c 6f 63 6b 2e 20 54 68 65 20 63 6c 6f 63 6b |clock. The clock| 00000090 20 61 6c 73 6f 20 68 61 73 20 74 68 72 65 65 20 | also has three | 000000a0 74 79 70 65 73 20 6f 66 20 63 6c 6f 63 6b 66 61 |types of clockfa| 000000b0 63 65 0a 61 76 61 69 6c 61 62 6c 65 2e 20 54 68 |ce.available. Th| 000000c0 65 73 65 20 61 72 65 20 72 61 69 73 65 64 2c 20 |ese are raised, | 000000d0 6c 6f 77 65 72 65 64 20 61 6e 64 20 62 6f 72 64 |lowered and bord| 000000e0 65 72 2e 20 54 68 65 20 74 69 6d 65 20 66 6f 72 |er. The time for| 000000f0 6d 61 74 20 61 6e 64 0a 63 6c 6f 63 6b 66 61 63 |mat and.clockfac| 00000100 65 20 74 79 70 65 20 63 61 6e 20 62 65 20 73 65 |e type can be se| 00000110 6c 65 63 74 65 64 20 66 72 6f 6d 20 74 68 65 20 |lected from the | 00000120 69 63 6f 6e 62 61 72 20 6d 65 6e 75 20 61 6e 64 |iconbar menu and| 00000130 20 69 74 73 20 73 75 62 6d 65 6e 75 73 2e 0a 0a | its submenus...| 00000140 20 20 20 54 6f 20 63 6f 6e 66 69 67 75 72 65 20 | To configure | 00000150 74 68 65 20 70 72 6f 67 72 61 6d 20 74 6f 20 79 |the program to y| 00000160 6f 75 72 20 6f 77 6e 20 66 61 76 6f 75 72 69 74 |our own favourit| 00000170 65 20 63 6c 6f 63 6b 20 74 79 70 65 20 79 6f 75 |e clock type you| 00000180 20 63 61 6e 20 75 73 65 20 74 68 65 0a 73 79 73 | can use the.sys| 00000190 74 65 6d 20 76 61 72 69 61 62 6c 65 20 49 63 6f |tem variable Ico| 000001a0 6e 43 6c 6f 63 6b 24 4f 70 74 69 6f 6e 73 2e 20 |nClock$Options. | 000001b0 54 68 65 72 65 20 61 72 65 20 73 69 78 20 28 74 |There are six (t| 000001c0 77 65 6c 76 65 29 20 70 6f 73 73 69 62 6c 65 20 |welve) possible | 000001d0 76 61 6c 75 65 73 20 6f 66 0a 74 68 65 20 76 61 |values of.the va| 000001e0 72 69 61 62 6c 65 2e 20 54 68 65 79 20 61 72 65 |riable. They are| 000001f0 20 3a 2d 0a 0a 20 20 20 20 20 20 20 20 32 34 52 | :-.. 24R| 00000200 20 6f 72 20 32 34 72 20 20 20 20 20 20 32 34 20 | or 24r 24 | 00000210 68 6f 75 72 20 63 6c 6f 63 6b 2c 20 72 61 69 73 |hour clock, rais| 00000220 65 64 20 63 6c 6f 63 6b 66 61 63 65 20 28 74 68 |ed clockface (th| 00000230 65 20 64 65 66 61 75 6c 74 29 0a 20 20 20 20 20 |e default). | 00000240 20 20 20 32 34 4c 20 6f 72 20 32 34 6c 20 20 20 | 24L or 24l | 00000250 20 20 20 32 34 20 68 6f 75 72 20 63 6c 6f 63 6b | 24 hour clock| 00000260 2c 20 6c 6f 77 65 72 65 64 20 63 6c 6f 63 6b 66 |, lowered clockf| 00000270 61 63 65 0a 20 20 20 20 20 20 20 20 32 34 42 20 |ace. 24B | 00000280 6f 72 20 32 34 62 20 20 20 20 20 20 32 34 20 68 |or 24b 24 h| 00000290 6f 75 72 20 63 6c 6f 63 6b 2c 20 62 6f 72 64 65 |our clock, borde| 000002a0 72 20 63 6c 6f 63 6b 66 61 63 65 0a 20 20 20 20 |r clockface. | 000002b0 20 20 20 20 31 32 52 20 6f 72 20 31 32 72 20 20 | 12R or 12r | 000002c0 20 20 20 20 31 32 20 68 6f 75 72 20 63 6c 6f 63 | 12 hour cloc| 000002d0 6b 2c 20 72 61 69 73 65 64 20 63 6c 6f 63 6b 66 |k, raised clockf| 000002e0 61 63 65 0a 20 20 20 20 20 20 20 20 31 32 4c 20 |ace. 12L | 000002f0 6f 72 20 31 32 6c 20 20 20 20 20 20 31 32 20 68 |or 12l 12 h| 00000300 6f 75 72 20 63 6c 6f 63 6b 2c 20 6c 6f 77 65 72 |our clock, lower| 00000310 65 64 20 63 6c 6f 63 6b 66 61 63 65 0a 20 20 20 |ed clockface. | 00000320 20 20 20 20 20 31 32 42 20 6f 72 20 31 32 62 20 | 12B or 12b | 00000330 20 20 20 20 20 31 32 20 68 6f 75 72 20 63 6c 6f | 12 hour clo| 00000340 63 6b 2c 20 62 6f 72 64 65 72 20 63 6c 6f 63 6b |ck, border clock| 00000350 66 61 63 65 0a 0a 20 20 20 57 68 65 6e 20 74 68 |face.. When th| 00000360 65 20 69 63 6f 6e 63 6c 6f 63 6b 20 69 73 20 72 |e iconclock is r| 00000370 75 6e 20 74 68 65 20 76 61 72 69 61 62 6c 65 20 |un the variable | 00000380 49 63 6f 6e 43 6c 6f 63 6b 24 4f 70 74 69 6f 6e |IconClock$Option| 00000390 73 20 69 73 20 6c 6f 6f 6b 65 64 20 66 6f 72 2e |s is looked for.| 000003a0 20 49 66 0a 69 74 20 69 73 20 69 73 6e 27 74 20 | If.it is isn't | 000003b0 64 65 66 69 6e 65 64 20 74 68 65 6e 20 74 68 65 |defined then the| 000003c0 20 76 61 72 69 61 62 6c 65 20 69 73 20 64 65 66 | variable is def| 000003d0 69 6e 65 64 20 74 6f 20 74 68 65 20 64 65 66 61 |ined to the defa| 000003e0 75 6c 74 2c 20 6f 66 20 32 34 52 2e 20 49 66 0a |ult, of 24R. If.| 000003f0 69 74 20 69 73 20 64 65 66 69 6e 65 64 20 69 74 |it is defined it| 00000400 20 69 73 20 63 68 65 63 6b 65 64 20 66 6f 72 20 | is checked for | 00000410 76 61 6c 69 64 69 74 79 2e 20 49 66 20 69 74 20 |validity. If it | 00000420 69 73 20 69 6e 76 61 6c 69 64 20 61 6e 20 65 72 |is invalid an er| 00000430 72 6f 72 20 77 69 6e 64 6f 77 20 69 73 0a 64 69 |ror window is.di| 00000440 73 70 6c 61 79 65 64 20 73 61 79 69 6e 67 20 74 |splayed saying t| 00000450 68 65 20 74 68 65 20 76 61 72 69 61 62 6c 65 20 |he the variable | 00000460 69 73 20 69 6e 76 61 6c 69 64 20 61 6e 64 20 68 |is invalid and h| 00000470 61 73 20 62 65 65 6e 20 72 65 70 6c 61 63 65 64 |as been replaced| 00000480 20 62 79 20 74 68 65 0a 64 65 66 61 75 6c 74 2e | by the.default.| 00000490 20 49 66 20 69 74 20 69 73 20 76 61 6c 69 64 20 | If it is valid | 000004a0 74 68 65 6e 20 74 68 65 20 64 65 73 69 72 65 64 |then the desired| 000004b0 20 63 6c 6f 63 6b 66 61 63 65 20 61 6e 64 20 74 | clockface and t| 000004c0 69 6d 65 20 66 6f 72 6d 61 74 20 61 72 65 20 75 |ime format are u| 000004d0 73 65 64 2e 0a 0a 20 20 20 54 68 65 20 69 63 6f |sed... The ico| 000004e0 6e 63 6c 6f 63 6b 20 69 73 20 72 65 61 6c 6c 79 |nclock is really| 000004f0 20 61 20 6d 6f 64 75 6c 65 20 77 68 69 63 68 2c | a module which,| 00000500 20 6f 6e 63 65 20 6c 6f 61 64 65 64 2c 20 77 69 | once loaded, wi| 00000510 6c 6c 20 73 74 61 72 74 20 74 68 65 20 63 6c 6f |ll start the clo| 00000520 63 6b 0a 65 61 63 68 20 74 69 6d 65 20 74 68 65 |ck.each time the| 00000530 20 64 65 73 6b 74 6f 70 20 69 73 20 65 6e 74 65 | desktop is ente| 00000540 72 65 64 2e 20 54 68 65 20 72 65 61 73 6f 6e 20 |red. The reason | 00000550 69 74 20 69 73 20 69 6e 20 61 6e 20 61 70 70 6c |it is in an appl| 00000560 69 63 61 74 69 6f 6e 0a 64 69 72 65 63 74 6f 72 |ication.director| 00000570 79 20 69 73 20 6f 6e 65 20 73 6f 20 74 68 61 74 |y is one so that| 00000580 20 79 6f 75 20 77 69 6c 6c 20 68 6f 70 65 66 75 | you will hopefu| 00000590 6c 6c 79 20 72 65 61 64 20 74 68 69 73 20 66 69 |lly read this fi| 000005a0 6c 65 20 61 6e 64 20 74 77 6f 20 73 6f 20 74 68 |le and two so th| 000005b0 61 74 0a 74 68 65 20 69 63 6f 6e 73 20 72 65 71 |at.the icons req| 000005c0 75 69 72 65 64 20 63 61 6e 20 62 65 20 6c 6f 61 |uired can be loa| 000005d0 64 65 64 20 69 6e 74 6f 20 74 68 65 20 77 69 6d |ded into the wim| 000005e0 70 20 70 6f 6f 6c 2e 0a 0a 20 20 20 49 66 20 79 |p pool... If y| 000005f0 6f 75 20 68 61 76 65 20 61 20 68 61 72 64 64 69 |ou have a harddi| 00000600 73 63 20 74 68 65 72 65 20 61 72 65 20 74 77 6f |sc there are two| 00000610 20 77 61 79 73 20 74 6f 20 72 75 6e 20 74 68 69 | ways to run thi| 00000620 73 20 61 70 70 6c 69 63 61 74 69 6f 6e 2c 20 65 |s application, e| 00000630 69 74 68 65 72 0a 62 79 20 6d 61 6b 69 6e 67 20 |ither.by making | 00000640 74 6f 20 61 70 70 6c 69 63 61 74 69 6f 6e 20 62 |to application b| 00000650 65 20 72 75 6e 20 65 76 65 72 79 20 74 69 6d 65 |e run every time| 00000660 20 74 68 65 20 64 65 73 6b 74 6f 70 20 69 73 20 | the desktop is | 00000670 73 74 61 72 74 65 64 20 28 73 65 65 20 62 65 6c |started (see bel| 00000680 6f 77 0a 66 6f 72 20 77 61 79 73 20 74 6f 20 64 |ow.for ways to d| 00000690 6f 20 74 68 69 73 20 69 66 20 64 6f 6e 27 74 20 |o this if don't | 000006a0 6b 6e 6f 77 20 68 6f 77 20 74 6f 29 2c 20 6f 72 |know how to), or| 000006b0 20 62 79 20 6c 6f 61 64 69 6e 67 20 74 68 65 20 | by loading the | 000006c0 73 70 72 69 74 65 73 20 28 73 65 65 0a 62 65 6c |sprites (see.bel| 000006d0 6f 77 20 66 6f 72 20 63 6f 6d 6d 65 6e 74 20 6f |ow for comment o| 000006e0 6e 20 74 68 69 73 29 20 61 6e 64 20 74 68 65 20 |n this) and the | 000006f0 6d 6f 64 75 6c 65 20 62 65 66 6f 72 65 20 74 68 |module before th| 00000700 65 20 64 65 73 6b 74 6f 70 20 69 73 20 73 74 61 |e desktop is sta| 00000710 72 74 65 64 2e 0a 0a 20 20 20 54 6f 20 73 74 61 |rted... To sta| 00000720 72 74 20 74 68 65 20 61 70 70 6c 69 63 61 74 69 |rt the applicati| 00000730 6f 6e 20 65 76 65 72 79 20 74 69 6d 65 20 74 68 |on every time th| 00000740 65 20 64 65 73 6b 74 6f 70 20 69 73 20 73 74 61 |e desktop is sta| 00000750 72 74 65 64 20 79 6f 75 20 63 61 6e 20 75 73 65 |rted you can use| 00000760 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |. | 00000770 20 2a 44 65 73 6b 74 6f 70 20 3c 66 75 6c 6c 20 | *Desktop <full | 00000780 70 61 74 68 3e 2e 21 49 63 6f 6e 43 6c 6f 63 6b |path>.!IconClock| 00000790 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 65 67 |. eg| 000007a0 20 2a 44 65 73 6b 74 6f 70 20 61 64 66 73 3a 3a | *Desktop adfs::| 000007b0 44 69 73 63 34 2e 24 2e 44 65 73 6b 5f 55 74 69 |Disc4.$.Desk_Uti| 000007c0 6c 73 2e 21 49 63 6f 6e 43 6c 6f 63 6b 0a 0a 20 |ls.!IconClock.. | 000007d0 20 20 4f 72 20 69 66 20 79 6f 75 20 77 61 6e 74 | Or if you want| 000007e0 20 74 6f 20 72 75 6e 20 6d 6f 72 65 20 74 68 61 | to run more tha| 000007f0 6e 20 6f 6e 65 20 74 61 73 6b 20 75 70 6f 6e 20 |n one task upon | 00000800 73 74 61 72 74 75 70 20 79 6f 75 20 63 61 6e 20 |startup you can | 00000810 75 73 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 |use. | 00000820 20 20 20 20 2a 44 65 73 6b 74 6f 70 20 2d 46 69 | *Desktop -Fi| 00000830 6c 65 20 3c 66 75 6c 6c 20 70 61 74 68 20 6f 66 |le <full path of| 00000840 20 66 69 6c 65 3e 0a 77 68 65 72 65 20 74 68 69 | file>.where thi| 00000850 73 20 66 69 6c 65 20 63 6f 6e 74 61 69 6e 73 20 |s file contains | 00000860 61 20 73 65 71 75 65 6e 63 65 20 6f 66 20 63 6f |a sequence of co| 00000870 6d 6d 61 6e 64 73 20 74 6f 20 62 65 20 72 75 6e |mmands to be run| 00000880 20 75 70 6f 6e 20 73 74 61 72 74 75 70 2e 20 53 | upon startup. S| 00000890 6f 20 74 6f 0a 72 75 6e 20 74 68 65 20 69 63 6f |o to.run the ico| 000008a0 6e 63 6c 6f 63 6b 20 79 6f 75 20 73 68 6f 75 6c |nclock you shoul| 000008b0 64 20 69 6e 63 6c 75 64 65 20 74 68 65 20 6c 69 |d include the li| 000008c0 6e 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 |ne. | 000008d0 20 20 20 2a 52 75 6e 20 3c 66 75 6c 6c 20 70 61 | *Run <full pa| 000008e0 74 68 3e 2e 21 49 63 6f 6e 43 6c 6f 63 6b 0a 73 |th>.!IconClock.s| 000008f0 6f 6d 65 77 68 65 72 65 20 69 6e 20 74 68 65 20 |omewhere in the | 00000900 66 69 6c 65 2e 0a 0a 20 20 20 49 66 20 74 68 65 |file... If the| 00000910 20 6d 6f 64 75 6c 65 20 69 73 20 6c 6f 61 64 65 | module is loade| 00000920 64 20 73 65 70 65 72 61 74 65 6c 79 20 28 77 68 |d seperately (wh| 00000930 69 63 68 20 69 73 20 74 68 65 20 70 72 65 66 65 |ich is the prefe| 00000940 72 61 62 6c 65 20 77 61 79 20 74 6f 20 72 75 6e |rable way to run| 00000950 0a 74 68 69 73 20 61 70 70 6c 69 63 61 74 69 6f |.this applicatio| 00000960 6e 29 20 74 68 65 20 73 70 72 69 74 65 20 79 6f |n) the sprite yo| 00000970 75 20 70 6c 61 6e 20 74 6f 20 75 73 65 20 66 6f |u plan to use fo| 00000980 72 20 74 68 65 20 63 6c 6f 63 6b 66 61 63 65 20 |r the clockface | 00000990 6d 75 73 74 20 62 65 0a 6c 6f 61 64 65 64 2e 20 |must be.loaded. | 000009a0 4e 6f 74 65 20 79 6f 75 20 6f 6e 6c 79 20 68 61 |Note you only ha| 000009b0 76 65 20 74 6f 20 6c 6f 61 64 20 74 68 65 20 73 |ve to load the s| 000009c0 70 72 69 74 65 20 66 6f 72 20 74 68 65 20 63 6c |prite for the cl| 000009d0 6f 63 6b 66 61 63 65 20 79 6f 75 20 77 61 6e 74 |ockface you want| 000009e0 20 74 6f 0a 75 73 65 2e 20 53 6f 20 6f 6e 63 65 | to.use. So once| 000009f0 20 79 6f 75 20 68 61 76 65 20 64 65 63 69 64 65 | you have decide| 00000a00 64 20 77 68 69 63 68 20 63 6c 6f 63 6b 66 61 63 |d which clockfac| 00000a10 65 20 79 6f 75 20 6c 69 6b 65 20 62 65 73 74 20 |e you like best | 00000a20 63 6f 70 79 20 74 68 65 20 73 70 72 69 74 65 0a |copy the sprite.| 00000a30 6f 75 74 20 6f 66 20 74 68 65 20 21 53 70 72 69 |out of the !Spri| 00000a40 74 65 73 20 66 69 6c 65 20 69 6e 20 74 68 69 73 |tes file in this| 00000a50 20 61 70 70 6c 69 63 61 74 69 6f 6e 20 69 6e 74 | application int| 00000a60 6f 20 61 20 73 65 70 65 72 61 74 65 20 66 69 6c |o a seperate fil| 00000a70 65 20 61 6e 64 0a 2a 49 63 6f 6e 53 70 72 69 74 |e and.*IconSprit| 00000a80 65 73 20 74 68 69 73 20 66 69 6c 65 20 69 6e 20 |es this file in | 00000a90 79 6f 75 72 20 21 42 6f 6f 74 20 66 69 6c 65 2e |your !Boot file.| 00000aa0 20 4f 72 20 49 20 72 65 63 6f 6d 65 6e 64 20 79 | Or I recomend y| 00000ab0 6f 75 20 70 75 74 20 69 74 20 69 6e 20 74 68 65 |ou put it in the| 00000ac0 0a 21 53 70 72 69 74 65 73 20 6f 66 20 79 6f 75 |.!Sprites of you| 00000ad0 72 20 21 53 79 73 74 65 6d 20 64 69 72 65 63 74 |r !System direct| 00000ae0 6f 72 79 20 61 6e 64 20 2a 52 75 6e 20 74 68 69 |ory and *Run thi| 00000af0 73 20 61 70 70 6c 69 63 61 74 69 6f 6e 20 69 6e |s application in| 00000b00 20 79 6f 75 72 20 21 42 6f 6f 74 0a 66 69 6c 65 | your !Boot.file| 00000b10 2e 20 49 20 6b 6e 6f 77 20 74 68 69 73 20 61 6c |. I know this al| 00000b20 6c 20 73 6f 75 6e 64 73 20 68 6f 72 72 69 62 6c |l sounds horribl| 00000b30 79 20 74 65 63 68 6e 69 63 61 6c 20 62 75 74 20 |y technical but | 00000b40 69 74 20 69 73 20 6e 6f 74 20 61 6e 20 65 61 73 |it is not an eas| 00000b50 79 20 74 68 69 6e 67 0a 74 6f 20 65 78 70 6c 61 |y thing.to expla| 00000b60 69 6e 20 28 62 65 6c 69 65 76 65 20 6d 65 29 2e |in (believe me).| 00000b70 20 49 66 20 79 6f 75 20 68 61 76 65 20 6f 6e 6c | If you have onl| 00000b80 79 20 6c 6f 61 64 65 64 20 73 6f 6d 65 20 6f 66 |y loaded some of| 00000b90 20 74 68 65 20 73 70 72 69 74 65 73 20 74 68 65 | the sprites the| 00000ba0 6e 0a 73 6f 6d 65 20 6f 66 20 74 68 65 20 6d 65 |n.some of the me| 00000bb0 6e 75 20 65 6e 74 72 69 65 73 20 6f 6e 20 74 68 |nu entries on th| 00000bc0 65 20 63 6c 6f 63 6b 66 61 63 65 20 6d 65 6e 75 |e clockface menu| 00000bd0 20 77 69 6c 6c 20 62 65 20 67 72 65 79 65 64 20 | will be greyed | 00000be0 28 75 6e 73 65 6c 65 63 74 61 62 6c 65 29 2e 0a |(unselectable)..| 00000bf0 20 20 20 49 66 20 74 68 65 20 73 70 72 69 74 65 | If the sprite| 00000c00 20 66 6f 72 20 74 68 65 20 63 6c 6f 63 6b 66 61 | for the clockfa| 00000c10 63 65 20 73 65 6c 65 63 74 65 64 20 62 79 20 74 |ce selected by t| 00000c20 68 65 20 49 63 6f 6e 43 6c 6f 63 6b 24 4f 70 74 |he IconClock$Opt| 00000c30 69 6f 6e 73 20 76 61 72 69 61 62 6c 65 0a 69 73 |ions variable.is| 00000c40 20 6e 6f 74 20 69 6e 20 74 68 65 20 77 69 6d 70 | not in the wimp| 00000c50 20 70 6f 6f 6c 20 75 70 6f 6e 20 73 74 61 72 74 | pool upon start| 00000c60 75 70 20 74 68 65 6e 20 61 6e 20 65 72 72 6f 72 |up then an error| 00000c70 20 6d 65 73 73 61 67 65 20 77 69 6c 6c 20 62 65 | message will be| 00000c80 20 67 65 6e 65 72 61 74 65 64 0a 61 6e 64 20 74 | generated.and t| 00000c90 68 65 20 61 70 70 6c 69 63 61 74 69 6f 6e 20 77 |he application w| 00000ca0 69 6c 6c 20 6e 6f 74 20 73 74 61 72 74 75 70 2e |ill not startup.| 00000cb0 0a 0a 20 20 20 41 6c 74 68 6f 75 67 68 20 49 20 |.. Although I | 00000cc0 68 61 76 65 20 74 65 73 74 65 64 20 74 68 69 73 |have tested this| 00000cd0 20 70 72 6f 67 72 61 6d 20 66 61 69 72 6c 79 20 | program fairly | 00000ce0 74 68 6f 72 6f 75 67 68 6c 79 20 49 20 6f 66 66 |thoroughly I off| 00000cf0 65 72 20 6e 6f 20 67 75 61 72 65 6e 74 65 65 0a |er no guarentee.| 00000d00 77 68 61 74 20 73 6f 20 65 76 65 72 20 61 6e 64 |what so ever and| 00000d10 20 61 63 63 65 70 74 20 6e 6f 20 72 65 73 70 6f | accept no respo| 00000d20 6e 73 69 62 69 6c 69 74 79 20 66 6f 72 20 61 6e |nsibility for an| 00000d30 79 20 64 61 6d 61 67 65 20 63 61 75 73 65 64 20 |y damage caused | 00000d40 62 79 20 69 74 73 20 75 73 65 20 6f 72 0a 6d 69 |by its use or.mi| 00000d50 73 75 73 65 2e 0a 20 20 20 54 68 69 73 20 70 72 |suse.. This pr| 00000d60 6f 67 72 61 6d 20 69 73 20 69 6e 20 74 68 65 20 |ogram is in the | 00000d70 70 75 62 6c 69 63 20 64 6f 6d 61 69 6e 20 61 6e |public domain an| 00000d80 64 20 6d 61 79 20 62 65 20 66 72 65 65 6c 79 20 |d may be freely | 00000d90 63 6f 70 69 65 64 20 61 73 20 6c 6f 6e 67 20 61 |copied as long a| 00000da0 73 0a 6e 6f 20 63 68 61 72 67 65 73 20 61 72 65 |s.no charges are| 00000db0 20 6d 61 64 65 20 66 6f 72 20 69 74 20 61 6c 6c | made for it all| 00000dc0 20 74 68 65 20 66 69 6c 65 73 20 61 72 65 20 6c | the files are l| 00000dd0 65 66 74 20 75 6e 63 68 61 6e 67 65 64 2e 20 59 |eft unchanged. Y| 00000de0 6f 75 20 6d 61 79 20 75 73 65 20 74 68 65 0a 73 |ou may use the.s| 00000df0 6f 75 72 63 65 20 6f 66 20 70 61 72 74 73 20 6f |ource of parts o| 00000e00 66 20 69 74 20 69 6e 20 79 6f 75 72 20 6f 77 6e |f it in your own| 00000e10 20 70 72 6f 67 72 61 6d 73 20 61 73 20 6c 6f 6e | programs as lon| 00000e20 67 20 49 20 61 6d 20 63 72 65 64 69 74 65 64 2e |g I am credited.| 00000e30 0a 0a 20 20 20 20 20 20 20 20 59 6f 75 72 73 2c |.. Yours,| 00000e40 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |. | 00000e50 20 50 6f 70 20 4d 6f 62 69 6c 69 74 79 20 46 72 | Pop Mobility Fr| 00000e60 65 61 6b 0a 20 20 20 20 20 20 20 20 20 20 20 20 |eak. | 00000e70 20 20 20 20 28 49 61 6e 20 41 73 68 6c 65 79 29 | (Ian Ashley)| 00000e80 0a |.| 00000e81