Home » Archimedes archive » Acorn Computing » 1994 03 subscription disc.adf » 9403s » FreeSoft/!T/!RunImage
FreeSoft/!T/!RunImage
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 » Acorn Computing » 1994 03 subscription disc.adf » 9403s |
Filename: | FreeSoft/!T/!RunImage |
Read OK: | ✔ |
File size: | 1F0A bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
10 REM > !RunImage for !BackDrips 20 REM LEN Colin McEwan 1993 30 REM 40 DIM infowindow% &100 50 DIM ctrlwindow% &100 60 DIM xtrawindow% &1EE 70 DIM listwindow% &100 80 DIM menu% &07C 90 DIM chunk% &500 100 DIM fonts% &100 110 120 FOR I%=0TO255 130 fonts%?I%=0 140 NEXT 150 160 SYS "Wimp_Initialise",200,&4b534154,"T��ls" TO ,taskhandle% 170 SYS "WimpExt_Initialise",14,taskhandle%,%0100100010 180 ONERROR OSCLI"WimpTask Error "+REPORT$+" in T��ls at line "+STR$ERL+". Due to lack of decent error handler,must exit immediately.":END 190 : 200 SYS "Wimp_OpenTemplate",,"<Obey$Dir>.Templates" 210 SYS "Wimp_LoadTemplate",,chunk%,infowindow%,infowindow%+&100,fonts%,"Info",0 220 SYS "Wimp_CreateWindow",,chunk% TO infowind% 230 240 SYS "Wimp_LoadTemplate",,chunk%,ctrlwindow%,ctrlwindow%+&100,fonts%,"Frame",0 250 SYS "Wimp_CreateWindow",,chunk% TO ctrlwind% 260 270 SYS "Wimp_LoadTemplate",,chunk%,listwindow%,listwindow%+&100,fonts%,"List",0 280 SYS "Wimp_CreateWindow",,chunk% TO listwind% 290 300 SYS "Wimp_LoadTemplate",,chunk%,xtrawindow%,xtrawindow%+&1EE,fonts%,"About...",0 310 SYS "Wimp_CreateWindow",,chunk% TO xtrawind% 320 SYS "Wimp_CloseTemplate" 330 340 SYS "WimpExt_LinkWindows",,,ctrlwind%,listwind% 350 360 SYS "WimpExt_IconBarSprite",,,-1,"!T��ls",,3 370 380 $menu% ="T��ls" 390 menu%?12 =7 400 menu%?13 =2 410 menu%?14 =7 420 menu%?15 =0 430 menu%!16 =144 440 menu%!20 =36 450 menu%!24 =0 460 menu%!28 =0 470 menu%!32 =infowind% 480 menu%!36 =&7009013 490 $(menu%+40) ="Info" 500 : 510 menu%!52 =0 520 menu%!56 =-1 530 menu%!60 =&7009013 540 $(menu%+64) ="Menu..." 550 : 560 menu%!76 =0 570 menu%!80 =-1 580 menu%!84 =&7009013 590 $(menu%+88) ="Default" 600 : 610 menu%!100 =128 620 menu%!104 =-1 630 menu%!108 =&7009013 640 $(menu%+112) ="Quit" 650 660SYS "WimpExt_MenuWidth",,menu% 670menu%!16+=32 680 : 690 REM And now,for the main program! 700 710 REPEAT 720 SYS "WimpExt_PrePoll" 730 SYS "Wimp_Poll",1,chunk% TO reason% 740 SYS "WimpExt_Action",taskhandle%,chunk%,reason%TOreason% 750 CASE reason% OF 760 WHEN 0: *Error This poll mask thingie doesn't work! 770 WHEN 1: SYS "WimpExt_AutoRedraw",,chunk% 780 WHEN 2: SYS "WimpExt_OpenLinked",,chunk% 790 WHEN 3: SYS "WimpExt_CloseLinked",,chunk% 800 WHEN 6:PROCMouse_Button_Change 810 WHEN 9:PROCMenu_Select 820 WHEN 17,18: 830 IF chunk%!16 = &000 THEN PROCend 840 IF chunk%!16 = &502 THEN PROChelp 850 ENDCASE 860 UNTIL TRUE=FALSE 870 880 DEFPROCMouse_Button_Change 890 IF chunk%!8 = 2 AND chunk%!12=-2 THEN 900 SYS"WimpExt_CreateMenu",,menu%,(chunk%!0)-(menu%!16)/2,240 910 ENDPROC 920 ENDIF 930 IF chunk%!8 = 2 THEN ENDPROC 940 : 950 IF chunk%!12 = -2 AND chunk%!8 = 4 THEN 960 !chunk%=ctrlwind% 970 SYS "Wimp_GetWindowState",,chunk% 980 SYS "WimpExt_CentreWindow",,chunk%+4 990 SYS "WimpExt_CentreWindowV",,chunk%+4 1000 chunk%!28 =-1 1010 SYS "WimpExt_OpenLinked",,chunk% 1020 ENDPROC 1030 ENDIF 1040 1050 IF chunk%!12 = ctrlwind% AND (chunk%!8=4 OR chunk%!8=1) THEN 1060 CASE chunk%!16 OF 1070 WHEN 2: 1080 buttons%=chunk%!8 1090 SYS "Wimp_WhichIcon",listwind%,chunk%+4,&3F0000,&210000 1100 !chunk%=listwind% 1110 SYS "Wimp_GetIconState",,chunk% 1120 IF $(chunk%+28)<>"" THEN 1130 OSCLI"ToolSprites <T��lsies$Path>"+$(chunk%+28) 1140 SYS "Wimp_SetMode",MODE 1150 ENDIF 1160 IF buttons%=4 THEN 1170 chunk%!0=listwind% 1180 SYS "Wimp_GetWindowState",,chunk% 1190 chunk%!24=0 1200 SYS "Wimp_OpenWindow",,chunk% 1210 !chunk%=ctrlwind% 1220 SYS "WimpExt_CloseLinked",,chunk% 1230 ENDIF 1240 ENDPROC 1250 WHEN 3: 1260 chunk%!0=listwind% 1270 SYS "Wimp_GetWindowState",,chunk% 1280 chunk%!24=0 1290 SYS "Wimp_OpenWindow",,chunk% 1300 !chunk%=ctrlwind% 1310 SYS "WimpExt_CloseLinked",,chunk% 1320 ENDPROC 1330 ENDCASE 1340 ENDIF 1350 1360 IF chunk%!12 = listwind% AND chunk%!16<>-1 THEN 1370 buttons%=chunk%!8 1380 SYS "Wimp_GetIconState",,chunk%+12 1390 OSCLI"ToolSprites <T��lsies$Path>"+$(chunk%+40) 1400 SYS "Wimp_SetMode",MODE 1410 IF buttons% = 4 THEN 1420 chunk%!0=listwind% 1430 SYS "Wimp_GetWindowState",,chunk% 1440 chunk%!24=0 1450 SYS "Wimp_OpenWindow",,chunk% 1460 !chunk%=ctrlwind% 1470 SYS "WimpExt_CloseLinked",,chunk% 1480 ENDIF 1490 ENDPROC 1500 ENDIF 1510 1520 IF chunk%!12 = infowind% AND chunk%!16 = 7 THEN 1530 IF chunk%!8AND4 THEN SYS "WimpExt_CreateMenu",-1 1540 !chunk%=xtrawind% 1550 SYS "Wimp_GetWindowState",,chunk% 1560 SYS "WimpExt_CentreWindow",,chunk%+4 1570 SYS "WimpExt_CentreWindowV",,chunk%+4 1580 chunk%!28=-1 1590 SYS "WimpExt_OpenLinked",,chunk% 1600 ENDPROC 1610 ENDIF 1620 1630 ENDPROC 1640 1650 1660DEFPROCMenu_Select 1670CASE chunk%!0 OF 1680 WHEN 0: 1690 !chunk%=infowind% 1700 SYS "Wimp_GetWindowState",,chunk% 1710 SYS "WimpExt_CentreWindow",,chunk%+4 1720 SYS "WimpExt_CentreWindowV",,chunk%+4 1730 SYS "WimpExt_CreateMenu",,infowind%,chunk%!4,chunk%!16 1740 ENDPROC 1750 WHEN 1: 1760 !chunk%=ctrlwind% 1770 SYS "Wimp_GetWindowState",,chunk% 1780 SYS "WimpExt_CentreWindow",,chunk%+4 1790 SYS "WimpExt_CentreWindowV",,chunk%+4 1800 chunk%!28=-1 1810 SYS "WimpExt_OpenLinked",,chunk% 1820 ENDPROC 1830 WHEN 2: 1840 *ToolSprites Resources:$.Resources.Wimp.Tools 1850 SYS "Wimp_SetMode",MODE 1860 WHEN 3: PROCend 1870OTHERWISE *WimpTask Error There seems to be a menu item I didn't know about here. 1880ENDCASE 1890ENDPROC 1900 1910 1920 1930DEFPROCend 1940FORI%=0TO255 1950WHILE fonts%?I%>0:SYS "Font_LoseFont",I%:fonts%?I%-=1:ENDWHILE 1960NEXT 1970SYS "WimpExt_CloseDown",taskhandle% 1980SYS "Wimp_CloseDown" 1990END 2000ENDPROC 2010 2020DEFPROChelp 2030help$="T��ls" 2040 destination%=chunk%!4:mess2%=chunk%!8 2050 2060CASE chunk%!32 OF 2070 2080 WHEN -2 :help$="This is the T��ls icon.|MClick SELECT to show the available window borders.|MClick MENU to see the main menu." 2090 2100 WHEN infowind%:help$="This window displays some more info about T��ls." 2110 CASE chunk%!36 OF 2120 WHEN 5:help$="This is the name of the application." 2130 WHEN 6:help$="This is what it does." 2140 WHEN 7:help$="This is my name.|MClick SELECT or ADJUST to read more about me." 2150 WHEN 8:help$="This is the version of T��ls you have." 2160 WHEN 9:help$="This is the Saint Andrew's Cross.|MIt is the national flag of Scotland.|MI put it here to tell everyone I am Scottish.|MIt is also the icon for my !BackDrips application." 2170 ENDCASE 2180 2190 WHEN ctrlwind%:help$="This is the T��ls selector." 2200 CASE chunk%!36 OF 2210 WHEN 3: help$=help$+"Click here to close the window." 2220 WHEN 2: help$=help$+"Click here to load the currently selected tool set." 2230 ENDCASE 2240 2250 WHEN listwind%:help$="This is the T��ls selector." 2260 IF chunk%!36<>-1 THEN help$=help$+"Click here to select this set of tools." 2270 2280 WHEN xtrawind%:help$="This window shows some info about me,and also says hello to some people I know.|MIf you like that sort of stuff,then read the file 'Private' in this application directory :-)" 2290 2300ENDCASE 2310 2320 !chunk%=((20+LENhelp$+1)+3)ANDNOT3 2330 chunk%!12=mess2% 2340 chunk%!16=&503 2350 $(chunk%+20)=help$ 2360 chunk%?(20+LENhelp$)=0 2370 SYS"Wimp_SendMessage",17,chunk%,destination% 2380ENDPROC
! � > !RunImage for !BackDrips � � Colin McEwan 1993 � ( � infowindow% &100 2 � ctrlwindow% &100 < � xtrawindow% &1EE F � listwindow% &100 P � menu% &07C Z � chunk% &500 d � fonts% &100 n x � I%=0�255 � fonts%?I%=0 � � � �> ș "Wimp_Initialise",200,&4b534154,"T��ls" � ,taskhandle% �7 ș "WimpExt_Initialise",14,taskhandle%,%0100100010 �v � �"WimpTask Error "+�$+" in T��ls at line "+Þ+". Due to lack of decent error handler,must exit immediately.":� � : �3 ș "Wimp_OpenTemplate",,"<Obey$Dir>.Templates" �P ș "Wimp_LoadTemplate",,chunk%,infowindow%,infowindow%+&100,fonts%,"Info",0 �/ ș "Wimp_CreateWindow",,chunk% � infowind% � �Q ș "Wimp_LoadTemplate",,chunk%,ctrlwindow%,ctrlwindow%+&100,fonts%,"Frame",0 �/ ș "Wimp_CreateWindow",,chunk% � ctrlwind% P ș "Wimp_LoadTemplate",,chunk%,listwindow%,listwindow%+&100,fonts%,"List",0 / ș "Wimp_CreateWindow",,chunk% � listwind% " ,T ș "Wimp_LoadTemplate",,chunk%,xtrawindow%,xtrawindow%+&1EE,fonts%,"About...",0 6/ ș "Wimp_CreateWindow",,chunk% � xtrawind% @ ș "Wimp_CloseTemplate" J T3 ș "WimpExt_LinkWindows",,,ctrlwind%,listwind% ^ h0 ș "WimpExt_IconBarSprite",,,-1,"!T��ls",,3 r | $menu% ="T��ls" � menu%?12 =7 � menu%?13 =2 � menu%?14 =7 � menu%?15 =0 � menu%!16 =144 � menu%!20 =36 � menu%!24 =0 �! menu%!28 =0 �) menu%!32 =infowind% �( menu%!36 =&7009013 �& $(menu%+40) ="Info" � : �! menu%!52 =0 " menu%!56 =-1 ( menu%!60 =&7009013 ) $(menu%+64) ="Menu..." & : 0! menu%!76 =0 :" menu%!80 =-1 D( menu%!84 =&7009013 N) $(menu%+88) ="Default" X : b# menu%!100 =128 l" menu%!104 =-1 v( menu%!108 =&7009013 �& $(menu%+112) ="Quit" � �!ș "WimpExt_MenuWidth",,menu% �menu%!16+=32 � : �% � And now,for the main program! � � � � ș "WimpExt_PrePoll" �, ș "Wimp_Poll",1,chunk% � reason% �A ș "WimpExt_Action",taskhandle%,chunk%,reason%�reason% � Ȏ reason% � �H � 0: *Error This poll mask thingie doesn't work! < � 1: ș "WimpExt_AutoRedraw",,chunk% < � 2: ș "WimpExt_OpenLinked",,chunk% = � 3: ș "WimpExt_CloseLinked",,chunk% 0 � 6:�Mouse_Button_Change *( � 9:�Menu_Select 4 � 17,18: >1 � chunk%!16 = &000 � �end H2 � chunk%!16 = &502 � �help R � \ � �=� f p ��Mouse_Button_Change z$ � chunk%!8 = 2 � chunk%!12=-2 � �M ș"WimpExt_CreateMenu",,menu%,(chunk%!0)-(menu%!16)/2,240 � � � � � � chunk%!8 = 2 � � � : �& � chunk%!12 = -2 � chunk%!8 = 4 � � !chunk%=ctrlwind% �& ș "Wimp_GetWindowState",,chunk% �) ș "WimpExt_CentreWindow",,chunk%+4 �* ș "WimpExt_CentreWindowV",,chunk%+4 � chunk%!28 =-1 �% ș "WimpExt_OpenLinked",,chunk% � � � : � chunk%!12 = ctrlwind% � (chunk%!8=4 � chunk%!8=1) � $ Ȏ chunk%!16 � . � 2: 8 buttons%=chunk%!8 BE ș "Wimp_WhichIcon",listwind%,chunk%+4,&3F0000,&210000 L !chunk%=listwind% V- ș "Wimp_GetIconState",,chunk% `# � $(chunk%+28)<>"" � j? �"ToolSprites <T��lsies$Path>"+$(chunk%+28) t' ș "Wimp_SetMode",� ~ � � � buttons%=4 � �& chunk%!0=listwind% �4 ș "Wimp_GetWindowState",,chunk% � chunk%!24=0 �0 ș "Wimp_OpenWindow",,chunk% �% !chunk%=ctrlwind% �4 ș "WimpExt_CloseLinked",,chunk% � � � � � � 3: �! chunk%!0=listwind% �/ ș "Wimp_GetWindowState",,chunk% chunk%!24=0 + ș "Wimp_OpenWindow",,chunk% !chunk%=ctrlwind% / ș "WimpExt_CloseLinked",,chunk% ( � 2 � < � F P. � chunk%!12 = listwind% � chunk%!16<>-1 � Z buttons%=chunk%!8 d0 ș "Wimp_GetIconState",,chunk%+12 n: �"ToolSprites <T��lsies$Path>"+$(chunk%+40) x" ș "Wimp_SetMode",� � � buttons% = 4 � �& chunk%!0=listwind% �4 ș "Wimp_GetWindowState",,chunk% � chunk%!24=0 �0 ș "Wimp_OpenWindow",,chunk% �% !chunk%=ctrlwind% �4 ș "WimpExt_CloseLinked",,chunk% � � � � � � � �. � chunk%!12 = infowind% � chunk%!16 = 7 � �. � chunk%!8�4 � ș "WimpExt_CreateMenu",-1 !chunk%=xtrawind% ' ș "Wimp_GetWindowState",,chunk% * ș "WimpExt_CentreWindow",,chunk%+4 "+ ș "WimpExt_CentreWindowV",,chunk%+4 , chunk%!28=-1 6& ș "WimpExt_OpenLinked",,chunk% @ � J � T ^ � h r |��Menu_Select �Ȏ chunk%!0 � � � 0: �" !chunk%=infowind% �1 ș "Wimp_GetWindowState",,chunk% �4 ș "WimpExt_CentreWindow",,chunk%+4 �5 ș "WimpExt_CentreWindowV",,chunk%+4 �F ș "WimpExt_CreateMenu",,infowind%,chunk%!4,chunk%!16 � � � � 1: �" !chunk%=ctrlwind% �1 ș "Wimp_GetWindowState",,chunk% �4 ș "WimpExt_CentreWindow",,chunk%+4 �5 ș "WimpExt_CentreWindowV",,chunk%+4 chunk%!28=-1 0 ș "WimpExt_OpenLinked",,chunk% � & � 2: 0> *ToolSprites Resources:$.Resources.Wimp.Tools :$ ș "Wimp_SetMode",� D � 3: �end NM *WimpTask Error There seems to be a menu item I didn't know about here. X� b� l v � � ��end � �I%=0�255 �7ȕ fonts%?I%>0:ș "Font_LoseFont",I%:fonts%?I%-=1:� �� �&ș "WimpExt_CloseDown",taskhandle% �ș "Wimp_CloseDown" �� �� � � ��help �help$="T��ls" �* destination%=chunk%!4:mess2%=chunk%!8 Ȏ chunk%!32 � � � -2 :help$="This is the T��ls icon.|MClick SELECT to show the available window borders.|MClick MENU to see the main menu." * 4M � infowind%:help$="This window displays some more info about T��ls." >& Ȏ chunk%!36 � HM � 5:help$="This is the name of the application." R> � 6:help$="This is what it does." \h � 7:help$="This is my name.|MClick SELECT or ADJUST to read more about me." fO � 8:help$="This is the version of T��ls you have." p� � 9:help$="This is the Saint Andrew's Cross.|MIt is the national flag of Scotland.|MI put it here to tell everyone I am Scottish.|MIt is also the icon for my !BackDrips application." z � � �8 � ctrlwind%:help$="This is the T��ls selector." �& Ȏ chunk%!36 � �O � 3: help$=help$+"Click here to close the window." �c � 2: help$=help$+"Click here to load the currently selected tool set." � � � �8 � listwind%:help$="This is the T��ls selector." �_ � chunk%!36<>-1 � help$=help$+"Click here to select this set of tools." � �� � xtrawind%:help$="This window shows some info about me,and also says hello to some people I know.|MIf you like that sort of stuff,then read the file 'Private' in this application directory :-)" � �� ! !chunk%=((20+�help$+1)+3)��3 chunk%!12=mess2% $ chunk%!16=&503 . $(chunk%+20)=help$ 8 chunk%?(20+�help$)=0 B0 ș"Wimp_SendMessage",17,chunk%,destination% L� �
00000000 0d 00 0a 21 20 f4 20 3e 20 21 52 75 6e 49 6d 61 |...! . > !RunIma| 00000010 67 65 20 66 6f 72 20 21 42 61 63 6b 44 72 69 70 |ge for !BackDrip| 00000020 73 0d 00 14 1c 20 f4 20 20 a9 20 43 6f 6c 69 6e |s.... . . Colin| 00000030 20 4d 63 45 77 61 6e 20 20 31 39 39 33 0d 00 1e | McEwan 1993...| 00000040 06 20 f4 0d 00 28 17 20 de 20 69 6e 66 6f 77 69 |. ...(. . infowi| 00000050 6e 64 6f 77 25 20 26 31 30 30 0d 00 32 17 20 de |ndow% &100..2. .| 00000060 20 63 74 72 6c 77 69 6e 64 6f 77 25 20 26 31 30 | ctrlwindow% &10| 00000070 30 0d 00 3c 17 20 de 20 78 74 72 61 77 69 6e 64 |0..<. . xtrawind| 00000080 6f 77 25 20 26 31 45 45 0d 00 46 17 20 de 20 6c |ow% &1EE..F. . l| 00000090 69 73 74 77 69 6e 64 6f 77 25 20 26 31 30 30 0d |istwindow% &100.| 000000a0 00 50 17 20 de 20 20 20 20 20 20 20 6d 65 6e 75 |.P. . menu| 000000b0 25 20 26 30 37 43 0d 00 5a 17 20 de 20 20 20 20 |% &07C..Z. . | 000000c0 20 20 63 68 75 6e 6b 25 20 26 35 30 30 0d 00 64 | chunk% &500..d| 000000d0 17 20 de 20 20 20 20 20 20 66 6f 6e 74 73 25 20 |. . fonts% | 000000e0 26 31 30 30 0d 00 6e 04 0d 00 78 0f 20 e3 20 49 |&100..n...x. . I| 000000f0 25 3d 30 b8 32 35 35 0d 00 82 10 20 66 6f 6e 74 |%=0.255.... font| 00000100 73 25 3f 49 25 3d 30 0d 00 8c 06 20 ed 0d 00 96 |s%?I%=0.... ....| 00000110 04 0d 00 a0 3e 20 c8 99 20 22 57 69 6d 70 5f 49 |....> .. "Wimp_I| 00000120 6e 69 74 69 61 6c 69 73 65 22 2c 32 30 30 2c 26 |nitialise",200,&| 00000130 34 62 35 33 34 31 35 34 2c 22 54 f8 f8 6c 73 22 |4b534154,"T..ls"| 00000140 20 b8 20 2c 74 61 73 6b 68 61 6e 64 6c 65 25 0d | . ,taskhandle%.| 00000150 00 aa 37 20 c8 99 20 22 57 69 6d 70 45 78 74 5f |..7 .. "WimpExt_| 00000160 49 6e 69 74 69 61 6c 69 73 65 22 2c 31 34 2c 74 |Initialise",14,t| 00000170 61 73 6b 68 61 6e 64 6c 65 25 2c 25 30 31 30 30 |askhandle%,%0100| 00000180 31 30 30 30 31 30 0d 00 b4 76 20 ee 85 20 ff 22 |100010...v .. ."| 00000190 57 69 6d 70 54 61 73 6b 20 45 72 72 6f 72 20 22 |WimpTask Error "| 000001a0 2b f6 24 2b 22 20 69 6e 20 54 f8 f8 6c 73 20 61 |+.$+" in T..ls a| 000001b0 74 20 6c 69 6e 65 20 22 2b c3 9e 2b 22 2e 20 44 |t line "+..+". D| 000001c0 75 65 20 74 6f 20 6c 61 63 6b 20 6f 66 20 64 65 |ue to lack of de| 000001d0 63 65 6e 74 20 65 72 72 6f 72 20 68 61 6e 64 6c |cent error handl| 000001e0 65 72 2c 6d 75 73 74 20 65 78 69 74 20 69 6d 6d |er,must exit imm| 000001f0 65 64 69 61 74 65 6c 79 2e 22 3a e0 0d 00 be 06 |ediately.":.....| 00000200 20 3a 0d 00 c8 33 20 c8 99 20 22 57 69 6d 70 5f | :...3 .. "Wimp_| 00000210 4f 70 65 6e 54 65 6d 70 6c 61 74 65 22 2c 2c 22 |OpenTemplate",,"| 00000220 3c 4f 62 65 79 24 44 69 72 3e 2e 54 65 6d 70 6c |<Obey$Dir>.Templ| 00000230 61 74 65 73 22 0d 00 d2 50 20 c8 99 20 22 57 69 |ates"...P .. "Wi| 00000240 6d 70 5f 4c 6f 61 64 54 65 6d 70 6c 61 74 65 22 |mp_LoadTemplate"| 00000250 2c 2c 63 68 75 6e 6b 25 2c 69 6e 66 6f 77 69 6e |,,chunk%,infowin| 00000260 64 6f 77 25 2c 69 6e 66 6f 77 69 6e 64 6f 77 25 |dow%,infowindow%| 00000270 2b 26 31 30 30 2c 66 6f 6e 74 73 25 2c 22 49 6e |+&100,fonts%,"In| 00000280 66 6f 22 2c 30 0d 00 dc 2f 20 c8 99 20 22 57 69 |fo",0.../ .. "Wi| 00000290 6d 70 5f 43 72 65 61 74 65 57 69 6e 64 6f 77 22 |mp_CreateWindow"| 000002a0 2c 2c 63 68 75 6e 6b 25 20 b8 20 69 6e 66 6f 77 |,,chunk% . infow| 000002b0 69 6e 64 25 0d 00 e6 04 0d 00 f0 51 20 c8 99 20 |ind%.......Q .. | 000002c0 22 57 69 6d 70 5f 4c 6f 61 64 54 65 6d 70 6c 61 |"Wimp_LoadTempla| 000002d0 74 65 22 2c 2c 63 68 75 6e 6b 25 2c 63 74 72 6c |te",,chunk%,ctrl| 000002e0 77 69 6e 64 6f 77 25 2c 63 74 72 6c 77 69 6e 64 |window%,ctrlwind| 000002f0 6f 77 25 2b 26 31 30 30 2c 66 6f 6e 74 73 25 2c |ow%+&100,fonts%,| 00000300 22 46 72 61 6d 65 22 2c 30 0d 00 fa 2f 20 c8 99 |"Frame",0.../ ..| 00000310 20 22 57 69 6d 70 5f 43 72 65 61 74 65 57 69 6e | "Wimp_CreateWin| 00000320 64 6f 77 22 2c 2c 63 68 75 6e 6b 25 20 b8 20 63 |dow",,chunk% . c| 00000330 74 72 6c 77 69 6e 64 25 0d 01 04 04 0d 01 0e 50 |trlwind%.......P| 00000340 20 c8 99 20 22 57 69 6d 70 5f 4c 6f 61 64 54 65 | .. "Wimp_LoadTe| 00000350 6d 70 6c 61 74 65 22 2c 2c 63 68 75 6e 6b 25 2c |mplate",,chunk%,| 00000360 6c 69 73 74 77 69 6e 64 6f 77 25 2c 6c 69 73 74 |listwindow%,list| 00000370 77 69 6e 64 6f 77 25 2b 26 31 30 30 2c 66 6f 6e |window%+&100,fon| 00000380 74 73 25 2c 22 4c 69 73 74 22 2c 30 0d 01 18 2f |ts%,"List",0.../| 00000390 20 c8 99 20 22 57 69 6d 70 5f 43 72 65 61 74 65 | .. "Wimp_Create| 000003a0 57 69 6e 64 6f 77 22 2c 2c 63 68 75 6e 6b 25 20 |Window",,chunk% | 000003b0 b8 20 6c 69 73 74 77 69 6e 64 25 0d 01 22 04 0d |. listwind%.."..| 000003c0 01 2c 54 20 c8 99 20 22 57 69 6d 70 5f 4c 6f 61 |.,T .. "Wimp_Loa| 000003d0 64 54 65 6d 70 6c 61 74 65 22 2c 2c 63 68 75 6e |dTemplate",,chun| 000003e0 6b 25 2c 78 74 72 61 77 69 6e 64 6f 77 25 2c 78 |k%,xtrawindow%,x| 000003f0 74 72 61 77 69 6e 64 6f 77 25 2b 26 31 45 45 2c |trawindow%+&1EE,| 00000400 66 6f 6e 74 73 25 2c 22 41 62 6f 75 74 2e 2e 2e |fonts%,"About...| 00000410 22 2c 30 0d 01 36 2f 20 c8 99 20 22 57 69 6d 70 |",0..6/ .. "Wimp| 00000420 5f 43 72 65 61 74 65 57 69 6e 64 6f 77 22 2c 2c |_CreateWindow",,| 00000430 63 68 75 6e 6b 25 20 b8 20 78 74 72 61 77 69 6e |chunk% . xtrawin| 00000440 64 25 0d 01 40 1c 20 c8 99 20 22 57 69 6d 70 5f |d%..@. .. "Wimp_| 00000450 43 6c 6f 73 65 54 65 6d 70 6c 61 74 65 22 0d 01 |CloseTemplate"..| 00000460 4a 04 0d 01 54 33 20 c8 99 20 22 57 69 6d 70 45 |J...T3 .. "WimpE| 00000470 78 74 5f 4c 69 6e 6b 57 69 6e 64 6f 77 73 22 2c |xt_LinkWindows",| 00000480 2c 2c 63 74 72 6c 77 69 6e 64 25 2c 6c 69 73 74 |,,ctrlwind%,list| 00000490 77 69 6e 64 25 0d 01 5e 04 0d 01 68 30 20 c8 99 |wind%..^...h0 ..| 000004a0 20 22 57 69 6d 70 45 78 74 5f 49 63 6f 6e 42 61 | "WimpExt_IconBa| 000004b0 72 53 70 72 69 74 65 22 2c 2c 2c 2d 31 2c 22 21 |rSprite",,,-1,"!| 000004c0 54 f8 f8 6c 73 22 2c 2c 33 0d 01 72 04 0d 01 7c |T..ls",,3..r...|| 000004d0 1a 20 24 6d 65 6e 75 25 20 20 20 20 20 20 20 3d |. $menu% =| 000004e0 22 54 f8 f8 6c 73 22 0d 01 86 14 20 6d 65 6e 75 |"T..ls".... menu| 000004f0 25 3f 31 32 20 20 20 20 20 3d 37 0d 01 90 14 20 |%?12 =7.... | 00000500 6d 65 6e 75 25 3f 31 33 20 20 20 20 20 3d 32 0d |menu%?13 =2.| 00000510 01 9a 14 20 6d 65 6e 75 25 3f 31 34 20 20 20 20 |... menu%?14 | 00000520 20 3d 37 0d 01 a4 14 20 6d 65 6e 75 25 3f 31 35 | =7.... menu%?15| 00000530 20 20 20 20 20 3d 30 0d 01 ae 16 20 6d 65 6e 75 | =0.... menu| 00000540 25 21 31 36 20 20 20 20 20 3d 31 34 34 0d 01 b8 |%!16 =144...| 00000550 15 20 6d 65 6e 75 25 21 32 30 20 20 20 20 20 3d |. menu%!20 =| 00000560 33 36 0d 01 c2 14 20 6d 65 6e 75 25 21 32 34 20 |36.... menu%!24 | 00000570 20 20 20 20 3d 30 0d 01 cc 21 20 20 20 20 20 20 | =0...! | 00000580 20 20 20 20 20 20 20 20 6d 65 6e 75 25 21 32 38 | menu%!28| 00000590 20 20 20 20 20 3d 30 0d 01 d6 29 20 20 20 20 20 | =0...) | 000005a0 20 20 20 20 20 20 20 20 20 6d 65 6e 75 25 21 33 | menu%!3| 000005b0 32 20 20 20 20 20 3d 69 6e 66 6f 77 69 6e 64 25 |2 =infowind%| 000005c0 0d 01 e0 28 20 20 20 20 20 20 20 20 20 20 20 20 |...( | 000005d0 20 20 6d 65 6e 75 25 21 33 36 20 20 20 20 20 3d | menu%!36 =| 000005e0 26 37 30 30 39 30 31 33 0d 01 ea 26 20 20 20 20 |&7009013...& | 000005f0 20 20 20 20 20 20 20 20 24 28 6d 65 6e 75 25 2b | $(menu%+| 00000600 34 30 29 20 20 20 20 3d 22 49 6e 66 6f 22 0d 01 |40) ="Info"..| 00000610 f4 13 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |.. | 00000620 3a 0d 01 fe 21 20 20 20 20 20 20 20 20 20 20 20 |:...! | 00000630 20 20 20 6d 65 6e 75 25 21 35 32 20 20 20 20 20 | menu%!52 | 00000640 3d 30 0d 02 08 22 20 20 20 20 20 20 20 20 20 20 |=0..." | 00000650 20 20 20 20 6d 65 6e 75 25 21 35 36 20 20 20 20 | menu%!56 | 00000660 20 3d 2d 31 0d 02 12 28 20 20 20 20 20 20 20 20 | =-1...( | 00000670 20 20 20 20 20 20 6d 65 6e 75 25 21 36 30 20 20 | menu%!60 | 00000680 20 20 20 3d 26 37 30 30 39 30 31 33 0d 02 1c 29 | =&7009013...)| 00000690 20 20 20 20 20 20 20 20 20 20 20 20 24 28 6d 65 | $(me| 000006a0 6e 75 25 2b 36 34 29 20 20 20 20 3d 22 4d 65 6e |nu%+64) ="Men| 000006b0 75 2e 2e 2e 22 0d 02 26 13 20 20 20 20 20 20 20 |u..."..&. | 000006c0 20 20 20 20 20 20 20 3a 0d 02 30 21 20 20 20 20 | :..0! | 000006d0 20 20 20 20 20 20 20 20 20 20 6d 65 6e 75 25 21 | menu%!| 000006e0 37 36 20 20 20 20 20 3d 30 0d 02 3a 22 20 20 20 |76 =0..:" | 000006f0 20 20 20 20 20 20 20 20 20 20 20 6d 65 6e 75 25 | menu%| 00000700 21 38 30 20 20 20 20 20 3d 2d 31 0d 02 44 28 20 |!80 =-1..D( | 00000710 20 20 20 20 20 20 20 20 20 20 20 20 20 6d 65 6e | men| 00000720 75 25 21 38 34 20 20 20 20 20 3d 26 37 30 30 39 |u%!84 =&7009| 00000730 30 31 33 0d 02 4e 29 20 20 20 20 20 20 20 20 20 |013..N) | 00000740 20 20 20 24 28 6d 65 6e 75 25 2b 38 38 29 20 20 | $(menu%+88) | 00000750 20 20 3d 22 44 65 66 61 75 6c 74 22 0d 02 58 13 | ="Default"..X.| 00000760 20 20 20 20 20 20 20 20 20 20 20 20 20 20 3a 0d | :.| 00000770 02 62 23 20 20 20 20 20 20 20 20 20 20 20 20 20 |.b# | 00000780 20 6d 65 6e 75 25 21 31 30 30 20 20 20 20 3d 31 | menu%!100 =1| 00000790 32 38 0d 02 6c 22 20 20 20 20 20 20 20 20 20 20 |28..l" | 000007a0 20 20 20 20 6d 65 6e 75 25 21 31 30 34 20 20 20 | menu%!104 | 000007b0 20 3d 2d 31 0d 02 76 28 20 20 20 20 20 20 20 20 | =-1..v( | 000007c0 20 20 20 20 20 20 6d 65 6e 75 25 21 31 30 38 20 | menu%!108 | 000007d0 20 20 20 3d 26 37 30 30 39 30 31 33 0d 02 80 26 | =&7009013...&| 000007e0 20 20 20 20 20 20 20 20 20 20 20 20 24 28 6d 65 | $(me| 000007f0 6e 75 25 2b 31 31 32 29 20 20 20 3d 22 51 75 69 |nu%+112) ="Qui| 00000800 74 22 0d 02 8a 04 0d 02 94 21 c8 99 20 22 57 69 |t".......!.. "Wi| 00000810 6d 70 45 78 74 5f 4d 65 6e 75 57 69 64 74 68 22 |mpExt_MenuWidth"| 00000820 2c 2c 6d 65 6e 75 25 0d 02 9e 10 6d 65 6e 75 25 |,,menu%....menu%| 00000830 21 31 36 2b 3d 33 32 0d 02 a8 06 20 3a 0d 02 b2 |!16+=32.... :...| 00000840 25 20 f4 20 20 41 6e 64 20 6e 6f 77 2c 66 6f 72 |% . And now,for| 00000850 20 74 68 65 20 6d 61 69 6e 20 70 72 6f 67 72 61 | the main progra| 00000860 6d 21 0d 02 bc 04 0d 02 c6 06 20 f5 0d 02 d0 1f |m!........ .....| 00000870 20 20 20 20 20 20 20 c8 99 20 22 57 69 6d 70 45 | .. "WimpE| 00000880 78 74 5f 50 72 65 50 6f 6c 6c 22 0d 02 da 2c 20 |xt_PrePoll"..., | 00000890 20 20 20 20 20 20 c8 99 20 22 57 69 6d 70 5f 50 | .. "Wimp_P| 000008a0 6f 6c 6c 22 2c 31 2c 63 68 75 6e 6b 25 20 b8 20 |oll",1,chunk% . | 000008b0 72 65 61 73 6f 6e 25 0d 02 e4 41 20 20 20 20 20 |reason%...A | 000008c0 20 20 c8 99 20 22 57 69 6d 70 45 78 74 5f 41 63 | .. "WimpExt_Ac| 000008d0 74 69 6f 6e 22 2c 74 61 73 6b 68 61 6e 64 6c 65 |tion",taskhandle| 000008e0 25 2c 63 68 75 6e 6b 25 2c 72 65 61 73 6f 6e 25 |%,chunk%,reason%| 000008f0 b8 72 65 61 73 6f 6e 25 0d 02 ee 1f 20 20 20 20 |.reason%.... | 00000900 20 20 20 20 20 20 20 20 20 20 20 c8 8e 20 72 65 | .. re| 00000910 61 73 6f 6e 25 20 ca 0d 02 f8 48 20 20 20 20 20 |ason% ....H | 00000920 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 c9 | .| 00000930 20 30 3a 20 2a 45 72 72 6f 72 20 54 68 69 73 20 | 0: *Error This | 00000940 70 6f 6c 6c 20 6d 61 73 6b 20 74 68 69 6e 67 69 |poll mask thingi| 00000950 65 20 64 6f 65 73 6e 27 74 20 77 6f 72 6b 21 0d |e doesn't work!.| 00000960 03 02 3c 20 20 20 20 20 20 20 20 20 20 20 20 20 |..< | 00000970 20 20 20 20 20 20 20 c9 20 31 3a 20 c8 99 20 22 | . 1: .. "| 00000980 57 69 6d 70 45 78 74 5f 41 75 74 6f 52 65 64 72 |WimpExt_AutoRedr| 00000990 61 77 22 2c 2c 63 68 75 6e 6b 25 0d 03 0c 3c 20 |aw",,chunk%...< | 000009a0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 000009b0 20 20 20 c9 20 32 3a 20 c8 99 20 22 57 69 6d 70 | . 2: .. "Wimp| 000009c0 45 78 74 5f 4f 70 65 6e 4c 69 6e 6b 65 64 22 2c |Ext_OpenLinked",| 000009d0 2c 63 68 75 6e 6b 25 0d 03 16 3d 20 20 20 20 20 |,chunk%...= | 000009e0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 c9 | .| 000009f0 20 33 3a 20 c8 99 20 22 57 69 6d 70 45 78 74 5f | 3: .. "WimpExt_| 00000a00 43 6c 6f 73 65 4c 69 6e 6b 65 64 22 2c 2c 63 68 |CloseLinked",,ch| 00000a10 75 6e 6b 25 0d 03 20 30 20 20 20 20 20 20 20 20 |unk%.. 0 | 00000a20 20 20 20 20 20 20 20 20 20 20 20 20 c9 20 36 3a | . 6:| 00000a30 f2 4d 6f 75 73 65 5f 42 75 74 74 6f 6e 5f 43 68 |.Mouse_Button_Ch| 00000a40 61 6e 67 65 0d 03 2a 28 20 20 20 20 20 20 20 20 |ange..*( | 00000a50 20 20 20 20 20 20 20 20 20 20 20 20 c9 20 39 3a | . 9:| 00000a60 f2 4d 65 6e 75 5f 53 65 6c 65 63 74 0d 03 34 20 |.Menu_Select..4 | 00000a70 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000a80 20 20 20 20 c9 20 31 37 2c 31 38 3a 0d 03 3e 31 | . 17,18:..>1| 00000a90 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000aa0 20 20 20 20 e7 20 63 68 75 6e 6b 25 21 31 36 20 | . chunk%!16 | 00000ab0 3d 20 26 30 30 30 20 8c 20 f2 65 6e 64 0d 03 48 |= &000 . .end..H| 00000ac0 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |2 | 00000ad0 20 20 20 20 20 e7 20 63 68 75 6e 6b 25 21 31 36 | . chunk%!16| 00000ae0 20 3d 20 26 35 30 32 20 8c 20 f2 68 65 6c 70 0d | = &502 . .help.| 00000af0 03 52 14 20 20 20 20 20 20 20 20 20 20 20 20 20 |.R. | 00000b00 20 20 cb 0d 03 5c 0a 20 fd 20 b9 3d a3 0d 03 66 | ...\. . .=...f| 00000b10 04 0d 03 70 1a 20 dd f2 4d 6f 75 73 65 5f 42 75 |...p. ..Mouse_Bu| 00000b20 74 74 6f 6e 5f 43 68 61 6e 67 65 0d 03 7a 24 20 |tton_Change..z$ | 00000b30 e7 20 63 68 75 6e 6b 25 21 38 20 3d 20 32 20 80 |. chunk%!8 = 2 .| 00000b40 20 63 68 75 6e 6b 25 21 31 32 3d 2d 32 20 8c 0d | chunk%!12=-2 ..| 00000b50 03 84 4d 20 20 20 20 20 20 20 20 20 20 20 20 20 |..M | 00000b60 20 20 20 c8 99 22 57 69 6d 70 45 78 74 5f 43 72 | .."WimpExt_Cr| 00000b70 65 61 74 65 4d 65 6e 75 22 2c 2c 6d 65 6e 75 25 |eateMenu",,menu%| 00000b80 2c 28 63 68 75 6e 6b 25 21 30 29 2d 28 6d 65 6e |,(chunk%!0)-(men| 00000b90 75 25 21 31 36 29 2f 32 2c 32 34 30 0d 03 8e 15 |u%!16)/2,240....| 00000ba0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000bb0 e1 0d 03 98 06 20 cd 0d 03 a2 17 20 e7 20 63 68 |..... ..... . ch| 00000bc0 75 6e 6b 25 21 38 20 3d 20 32 20 8c 20 e1 0d 03 |unk%!8 = 2 . ...| 00000bd0 ac 06 20 3a 0d 03 b6 26 20 e7 20 63 68 75 6e 6b |.. :...& . chunk| 00000be0 25 21 31 32 20 3d 20 2d 32 20 80 20 63 68 75 6e |%!12 = -2 . chun| 00000bf0 6b 25 21 38 20 3d 20 34 20 8c 0d 03 c0 17 20 20 |k%!8 = 4 ..... | 00000c00 21 63 68 75 6e 6b 25 3d 63 74 72 6c 77 69 6e 64 |!chunk%=ctrlwind| 00000c10 25 0d 03 ca 26 20 20 c8 99 20 22 57 69 6d 70 5f |%...& .. "Wimp_| 00000c20 47 65 74 57 69 6e 64 6f 77 53 74 61 74 65 22 2c |GetWindowState",| 00000c30 2c 63 68 75 6e 6b 25 0d 03 d4 29 20 20 c8 99 20 |,chunk%...) .. | 00000c40 22 57 69 6d 70 45 78 74 5f 43 65 6e 74 72 65 57 |"WimpExt_CentreW| 00000c50 69 6e 64 6f 77 22 2c 2c 63 68 75 6e 6b 25 2b 34 |indow",,chunk%+4| 00000c60 0d 03 de 2a 20 20 c8 99 20 22 57 69 6d 70 45 78 |...* .. "WimpEx| 00000c70 74 5f 43 65 6e 74 72 65 57 69 6e 64 6f 77 56 22 |t_CentreWindowV"| 00000c80 2c 2c 63 68 75 6e 6b 25 2b 34 0d 03 e8 13 20 20 |,,chunk%+4.... | 00000c90 63 68 75 6e 6b 25 21 32 38 20 3d 2d 31 0d 03 f2 |chunk%!28 =-1...| 00000ca0 25 20 20 c8 99 20 22 57 69 6d 70 45 78 74 5f 4f |% .. "WimpExt_O| 00000cb0 70 65 6e 4c 69 6e 6b 65 64 22 2c 2c 63 68 75 6e |penLinked",,chun| 00000cc0 6b 25 0d 03 fc 07 20 20 e1 0d 04 06 06 20 cd 0d |k%.... ..... ..| 00000cd0 04 10 04 0d 04 1a 3a 20 e7 20 63 68 75 6e 6b 25 |......: . chunk%| 00000ce0 21 31 32 20 3d 20 63 74 72 6c 77 69 6e 64 25 20 |!12 = ctrlwind% | 00000cf0 80 20 28 63 68 75 6e 6b 25 21 38 3d 34 20 84 20 |. (chunk%!8=4 . | 00000d00 63 68 75 6e 6b 25 21 38 3d 31 29 20 8c 0d 04 24 |chunk%!8=1) ...$| 00000d10 13 20 c8 8e 20 63 68 75 6e 6b 25 21 31 36 20 ca |. .. chunk%!16 .| 00000d20 0d 04 2e 0e 20 20 20 20 20 20 c9 20 32 3a 0d 04 |.... . 2:..| 00000d30 38 20 20 20 20 20 20 20 20 20 20 20 20 62 75 74 |8 but| 00000d40 74 6f 6e 73 25 3d 63 68 75 6e 6b 25 21 38 0d 04 |tons%=chunk%!8..| 00000d50 42 45 20 20 20 20 20 20 20 20 20 20 20 c8 99 20 |BE .. | 00000d60 22 57 69 6d 70 5f 57 68 69 63 68 49 63 6f 6e 22 |"Wimp_WhichIcon"| 00000d70 2c 6c 69 73 74 77 69 6e 64 25 2c 63 68 75 6e 6b |,listwind%,chunk| 00000d80 25 2b 34 2c 26 33 46 30 30 30 30 2c 26 32 31 30 |%+4,&3F0000,&210| 00000d90 30 30 30 0d 04 4c 20 20 20 20 20 20 20 20 20 20 |000..L | 00000da0 20 20 21 63 68 75 6e 6b 25 3d 6c 69 73 74 77 69 | !chunk%=listwi| 00000db0 6e 64 25 0d 04 56 2d 20 20 20 20 20 20 20 20 20 |nd%..V- | 00000dc0 20 20 c8 99 20 22 57 69 6d 70 5f 47 65 74 49 63 | .. "Wimp_GetIc| 00000dd0 6f 6e 53 74 61 74 65 22 2c 2c 63 68 75 6e 6b 25 |onState",,chunk%| 00000de0 0d 04 60 23 20 20 20 20 20 20 20 20 20 20 20 e7 |..`# .| 00000df0 20 24 28 63 68 75 6e 6b 25 2b 32 38 29 3c 3e 22 | $(chunk%+28)<>"| 00000e00 22 20 8c 0d 04 6a 3f 20 20 20 20 20 20 20 20 20 |" ...j? | 00000e10 20 20 20 20 20 20 20 ff 22 54 6f 6f 6c 53 70 72 | ."ToolSpr| 00000e20 69 74 65 73 20 3c 54 f8 f8 6c 73 69 65 73 24 50 |ites <T..lsies$P| 00000e30 61 74 68 3e 22 2b 24 28 63 68 75 6e 6b 25 2b 32 |ath>"+$(chunk%+2| 00000e40 38 29 0d 04 74 27 20 20 20 20 20 20 20 20 20 20 |8)..t' | 00000e50 20 20 20 20 20 20 c8 99 20 22 57 69 6d 70 5f 53 | .. "Wimp_S| 00000e60 65 74 4d 6f 64 65 22 2c eb 0d 04 7e 10 20 20 20 |etMode",...~. | 00000e70 20 20 20 20 20 20 20 20 cd 0d 04 88 1d 20 20 20 | ..... | 00000e80 20 20 20 20 20 20 20 20 e7 20 62 75 74 74 6f 6e | . button| 00000e90 73 25 3d 34 20 8c 0d 04 92 26 20 20 20 20 20 20 |s%=4 ....& | 00000ea0 20 20 20 20 20 20 20 20 20 20 63 68 75 6e 6b 25 | chunk%| 00000eb0 21 30 3d 6c 69 73 74 77 69 6e 64 25 0d 04 9c 34 |!0=listwind%...4| 00000ec0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000ed0 c8 99 20 22 57 69 6d 70 5f 47 65 74 57 69 6e 64 |.. "Wimp_GetWind| 00000ee0 6f 77 53 74 61 74 65 22 2c 2c 63 68 75 6e 6b 25 |owState",,chunk%| 00000ef0 0d 04 a6 1f 20 20 20 20 20 20 20 20 20 20 20 20 |.... | 00000f00 20 20 20 20 63 68 75 6e 6b 25 21 32 34 3d 30 0d | chunk%!24=0.| 00000f10 04 b0 30 20 20 20 20 20 20 20 20 20 20 20 20 20 |..0 | 00000f20 20 20 20 c8 99 20 22 57 69 6d 70 5f 4f 70 65 6e | .. "Wimp_Open| 00000f30 57 69 6e 64 6f 77 22 2c 2c 63 68 75 6e 6b 25 0d |Window",,chunk%.| 00000f40 04 ba 25 20 20 20 20 20 20 20 20 20 20 20 20 20 |..% | 00000f50 20 20 20 21 63 68 75 6e 6b 25 3d 63 74 72 6c 77 | !chunk%=ctrlw| 00000f60 69 6e 64 25 0d 04 c4 34 20 20 20 20 20 20 20 20 |ind%...4 | 00000f70 20 20 20 20 20 20 20 20 c8 99 20 22 57 69 6d 70 | .. "Wimp| 00000f80 45 78 74 5f 43 6c 6f 73 65 4c 69 6e 6b 65 64 22 |Ext_CloseLinked"| 00000f90 2c 2c 63 68 75 6e 6b 25 0d 04 ce 10 20 20 20 20 |,,chunk%.... | 00000fa0 20 20 20 20 20 20 20 cd 0d 04 d8 10 20 20 20 20 | ..... | 00000fb0 20 20 20 20 20 20 20 e1 0d 04 e2 0e 20 20 20 20 | ..... | 00000fc0 20 20 c9 20 33 3a 0d 04 ec 21 20 20 20 20 20 20 | . 3:...! | 00000fd0 20 20 20 20 20 63 68 75 6e 6b 25 21 30 3d 6c 69 | chunk%!0=li| 00000fe0 73 74 77 69 6e 64 25 0d 04 f6 2f 20 20 20 20 20 |stwind%.../ | 00000ff0 20 20 20 20 20 20 c8 99 20 22 57 69 6d 70 5f 47 | .. "Wimp_G| 00001000 65 74 57 69 6e 64 6f 77 53 74 61 74 65 22 2c 2c |etWindowState",,| 00001010 63 68 75 6e 6b 25 0d 05 00 1a 20 20 20 20 20 20 |chunk%.... | 00001020 20 20 20 20 20 63 68 75 6e 6b 25 21 32 34 3d 30 | chunk%!24=0| 00001030 0d 05 0a 2b 20 20 20 20 20 20 20 20 20 20 20 c8 |...+ .| 00001040 99 20 22 57 69 6d 70 5f 4f 70 65 6e 57 69 6e 64 |. "Wimp_OpenWind| 00001050 6f 77 22 2c 2c 63 68 75 6e 6b 25 0d 05 14 20 20 |ow",,chunk%... | 00001060 20 20 20 20 20 20 20 20 20 20 21 63 68 75 6e 6b | !chunk| 00001070 25 3d 63 74 72 6c 77 69 6e 64 25 0d 05 1e 2f 20 |%=ctrlwind%.../ | 00001080 20 20 20 20 20 20 20 20 20 20 c8 99 20 22 57 69 | .. "Wi| 00001090 6d 70 45 78 74 5f 43 6c 6f 73 65 4c 69 6e 6b 65 |mpExt_CloseLinke| 000010a0 64 22 2c 2c 63 68 75 6e 6b 25 0d 05 28 10 20 20 |d",,chunk%..(. | 000010b0 20 20 20 20 20 20 20 20 20 e1 0d 05 32 06 20 cb | ...2. .| 000010c0 0d 05 3c 06 20 cd 0d 05 46 04 0d 05 50 2e 20 e7 |..<. ...F...P. .| 000010d0 20 63 68 75 6e 6b 25 21 31 32 20 3d 20 6c 69 73 | chunk%!12 = lis| 000010e0 74 77 69 6e 64 25 20 80 20 63 68 75 6e 6b 25 21 |twind% . chunk%!| 000010f0 31 36 3c 3e 2d 31 20 8c 0d 05 5a 20 20 20 20 20 |16<>-1 ...Z | 00001100 20 20 20 20 20 20 20 62 75 74 74 6f 6e 73 25 3d | buttons%=| 00001110 63 68 75 6e 6b 25 21 38 0d 05 64 30 20 20 20 20 |chunk%!8..d0 | 00001120 20 20 20 20 20 20 20 c8 99 20 22 57 69 6d 70 5f | .. "Wimp_| 00001130 47 65 74 49 63 6f 6e 53 74 61 74 65 22 2c 2c 63 |GetIconState",,c| 00001140 68 75 6e 6b 25 2b 31 32 0d 05 6e 3a 20 20 20 20 |hunk%+12..n: | 00001150 20 20 20 20 20 20 20 ff 22 54 6f 6f 6c 53 70 72 | ."ToolSpr| 00001160 69 74 65 73 20 3c 54 f8 f8 6c 73 69 65 73 24 50 |ites <T..lsies$P| 00001170 61 74 68 3e 22 2b 24 28 63 68 75 6e 6b 25 2b 34 |ath>"+$(chunk%+4| 00001180 30 29 0d 05 78 22 20 20 20 20 20 20 20 20 20 20 |0)..x" | 00001190 20 c8 99 20 22 57 69 6d 70 5f 53 65 74 4d 6f 64 | .. "Wimp_SetMod| 000011a0 65 22 2c eb 0d 05 82 1f 20 20 20 20 20 20 20 20 |e",..... | 000011b0 20 20 20 e7 20 62 75 74 74 6f 6e 73 25 20 3d 20 | . buttons% = | 000011c0 34 20 8c 0d 05 8c 26 20 20 20 20 20 20 20 20 20 |4 ....& | 000011d0 20 20 20 20 20 20 20 63 68 75 6e 6b 25 21 30 3d | chunk%!0=| 000011e0 6c 69 73 74 77 69 6e 64 25 0d 05 96 34 20 20 20 |listwind%...4 | 000011f0 20 20 20 20 20 20 20 20 20 20 20 20 20 c8 99 20 | .. | 00001200 22 57 69 6d 70 5f 47 65 74 57 69 6e 64 6f 77 53 |"Wimp_GetWindowS| 00001210 74 61 74 65 22 2c 2c 63 68 75 6e 6b 25 0d 05 a0 |tate",,chunk%...| 00001220 1f 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |. | 00001230 20 63 68 75 6e 6b 25 21 32 34 3d 30 0d 05 aa 30 | chunk%!24=0...0| 00001240 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00001250 c8 99 20 22 57 69 6d 70 5f 4f 70 65 6e 57 69 6e |.. "Wimp_OpenWin| 00001260 64 6f 77 22 2c 2c 63 68 75 6e 6b 25 0d 05 b4 25 |dow",,chunk%...%| 00001270 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00001280 21 63 68 75 6e 6b 25 3d 63 74 72 6c 77 69 6e 64 |!chunk%=ctrlwind| 00001290 25 0d 05 be 34 20 20 20 20 20 20 20 20 20 20 20 |%...4 | 000012a0 20 20 20 20 20 c8 99 20 22 57 69 6d 70 45 78 74 | .. "WimpExt| 000012b0 5f 43 6c 6f 73 65 4c 69 6e 6b 65 64 22 2c 2c 63 |_CloseLinked",,c| 000012c0 68 75 6e 6b 25 0d 05 c8 10 20 20 20 20 20 20 20 |hunk%.... | 000012d0 20 20 20 20 cd 0d 05 d2 10 20 20 20 20 20 20 20 | ..... | 000012e0 20 20 20 20 e1 0d 05 dc 06 20 cd 0d 05 e6 04 0d | ..... ......| 000012f0 05 f0 2e 20 e7 20 63 68 75 6e 6b 25 21 31 32 20 |... . chunk%!12 | 00001300 3d 20 69 6e 66 6f 77 69 6e 64 25 20 80 20 63 68 |= infowind% . ch| 00001310 75 6e 6b 25 21 31 36 20 3d 20 37 20 8c 0d 05 fa |unk%!16 = 7 ....| 00001320 2e 20 e7 20 63 68 75 6e 6b 25 21 38 80 34 20 8c |. . chunk%!8.4 .| 00001330 20 c8 99 20 22 57 69 6d 70 45 78 74 5f 43 72 65 | .. "WimpExt_Cre| 00001340 61 74 65 4d 65 6e 75 22 2c 2d 31 0d 06 04 18 20 |ateMenu",-1.... | 00001350 20 20 21 63 68 75 6e 6b 25 3d 78 74 72 61 77 69 | !chunk%=xtrawi| 00001360 6e 64 25 0d 06 0e 27 20 20 20 c8 99 20 22 57 69 |nd%...' .. "Wi| 00001370 6d 70 5f 47 65 74 57 69 6e 64 6f 77 53 74 61 74 |mp_GetWindowStat| 00001380 65 22 2c 2c 63 68 75 6e 6b 25 0d 06 18 2a 20 20 |e",,chunk%...* | 00001390 20 c8 99 20 22 57 69 6d 70 45 78 74 5f 43 65 6e | .. "WimpExt_Cen| 000013a0 74 72 65 57 69 6e 64 6f 77 22 2c 2c 63 68 75 6e |treWindow",,chun| 000013b0 6b 25 2b 34 0d 06 22 2b 20 20 20 c8 99 20 22 57 |k%+4.."+ .. "W| 000013c0 69 6d 70 45 78 74 5f 43 65 6e 74 72 65 57 69 6e |impExt_CentreWin| 000013d0 64 6f 77 56 22 2c 2c 63 68 75 6e 6b 25 2b 34 0d |dowV",,chunk%+4.| 000013e0 06 2c 13 20 20 20 63 68 75 6e 6b 25 21 32 38 3d |.,. chunk%!28=| 000013f0 2d 31 0d 06 36 26 20 20 20 c8 99 20 22 57 69 6d |-1..6& .. "Wim| 00001400 70 45 78 74 5f 4f 70 65 6e 4c 69 6e 6b 65 64 22 |pExt_OpenLinked"| 00001410 2c 2c 63 68 75 6e 6b 25 0d 06 40 08 20 20 20 e1 |,,chunk%..@. .| 00001420 0d 06 4a 06 20 cd 0d 06 54 04 0d 06 5e 06 20 e1 |..J. ...T...^. .| 00001430 0d 06 68 04 0d 06 72 04 0d 06 7c 11 dd f2 4d 65 |..h...r...|...Me| 00001440 6e 75 5f 53 65 6c 65 63 74 0d 06 86 11 c8 8e 20 |nu_Select...... | 00001450 63 68 75 6e 6b 25 21 30 20 ca 0d 06 90 0e 20 20 |chunk%!0 ..... | 00001460 20 20 20 20 c9 20 30 3a 0d 06 9a 22 20 20 20 20 | . 0:..." | 00001470 20 20 20 20 20 20 20 20 20 21 63 68 75 6e 6b 25 | !chunk%| 00001480 3d 69 6e 66 6f 77 69 6e 64 25 0d 06 a4 31 20 20 |=infowind%...1 | 00001490 20 20 20 20 20 20 20 20 20 20 20 c8 99 20 22 57 | .. "W| 000014a0 69 6d 70 5f 47 65 74 57 69 6e 64 6f 77 53 74 61 |imp_GetWindowSta| 000014b0 74 65 22 2c 2c 63 68 75 6e 6b 25 0d 06 ae 34 20 |te",,chunk%...4 | 000014c0 20 20 20 20 20 20 20 20 20 20 20 20 c8 99 20 22 | .. "| 000014d0 57 69 6d 70 45 78 74 5f 43 65 6e 74 72 65 57 69 |WimpExt_CentreWi| 000014e0 6e 64 6f 77 22 2c 2c 63 68 75 6e 6b 25 2b 34 0d |ndow",,chunk%+4.| 000014f0 06 b8 35 20 20 20 20 20 20 20 20 20 20 20 20 20 |..5 | 00001500 c8 99 20 22 57 69 6d 70 45 78 74 5f 43 65 6e 74 |.. "WimpExt_Cent| 00001510 72 65 57 69 6e 64 6f 77 56 22 2c 2c 63 68 75 6e |reWindowV",,chun| 00001520 6b 25 2b 34 0d 06 c2 46 20 20 20 20 20 20 20 20 |k%+4...F | 00001530 20 20 20 20 20 c8 99 20 22 57 69 6d 70 45 78 74 | .. "WimpExt| 00001540 5f 43 72 65 61 74 65 4d 65 6e 75 22 2c 2c 69 6e |_CreateMenu",,in| 00001550 66 6f 77 69 6e 64 25 2c 63 68 75 6e 6b 25 21 34 |fowind%,chunk%!4| 00001560 2c 63 68 75 6e 6b 25 21 31 36 0d 06 cc 12 20 20 |,chunk%!16.... | 00001570 20 20 20 20 20 20 20 20 20 20 20 e1 0d 06 d6 0e | .....| 00001580 20 20 20 20 20 20 c9 20 31 3a 0d 06 e0 22 20 20 | . 1:..." | 00001590 20 20 20 20 20 20 20 20 20 20 20 21 63 68 75 6e | !chun| 000015a0 6b 25 3d 63 74 72 6c 77 69 6e 64 25 0d 06 ea 31 |k%=ctrlwind%...1| 000015b0 20 20 20 20 20 20 20 20 20 20 20 20 20 c8 99 20 | .. | 000015c0 22 57 69 6d 70 5f 47 65 74 57 69 6e 64 6f 77 53 |"Wimp_GetWindowS| 000015d0 74 61 74 65 22 2c 2c 63 68 75 6e 6b 25 0d 06 f4 |tate",,chunk%...| 000015e0 34 20 20 20 20 20 20 20 20 20 20 20 20 20 c8 99 |4 ..| 000015f0 20 22 57 69 6d 70 45 78 74 5f 43 65 6e 74 72 65 | "WimpExt_Centre| 00001600 57 69 6e 64 6f 77 22 2c 2c 63 68 75 6e 6b 25 2b |Window",,chunk%+| 00001610 34 0d 06 fe 35 20 20 20 20 20 20 20 20 20 20 20 |4...5 | 00001620 20 20 c8 99 20 22 57 69 6d 70 45 78 74 5f 43 65 | .. "WimpExt_Ce| 00001630 6e 74 72 65 57 69 6e 64 6f 77 56 22 2c 2c 63 68 |ntreWindowV",,ch| 00001640 75 6e 6b 25 2b 34 0d 07 08 1d 20 20 20 20 20 20 |unk%+4.... | 00001650 20 20 20 20 20 20 20 63 68 75 6e 6b 25 21 32 38 | chunk%!28| 00001660 3d 2d 31 0d 07 12 30 20 20 20 20 20 20 20 20 20 |=-1...0 | 00001670 20 20 20 20 c8 99 20 22 57 69 6d 70 45 78 74 5f | .. "WimpExt_| 00001680 4f 70 65 6e 4c 69 6e 6b 65 64 22 2c 2c 63 68 75 |OpenLinked",,chu| 00001690 6e 6b 25 0d 07 1c 12 20 20 20 20 20 20 20 20 20 |nk%.... | 000016a0 20 20 20 20 e1 0d 07 26 0e 20 20 20 20 20 20 c9 | ...&. .| 000016b0 20 32 3a 0d 07 30 3e 20 20 20 20 20 20 20 20 20 | 2:..0> | 000016c0 20 20 20 20 2a 54 6f 6f 6c 53 70 72 69 74 65 73 | *ToolSprites| 000016d0 20 52 65 73 6f 75 72 63 65 73 3a 24 2e 52 65 73 | Resources:$.Res| 000016e0 6f 75 72 63 65 73 2e 57 69 6d 70 2e 54 6f 6f 6c |ources.Wimp.Tool| 000016f0 73 0d 07 3a 24 20 20 20 20 20 20 20 20 20 20 20 |s..:$ | 00001700 20 20 c8 99 20 22 57 69 6d 70 5f 53 65 74 4d 6f | .. "Wimp_SetMo| 00001710 64 65 22 2c eb 0d 07 44 13 20 20 20 20 20 20 c9 |de",...D. .| 00001720 20 33 3a 20 f2 65 6e 64 0d 07 4e 4d 7f 20 2a 57 | 3: .end..NM. *W| 00001730 69 6d 70 54 61 73 6b 20 45 72 72 6f 72 20 54 68 |impTask Error Th| 00001740 65 72 65 20 73 65 65 6d 73 20 74 6f 20 62 65 20 |ere seems to be | 00001750 61 20 6d 65 6e 75 20 69 74 65 6d 20 49 20 64 69 |a menu item I di| 00001760 64 6e 27 74 20 6b 6e 6f 77 20 61 62 6f 75 74 20 |dn't know about | 00001770 68 65 72 65 2e 0d 07 58 05 cb 0d 07 62 05 e1 0d |here...X....b...| 00001780 07 6c 04 0d 07 76 04 0d 07 80 04 0d 07 8a 09 dd |.l...v..........| 00001790 f2 65 6e 64 0d 07 94 0d e3 49 25 3d 30 b8 32 35 |.end.....I%=0.25| 000017a0 35 0d 07 9e 37 c8 95 20 66 6f 6e 74 73 25 3f 49 |5...7.. fonts%?I| 000017b0 25 3e 30 3a c8 99 20 22 46 6f 6e 74 5f 4c 6f 73 |%>0:.. "Font_Los| 000017c0 65 46 6f 6e 74 22 2c 49 25 3a 66 6f 6e 74 73 25 |eFont",I%:fonts%| 000017d0 3f 49 25 2d 3d 31 3a ce 0d 07 a8 05 ed 0d 07 b2 |?I%-=1:.........| 000017e0 26 c8 99 20 22 57 69 6d 70 45 78 74 5f 43 6c 6f |&.. "WimpExt_Clo| 000017f0 73 65 44 6f 77 6e 22 2c 74 61 73 6b 68 61 6e 64 |seDown",taskhand| 00001800 6c 65 25 0d 07 bc 17 c8 99 20 22 57 69 6d 70 5f |le%...... "Wimp_| 00001810 43 6c 6f 73 65 44 6f 77 6e 22 0d 07 c6 05 e0 0d |CloseDown"......| 00001820 07 d0 05 e1 0d 07 da 04 0d 07 e4 0a dd f2 68 65 |..............he| 00001830 6c 70 0d 07 ee 11 68 65 6c 70 24 3d 22 54 f8 f8 |lp....help$="T..| 00001840 6c 73 22 0d 07 f8 2a 20 64 65 73 74 69 6e 61 74 |ls"...* destinat| 00001850 69 6f 6e 25 3d 63 68 75 6e 6b 25 21 34 3a 6d 65 |ion%=chunk%!4:me| 00001860 73 73 32 25 3d 63 68 75 6e 6b 25 21 38 0d 08 02 |ss2%=chunk%!8...| 00001870 04 0d 08 0c 12 c8 8e 20 63 68 75 6e 6b 25 21 33 |....... chunk%!3| 00001880 32 20 ca 0d 08 16 04 0d 08 20 8a 20 20 20 20 20 |2 ....... . | 00001890 c9 20 2d 32 20 20 20 20 20 20 20 3a 68 65 6c 70 |. -2 :help| 000018a0 24 3d 22 54 68 69 73 20 69 73 20 74 68 65 20 54 |$="This is the T| 000018b0 f8 f8 6c 73 20 69 63 6f 6e 2e 7c 4d 43 6c 69 63 |..ls icon.|MClic| 000018c0 6b 20 53 45 4c 45 43 54 20 74 6f 20 73 68 6f 77 |k SELECT to show| 000018d0 20 74 68 65 20 61 76 61 69 6c 61 62 6c 65 20 77 | the available w| 000018e0 69 6e 64 6f 77 20 62 6f 72 64 65 72 73 2e 7c 4d |indow borders.|M| 000018f0 43 6c 69 63 6b 20 4d 45 4e 55 20 74 6f 20 73 65 |Click MENU to se| 00001900 65 20 74 68 65 20 6d 61 69 6e 20 6d 65 6e 75 2e |e the main menu.| 00001910 22 0d 08 2a 04 0d 08 34 4d 20 20 20 20 20 c9 20 |"..*...4M . | 00001920 69 6e 66 6f 77 69 6e 64 25 3a 68 65 6c 70 24 3d |infowind%:help$=| 00001930 22 54 68 69 73 20 77 69 6e 64 6f 77 20 64 69 73 |"This window dis| 00001940 70 6c 61 79 73 20 73 6f 6d 65 20 6d 6f 72 65 20 |plays some more | 00001950 69 6e 66 6f 20 61 62 6f 75 74 20 54 f8 f8 6c 73 |info about T..ls| 00001960 2e 22 0d 08 3e 26 20 20 20 20 20 20 20 20 20 20 |."..>& | 00001970 20 20 20 20 20 20 20 20 20 20 c8 8e 20 63 68 75 | .. chu| 00001980 6e 6b 25 21 33 36 20 ca 0d 08 48 4d 20 20 20 20 |nk%!36 ...HM | 00001990 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 000019a0 20 20 20 20 20 c9 20 35 3a 68 65 6c 70 24 3d 22 | . 5:help$="| 000019b0 54 68 69 73 20 69 73 20 74 68 65 20 6e 61 6d 65 |This is the name| 000019c0 20 6f 66 20 74 68 65 20 61 70 70 6c 69 63 61 74 | of the applicat| 000019d0 69 6f 6e 2e 22 0d 08 52 3e 20 20 20 20 20 20 20 |ion."..R> | 000019e0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 000019f0 20 20 c9 20 36 3a 68 65 6c 70 24 3d 22 54 68 69 | . 6:help$="Thi| 00001a00 73 20 69 73 20 77 68 61 74 20 69 74 20 64 6f 65 |s is what it doe| 00001a10 73 2e 22 0d 08 5c 68 20 20 20 20 20 20 20 20 20 |s."..\h | 00001a20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00001a30 c9 20 37 3a 68 65 6c 70 24 3d 22 54 68 69 73 20 |. 7:help$="This | 00001a40 69 73 20 6d 79 20 6e 61 6d 65 2e 7c 4d 43 6c 69 |is my name.|MCli| 00001a50 63 6b 20 53 45 4c 45 43 54 20 6f 72 20 41 44 4a |ck SELECT or ADJ| 00001a60 55 53 54 20 74 6f 20 72 65 61 64 20 6d 6f 72 65 |UST to read more| 00001a70 20 61 62 6f 75 74 20 6d 65 2e 22 0d 08 66 4f 20 | about me."..fO | 00001a80 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00001a90 20 20 20 20 20 20 20 20 c9 20 38 3a 68 65 6c 70 | . 8:help| 00001aa0 24 3d 22 54 68 69 73 20 69 73 20 74 68 65 20 76 |$="This is the v| 00001ab0 65 72 73 69 6f 6e 20 6f 66 20 54 f8 f8 6c 73 20 |ersion of T..ls | 00001ac0 79 6f 75 20 68 61 76 65 2e 22 0d 08 70 d3 20 20 |you have."..p. | 00001ad0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00001ae0 20 20 20 20 20 20 20 c9 20 39 3a 68 65 6c 70 24 | . 9:help$| 00001af0 3d 22 54 68 69 73 20 69 73 20 74 68 65 20 53 61 |="This is the Sa| 00001b00 69 6e 74 20 41 6e 64 72 65 77 27 73 20 43 72 6f |int Andrew's Cro| 00001b10 73 73 2e 7c 4d 49 74 20 69 73 20 74 68 65 20 6e |ss.|MIt is the n| 00001b20 61 74 69 6f 6e 61 6c 20 66 6c 61 67 20 6f 66 20 |ational flag of | 00001b30 53 63 6f 74 6c 61 6e 64 2e 7c 4d 49 20 70 75 74 |Scotland.|MI put| 00001b40 20 69 74 20 68 65 72 65 20 74 6f 20 74 65 6c 6c | it here to tell| 00001b50 20 65 76 65 72 79 6f 6e 65 20 49 20 61 6d 20 53 | everyone I am S| 00001b60 63 6f 74 74 69 73 68 2e 7c 4d 49 74 20 69 73 20 |cottish.|MIt is | 00001b70 61 6c 73 6f 20 74 68 65 20 69 63 6f 6e 20 66 6f |also the icon fo| 00001b80 72 20 6d 79 20 21 42 61 63 6b 44 72 69 70 73 20 |r my !BackDrips | 00001b90 61 70 70 6c 69 63 61 74 69 6f 6e 2e 22 0d 08 7a |application."..z| 00001ba0 19 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |. | 00001bb0 20 20 20 20 20 cb 0d 08 84 04 0d 08 8e 38 20 20 | ........8 | 00001bc0 20 20 20 c9 20 63 74 72 6c 77 69 6e 64 25 3a 68 | . ctrlwind%:h| 00001bd0 65 6c 70 24 3d 22 54 68 69 73 20 69 73 20 74 68 |elp$="This is th| 00001be0 65 20 54 f8 f8 6c 73 20 73 65 6c 65 63 74 6f 72 |e T..ls selector| 00001bf0 2e 22 0d 08 98 26 20 20 20 20 20 20 20 20 20 20 |."...& | 00001c00 20 20 20 20 20 20 20 20 20 20 c8 8e 20 63 68 75 | .. chu| 00001c10 6e 6b 25 21 33 36 20 ca 0d 08 a2 4f 20 20 20 20 |nk%!36 ....O | 00001c20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00001c30 20 20 20 20 20 c9 20 33 3a 20 68 65 6c 70 24 3d | . 3: help$=| 00001c40 68 65 6c 70 24 2b 22 43 6c 69 63 6b 20 68 65 72 |help$+"Click her| 00001c50 65 20 74 6f 20 63 6c 6f 73 65 20 74 68 65 20 77 |e to close the w| 00001c60 69 6e 64 6f 77 2e 22 0d 08 ac 63 20 20 20 20 20 |indow."...c | 00001c70 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00001c80 20 20 20 20 c9 20 32 3a 20 68 65 6c 70 24 3d 68 | . 2: help$=h| 00001c90 65 6c 70 24 2b 22 43 6c 69 63 6b 20 68 65 72 65 |elp$+"Click here| 00001ca0 20 74 6f 20 6c 6f 61 64 20 74 68 65 20 63 75 72 | to load the cur| 00001cb0 72 65 6e 74 6c 79 20 73 65 6c 65 63 74 65 64 20 |rently selected | 00001cc0 74 6f 6f 6c 20 73 65 74 2e 22 0d 08 b6 19 20 20 |tool set.".... | 00001cd0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00001ce0 20 20 cb 0d 08 c0 04 0d 08 ca 38 20 20 20 20 20 | ........8 | 00001cf0 c9 20 6c 69 73 74 77 69 6e 64 25 3a 68 65 6c 70 |. listwind%:help| 00001d00 24 3d 22 54 68 69 73 20 69 73 20 74 68 65 20 54 |$="This is the T| 00001d10 f8 f8 6c 73 20 73 65 6c 65 63 74 6f 72 2e 22 0d |..ls selector.".| 00001d20 08 d4 5f 20 20 20 20 20 20 20 20 20 20 20 20 20 |.._ | 00001d30 20 20 20 20 20 20 20 e7 20 63 68 75 6e 6b 25 21 | . chunk%!| 00001d40 33 36 3c 3e 2d 31 20 8c 20 68 65 6c 70 24 3d 68 |36<>-1 . help$=h| 00001d50 65 6c 70 24 2b 22 43 6c 69 63 6b 20 68 65 72 65 |elp$+"Click here| 00001d60 20 74 6f 20 73 65 6c 65 63 74 20 74 68 69 73 20 | to select this | 00001d70 73 65 74 20 6f 66 20 74 6f 6f 6c 73 2e 22 0d 08 |set of tools."..| 00001d80 de 04 0d 08 e8 cb 20 20 20 20 20 c9 20 78 74 72 |...... . xtr| 00001d90 61 77 69 6e 64 25 3a 68 65 6c 70 24 3d 22 54 68 |awind%:help$="Th| 00001da0 69 73 20 77 69 6e 64 6f 77 20 73 68 6f 77 73 20 |is window shows | 00001db0 73 6f 6d 65 20 69 6e 66 6f 20 61 62 6f 75 74 20 |some info about | 00001dc0 6d 65 2c 61 6e 64 20 61 6c 73 6f 20 73 61 79 73 |me,and also says| 00001dd0 20 68 65 6c 6c 6f 20 74 6f 20 73 6f 6d 65 20 70 | hello to some p| 00001de0 65 6f 70 6c 65 20 49 20 6b 6e 6f 77 2e 7c 4d 49 |eople I know.|MI| 00001df0 66 20 79 6f 75 20 6c 69 6b 65 20 74 68 61 74 20 |f you like that | 00001e00 73 6f 72 74 20 6f 66 20 73 74 75 66 66 2c 74 68 |sort of stuff,th| 00001e10 65 6e 20 72 65 61 64 20 74 68 65 20 66 69 6c 65 |en read the file| 00001e20 20 27 50 72 69 76 61 74 65 27 20 69 6e 20 74 68 | 'Private' in th| 00001e30 69 73 20 61 70 70 6c 69 63 61 74 69 6f 6e 20 64 |is application d| 00001e40 69 72 65 63 74 6f 72 79 20 3a 2d 29 22 0d 08 f2 |irectory :-)"...| 00001e50 04 0d 08 fc 05 cb 0d 09 06 04 0d 09 10 21 20 21 |.............! !| 00001e60 63 68 75 6e 6b 25 3d 28 28 32 30 2b a9 68 65 6c |chunk%=((20+.hel| 00001e70 70 24 2b 31 29 2b 33 29 80 ac 33 0d 09 1a 15 20 |p$+1)+3)..3.... | 00001e80 63 68 75 6e 6b 25 21 31 32 3d 6d 65 73 73 32 25 |chunk%!12=mess2%| 00001e90 0d 09 24 13 20 63 68 75 6e 6b 25 21 31 36 3d 26 |..$. chunk%!16=&| 00001ea0 35 30 33 0d 09 2e 17 20 24 28 63 68 75 6e 6b 25 |503.... $(chunk%| 00001eb0 2b 32 30 29 3d 68 65 6c 70 24 0d 09 38 19 20 63 |+20)=help$..8. c| 00001ec0 68 75 6e 6b 25 3f 28 32 30 2b a9 68 65 6c 70 24 |hunk%?(20+.help$| 00001ed0 29 3d 30 0d 09 42 30 20 c8 99 22 57 69 6d 70 5f |)=0..B0 .."Wimp_| 00001ee0 53 65 6e 64 4d 65 73 73 61 67 65 22 2c 31 37 2c |SendMessage",17,| 00001ef0 63 68 75 6e 6b 25 2c 64 65 73 74 69 6e 61 74 69 |chunk%,destinati| 00001f00 6f 6e 25 0d 09 4c 05 e1 0d ff |on%..L....| 00001f0a