Please make these kinds of patches to BACK UP copies of your files only! It's always nice to be able to start over or put things back the way they were... ======================================================================= The following patch to the AppleWorks 2.0 SEG.PR file allows super and sub scripts to be printed in half height characters on the ImageWriter II without using the custom printer setup. BLOAD SEG.PR,TSYS,A$2000 CALL-151 244C:02 1B 78 00 2450:00 00 00 00 02 1B 7A 00 00 00 02 1B 79 00 00 00 2460:02 1B 7A 00 00 00 00 00 00 00 00 00 00 00 00 00 2470:00 BSAVE SEG.PR,TSYS,A$2000 ======================================================================= Patch to change the AppleWorks insert cursor to an inverse + sign from the current underline. BLOAD APLWORKS.SYSTEM,TSYS,A$2000 CALL-151 2DA1:2B BSAVE APLWORKS.SYSTEM,TSYS,A$2000 ======================================================================= This patch will prevent AppleWorks from preloading into RAM. This patch is not necessary if you are using the AE Expander since it has a no preload option. BLOAD APLWORKS.SYSTEM,TSYS,A$2000 POKE 15501,96 BSAVE APLWORKS.SYSTEM,TSYS,A$2000 Original value of 15501 is 24. ======================================================================= Patch to allow more than 9 copies of a document to be printed at one time. From Open-Apple October 87 POKE 768,255 BSAVE SEG.M1,T$00,L1,A$300,B36074 for Word Processor BSAVE SEG.M1,T$00,L1,A$300,B9185 for Data Base BSAVE SEG.M1,T$00,L1,A$300,B65895 for Spreadsheet ======================================================================= The following patch to AppleWorks 2.0 will prevent a carriage return from being inserted at the end of each word processor line when printing an ASCII file to disk (makes 2.0 work like earlier versions). BLOAD SEG.M1,T$00,A$2400,L$1000,B$871B POKE 10044,8 POKE 10045,68 POKE 10046,105 POKE 10047,115 POKE 10048,107 POKE 10049,32 POKE 10050,101 POKE 10051,114 POKE 10052,114 POKE 10053,173 POKE 10054,24 POKE 10055,41 POKE 10056,240 POKE 10057,15 POKE 10058,173 POKE 10059,144 POKE 10060,40 POKE 10061,208 POKE 10062,7 POKE 10063,169 POKE 10064,1 POKE 10065,32 POKE 10066,226 POKE 10067,55 POKE 10068,81 POKE 10069,39 POKE 10070,76 POKE 10071,69 POKE 10072,49 POKE 10073,173 POKE 10074,34 POKE 10075,41 POKE 10076,76 POKE 10077,41 POKE 10078,49 POKE 12582,76 POKE 12583,69 POKE 12584,39 POKE 9888,13 POKE 9889,14 POKE 9890,41 POKE 9891,208 POKE 9892,3 POKE 9893,76 POKE 9894,100 POKE 9895,49 POKE 9896,173 POKE 9897,24 POKE 9898,41 POKE 9899,240 POKE 9900,3 POKE 9901,32 POKE 9902,254 POKE 9903,41 POKE 9904,96 POKE 12637,76 POKE 12638,160 POKE 12639,38 POKE 9870,22 BSAVE SEG.M1,T$00,A$2400,L$1000,B$871B =================================================================== The following patch to AppleWorks 2.0 will keep AppleWorks from turning off boldface, underline, superscript, and/or subscript at the end of each line when printing a word processor file to a printer: BLOAD SEG.M1,T$00,A$2400,L$1000,B$871B POKE 12574,44: POKE 12154,44 :REM Boldface POKE 12579,44: POKE 12157,44 :REM Underline POKE 12550,44: POKE 12160,44 :REM Superscript POKE 12555,44: POKE 12163,44 :REM Subscript BSAVE SEG.M1,T$00,A$2400,L$1000,B$871B =================================================================== This patch will change the Apple Works 2.0 character that signifies a "Carriage Return" in a Word Processor document from a "box" to a Mousetext "bent arrow". This should only be done on a machine that can show Mousetext characters - i.e., a //c, //e enhanced or GS. BLOAD SEG.M1, T0, A$2100, L$2E00, B$4CDA 10 X = ASC ("M") + 128 20 L1 = 17415: L2 = 17819: L3 = 20151 30 POKE L1, X: POKE L2, X: POKE L3, X 40 END RUN UNLOCK SEG.M1 BSAVE SEG.M1, T0, A$2100, L$2E00, B$4CDA LOCK SEG.M1 =================================================================== For AppleWorks 2.0 installed on a SINGLE disc - e.g. 3.5 or Hard disc: (a) Eliminate the pause requesting you press the SPACE BAR after booting Appleworks: (b) Have AppleWorks automatically take the Date from the System Clock, without a pause to press RETURN to verify the date: BLOAD APLWORKS.SYSTEM, TSYS, A$2000 (a) POKE 14468, 44 << suppress SPACE BAR pause >> (b) POKE 14168, 208 << suppress pause for DATE >> POKE 14169, 19 BSAVE APLWORKS.SYSTEM, TSYS, A$2000 =================================================================== This patch "puts back" the "Control-@" facility into AppleWorks 2.0, that was in earlier versions of A/Wks. ("Control-@" will now be accepted in a control sequence for some Custom Printer set-up strings.) BLOAD APLWORKS.SYSTEM, A$2000, TSYS POKE 11760, 242 BSAVE APLWORKS.SYSTEM, A$2000, L8531, TSYS