Home » Archimedes archive » Micro User » MU 1991-06.adf » PD-Stuff » Utilities/!ScrollTxt/!Help2

Utilities/!ScrollTxt/!Help2

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-06.adf » PD-Stuff
Filename: Utilities/!ScrollTxt/!Help2
Read OK:
File size: 1145 bytes
Load address: 0000
Exec address: 0000
File contents
                          SCROLLTEXT 1.22
                          ~~~~~~~~~~~~~~~

     This is Scrolltext 1.22, a relocatable module allowing 
control of a professional looking scrolltext from BASIC. 

How to use Scrolltext
~~~~~~~~~~~~~~~~~~~~~
          Before scrolltext can be used, a datafile must be 
written. This datafile must obey certain rules:
          It must be entirely in upper case
          It must be terminated by a control code or "a"
There are a few exceptions to the upper case rule. Some lower 
case letters cause various effects to be implemented:
          "a" causes an immediate wrap to the start
          "b" causes the slowest speed to be used
          "c" causes the medium speed to be used
          "d" causes a 1 second pause
          "e" causes the fastest speed to be used
          "x" causes an error request
If the datafile is not immediately terminated by an "a" or a 
control code then random garbage may be displayed before the 
scrolltext wraps.
          When you wan't to start scrolling your datafile you 
must load it using:
          *ScrollFile <filename>
The scrolltext module will automatically claim workspace and load 
the file into it. Scrolling can then be initiated by either 
*ScrollOn or *ScrollGo.  *ScrollOn and *ScrollGo are almost 
identical, except *ScrollGo selects screenmode 13 before starting 
the scrolltext. The scrolltext should ONLY be used in mode 13 (or 
another 80k mode if you are prepared to fiddle with the palette 
- try entering the desktop with scrolling enabled).
          If you wish to pause the scrolltext you can use 
*ScrollOff. This acts as a pause, but it does stop the scrolling 
and cause the module to release all of the vectors it has 
claimed. You should use this before *ScrollFile <filename>. The 
scrolltext can be restarted by *ScrollOn or *ScrollGo - though if 
you clear the screen before restarting you may only get half of 
the first character. Please note that *ScrollOff is completely 
separate from the pause code embedded in the datafile - that 
causes a 1 second countdown only.

Error Requests
~~~~~~~~~~~~~~
          When an "x" is found embedded in the datafile, a flag 
in the scrolltext module is set. If, after an error request is 
caused, you issue a *ScrollCheck command, a "Scrolltext to User 
Message" error (Type &FD) will be generated. If you wan't effects 
with the scrolltext then you must repeatedly issue the 
*ScrollCheck command and trap the message error (an example of 
this is the !RunImage file in the !ScrollTxt directory). Once 
*ScrollCheck is issued, the error request flag is cleared until 
the next error request. If the error request flag is already 
clear when you issue *ScrollCheck then no error is generated and 
control is returned to your BASIC program.

Error Messages
~~~~~~~~~~~~~~
          There are a few errors that the scrolltext module can 
generate.
          If you try *ScrollOn before you load a 
datafile, then a "No Scrolltext data" error will be given.
          If you try to *ScrollFile after a *ScrollOn command 
then a "Bad Changeover" error will be generated. To select 
another datafile you must *ScrollOff first.
          "Scrolltext to User Message" is described above.


Credits
~~~~~~~
          All programming of this module was done by H.T.Wilkins 
(Also known as Batman for various reasons which are too 
complicated to mention here).           

          The font was taken from Alt_Man's DEMO01 and was 
originally drawn by Joust on an Amiga running Deluxe Paint II.

          Constant aggravation for better code by Steve Cook.

          Slag-off-the-Archimedes sessions by Mark Jackson and 
Paul Traynier (I don't know what they're laughing about, they 
only have an Amiga and an Epson portable PC!)

----------------------------------------------------------------
If you alter the code of this module, please send me a copy back 
so that I can update the master copy. Also send any ideas, bug 
reports or contributions to:
                            H.T.Wilkins
                            The Postern
                            Chignal Smealey
                            Chelmsford
                            Essex
                            CM1 4SU
----------------------------------------------------------------

This Module is P.D. and may be distributed freely providing that 
it is unaltered and is not sold for profit.
00000000  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000010  20 20 20 20 20 20 20 20  20 20 53 43 52 4f 4c 4c  |          SCROLL|
00000020  54 45 58 54 20 31 2e 32  32 0a 20 20 20 20 20 20  |TEXT 1.22.      |
00000030  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000040  20 20 20 20 7e 7e 7e 7e  7e 7e 7e 7e 7e 7e 7e 7e  |    ~~~~~~~~~~~~|
00000050  7e 7e 7e 0a 0a 20 20 20  20 20 54 68 69 73 20 69  |~~~..     This i|
00000060  73 20 53 63 72 6f 6c 6c  74 65 78 74 20 31 2e 32  |s Scrolltext 1.2|
00000070  32 2c 20 61 20 72 65 6c  6f 63 61 74 61 62 6c 65  |2, a relocatable|
00000080  20 6d 6f 64 75 6c 65 20  61 6c 6c 6f 77 69 6e 67  | module allowing|
00000090  20 0a 63 6f 6e 74 72 6f  6c 20 6f 66 20 61 20 70  | .control of a p|
000000a0  72 6f 66 65 73 73 69 6f  6e 61 6c 20 6c 6f 6f 6b  |rofessional look|
000000b0  69 6e 67 20 73 63 72 6f  6c 6c 74 65 78 74 20 66  |ing scrolltext f|
000000c0  72 6f 6d 20 42 41 53 49  43 2e 20 0a 0a 48 6f 77  |rom BASIC. ..How|
000000d0  20 74 6f 20 75 73 65 20  53 63 72 6f 6c 6c 74 65  | to use Scrollte|
000000e0  78 74 0a 7e 7e 7e 7e 7e  7e 7e 7e 7e 7e 7e 7e 7e  |xt.~~~~~~~~~~~~~|
000000f0  7e 7e 7e 7e 7e 7e 7e 7e  0a 20 20 20 20 20 20 20  |~~~~~~~~.       |
00000100  20 20 20 42 65 66 6f 72  65 20 73 63 72 6f 6c 6c  |   Before scroll|
00000110  74 65 78 74 20 63 61 6e  20 62 65 20 75 73 65 64  |text can be used|
00000120  2c 20 61 20 64 61 74 61  66 69 6c 65 20 6d 75 73  |, a datafile mus|
00000130  74 20 62 65 20 0a 77 72  69 74 74 65 6e 2e 20 54  |t be .written. T|
00000140  68 69 73 20 64 61 74 61  66 69 6c 65 20 6d 75 73  |his datafile mus|
00000150  74 20 6f 62 65 79 20 63  65 72 74 61 69 6e 20 72  |t obey certain r|
00000160  75 6c 65 73 3a 0a 20 20  20 20 20 20 20 20 20 20  |ules:.          |
00000170  49 74 20 6d 75 73 74 20  62 65 20 65 6e 74 69 72  |It must be entir|
00000180  65 6c 79 20 69 6e 20 75  70 70 65 72 20 63 61 73  |ely in upper cas|
00000190  65 0a 20 20 20 20 20 20  20 20 20 20 49 74 20 6d  |e.          It m|
000001a0  75 73 74 20 62 65 20 74  65 72 6d 69 6e 61 74 65  |ust be terminate|
000001b0  64 20 62 79 20 61 20 63  6f 6e 74 72 6f 6c 20 63  |d by a control c|
000001c0  6f 64 65 20 6f 72 20 22  61 22 0a 54 68 65 72 65  |ode or "a".There|
000001d0  20 61 72 65 20 61 20 66  65 77 20 65 78 63 65 70  | are a few excep|
000001e0  74 69 6f 6e 73 20 74 6f  20 74 68 65 20 75 70 70  |tions to the upp|
000001f0  65 72 20 63 61 73 65 20  72 75 6c 65 2e 20 53 6f  |er case rule. So|
00000200  6d 65 20 6c 6f 77 65 72  20 0a 63 61 73 65 20 6c  |me lower .case l|
00000210  65 74 74 65 72 73 20 63  61 75 73 65 20 76 61 72  |etters cause var|
00000220  69 6f 75 73 20 65 66 66  65 63 74 73 20 74 6f 20  |ious effects to |
00000230  62 65 20 69 6d 70 6c 65  6d 65 6e 74 65 64 3a 0a  |be implemented:.|
00000240  20 20 20 20 20 20 20 20  20 20 22 61 22 20 63 61  |          "a" ca|
00000250  75 73 65 73 20 61 6e 20  69 6d 6d 65 64 69 61 74  |uses an immediat|
00000260  65 20 77 72 61 70 20 74  6f 20 74 68 65 20 73 74  |e wrap to the st|
00000270  61 72 74 0a 20 20 20 20  20 20 20 20 20 20 22 62  |art.          "b|
00000280  22 20 63 61 75 73 65 73  20 74 68 65 20 73 6c 6f  |" causes the slo|
00000290  77 65 73 74 20 73 70 65  65 64 20 74 6f 20 62 65  |west speed to be|
000002a0  20 75 73 65 64 0a 20 20  20 20 20 20 20 20 20 20  | used.          |
000002b0  22 63 22 20 63 61 75 73  65 73 20 74 68 65 20 6d  |"c" causes the m|
000002c0  65 64 69 75 6d 20 73 70  65 65 64 20 74 6f 20 62  |edium speed to b|
000002d0  65 20 75 73 65 64 0a 20  20 20 20 20 20 20 20 20  |e used.         |
000002e0  20 22 64 22 20 63 61 75  73 65 73 20 61 20 31 20  | "d" causes a 1 |
000002f0  73 65 63 6f 6e 64 20 70  61 75 73 65 0a 20 20 20  |second pause.   |
00000300  20 20 20 20 20 20 20 22  65 22 20 63 61 75 73 65  |       "e" cause|
00000310  73 20 74 68 65 20 66 61  73 74 65 73 74 20 73 70  |s the fastest sp|
00000320  65 65 64 20 74 6f 20 62  65 20 75 73 65 64 0a 20  |eed to be used. |
00000330  20 20 20 20 20 20 20 20  20 22 78 22 20 63 61 75  |         "x" cau|
00000340  73 65 73 20 61 6e 20 65  72 72 6f 72 20 72 65 71  |ses an error req|
00000350  75 65 73 74 0a 49 66 20  74 68 65 20 64 61 74 61  |uest.If the data|
00000360  66 69 6c 65 20 69 73 20  6e 6f 74 20 69 6d 6d 65  |file is not imme|
00000370  64 69 61 74 65 6c 79 20  74 65 72 6d 69 6e 61 74  |diately terminat|
00000380  65 64 20 62 79 20 61 6e  20 22 61 22 20 6f 72 20  |ed by an "a" or |
00000390  61 20 0a 63 6f 6e 74 72  6f 6c 20 63 6f 64 65 20  |a .control code |
000003a0  74 68 65 6e 20 72 61 6e  64 6f 6d 20 67 61 72 62  |then random garb|
000003b0  61 67 65 20 6d 61 79 20  62 65 20 64 69 73 70 6c  |age may be displ|
000003c0  61 79 65 64 20 62 65 66  6f 72 65 20 74 68 65 20  |ayed before the |
000003d0  0a 73 63 72 6f 6c 6c 74  65 78 74 20 77 72 61 70  |.scrolltext wrap|
000003e0  73 2e 0a 20 20 20 20 20  20 20 20 20 20 57 68 65  |s..          Whe|
000003f0  6e 20 79 6f 75 20 77 61  6e 27 74 20 74 6f 20 73  |n you wan't to s|
00000400  74 61 72 74 20 73 63 72  6f 6c 6c 69 6e 67 20 79  |tart scrolling y|
00000410  6f 75 72 20 64 61 74 61  66 69 6c 65 20 79 6f 75  |our datafile you|
00000420  20 0a 6d 75 73 74 20 6c  6f 61 64 20 69 74 20 75  | .must load it u|
00000430  73 69 6e 67 3a 0a 20 20  20 20 20 20 20 20 20 20  |sing:.          |
00000440  2a 53 63 72 6f 6c 6c 46  69 6c 65 20 3c 66 69 6c  |*ScrollFile <fil|
00000450  65 6e 61 6d 65 3e 0a 54  68 65 20 73 63 72 6f 6c  |ename>.The scrol|
00000460  6c 74 65 78 74 20 6d 6f  64 75 6c 65 20 77 69 6c  |ltext module wil|
00000470  6c 20 61 75 74 6f 6d 61  74 69 63 61 6c 6c 79 20  |l automatically |
00000480  63 6c 61 69 6d 20 77 6f  72 6b 73 70 61 63 65 20  |claim workspace |
00000490  61 6e 64 20 6c 6f 61 64  20 0a 74 68 65 20 66 69  |and load .the fi|
000004a0  6c 65 20 69 6e 74 6f 20  69 74 2e 20 53 63 72 6f  |le into it. Scro|
000004b0  6c 6c 69 6e 67 20 63 61  6e 20 74 68 65 6e 20 62  |lling can then b|
000004c0  65 20 69 6e 69 74 69 61  74 65 64 20 62 79 20 65  |e initiated by e|
000004d0  69 74 68 65 72 20 0a 2a  53 63 72 6f 6c 6c 4f 6e  |ither .*ScrollOn|
000004e0  20 6f 72 20 2a 53 63 72  6f 6c 6c 47 6f 2e 20 20  | or *ScrollGo.  |
000004f0  2a 53 63 72 6f 6c 6c 4f  6e 20 61 6e 64 20 2a 53  |*ScrollOn and *S|
00000500  63 72 6f 6c 6c 47 6f 20  61 72 65 20 61 6c 6d 6f  |crollGo are almo|
00000510  73 74 20 0a 69 64 65 6e  74 69 63 61 6c 2c 20 65  |st .identical, e|
00000520  78 63 65 70 74 20 2a 53  63 72 6f 6c 6c 47 6f 20  |xcept *ScrollGo |
00000530  73 65 6c 65 63 74 73 20  73 63 72 65 65 6e 6d 6f  |selects screenmo|
00000540  64 65 20 31 33 20 62 65  66 6f 72 65 20 73 74 61  |de 13 before sta|
00000550  72 74 69 6e 67 20 0a 74  68 65 20 73 63 72 6f 6c  |rting .the scrol|
00000560  6c 74 65 78 74 2e 20 54  68 65 20 73 63 72 6f 6c  |ltext. The scrol|
00000570  6c 74 65 78 74 20 73 68  6f 75 6c 64 20 4f 4e 4c  |ltext should ONL|
00000580  59 20 62 65 20 75 73 65  64 20 69 6e 20 6d 6f 64  |Y be used in mod|
00000590  65 20 31 33 20 28 6f 72  20 0a 61 6e 6f 74 68 65  |e 13 (or .anothe|
000005a0  72 20 38 30 6b 20 6d 6f  64 65 20 69 66 20 79 6f  |r 80k mode if yo|
000005b0  75 20 61 72 65 20 70 72  65 70 61 72 65 64 20 74  |u are prepared t|
000005c0  6f 20 66 69 64 64 6c 65  20 77 69 74 68 20 74 68  |o fiddle with th|
000005d0  65 20 70 61 6c 65 74 74  65 20 0a 2d 20 74 72 79  |e palette .- try|
000005e0  20 65 6e 74 65 72 69 6e  67 20 74 68 65 20 64 65  | entering the de|
000005f0  73 6b 74 6f 70 20 77 69  74 68 20 73 63 72 6f 6c  |sktop with scrol|
00000600  6c 69 6e 67 20 65 6e 61  62 6c 65 64 29 2e 0a 20  |ling enabled).. |
00000610  20 20 20 20 20 20 20 20  20 49 66 20 79 6f 75 20  |         If you |
00000620  77 69 73 68 20 74 6f 20  70 61 75 73 65 20 74 68  |wish to pause th|
00000630  65 20 73 63 72 6f 6c 6c  74 65 78 74 20 79 6f 75  |e scrolltext you|
00000640  20 63 61 6e 20 75 73 65  20 0a 2a 53 63 72 6f 6c  | can use .*Scrol|
00000650  6c 4f 66 66 2e 20 54 68  69 73 20 61 63 74 73 20  |lOff. This acts |
00000660  61 73 20 61 20 70 61 75  73 65 2c 20 62 75 74 20  |as a pause, but |
00000670  69 74 20 64 6f 65 73 20  73 74 6f 70 20 74 68 65  |it does stop the|
00000680  20 73 63 72 6f 6c 6c 69  6e 67 20 0a 61 6e 64 20  | scrolling .and |
00000690  63 61 75 73 65 20 74 68  65 20 6d 6f 64 75 6c 65  |cause the module|
000006a0  20 74 6f 20 72 65 6c 65  61 73 65 20 61 6c 6c 20  | to release all |
000006b0  6f 66 20 74 68 65 20 76  65 63 74 6f 72 73 20 69  |of the vectors i|
000006c0  74 20 68 61 73 20 0a 63  6c 61 69 6d 65 64 2e 20  |t has .claimed. |
000006d0  59 6f 75 20 73 68 6f 75  6c 64 20 75 73 65 20 74  |You should use t|
000006e0  68 69 73 20 62 65 66 6f  72 65 20 2a 53 63 72 6f  |his before *Scro|
000006f0  6c 6c 46 69 6c 65 20 3c  66 69 6c 65 6e 61 6d 65  |llFile <filename|
00000700  3e 2e 20 54 68 65 20 0a  73 63 72 6f 6c 6c 74 65  |>. The .scrollte|
00000710  78 74 20 63 61 6e 20 62  65 20 72 65 73 74 61 72  |xt can be restar|
00000720  74 65 64 20 62 79 20 2a  53 63 72 6f 6c 6c 4f 6e  |ted by *ScrollOn|
00000730  20 6f 72 20 2a 53 63 72  6f 6c 6c 47 6f 20 2d 20  | or *ScrollGo - |
00000740  74 68 6f 75 67 68 20 69  66 20 0a 79 6f 75 20 63  |though if .you c|
00000750  6c 65 61 72 20 74 68 65  20 73 63 72 65 65 6e 20  |lear the screen |
00000760  62 65 66 6f 72 65 20 72  65 73 74 61 72 74 69 6e  |before restartin|
00000770  67 20 79 6f 75 20 6d 61  79 20 6f 6e 6c 79 20 67  |g you may only g|
00000780  65 74 20 68 61 6c 66 20  6f 66 20 0a 74 68 65 20  |et half of .the |
00000790  66 69 72 73 74 20 63 68  61 72 61 63 74 65 72 2e  |first character.|
000007a0  20 50 6c 65 61 73 65 20  6e 6f 74 65 20 74 68 61  | Please note tha|
000007b0  74 20 2a 53 63 72 6f 6c  6c 4f 66 66 20 69 73 20  |t *ScrollOff is |
000007c0  63 6f 6d 70 6c 65 74 65  6c 79 20 0a 73 65 70 61  |completely .sepa|
000007d0  72 61 74 65 20 66 72 6f  6d 20 74 68 65 20 70 61  |rate from the pa|
000007e0  75 73 65 20 63 6f 64 65  20 65 6d 62 65 64 64 65  |use code embedde|
000007f0  64 20 69 6e 20 74 68 65  20 64 61 74 61 66 69 6c  |d in the datafil|
00000800  65 20 2d 20 74 68 61 74  20 0a 63 61 75 73 65 73  |e - that .causes|
00000810  20 61 20 31 20 73 65 63  6f 6e 64 20 63 6f 75 6e  | a 1 second coun|
00000820  74 64 6f 77 6e 20 6f 6e  6c 79 2e 0a 0a 45 72 72  |tdown only...Err|
00000830  6f 72 20 52 65 71 75 65  73 74 73 0a 7e 7e 7e 7e  |or Requests.~~~~|
00000840  7e 7e 7e 7e 7e 7e 7e 7e  7e 7e 0a 20 20 20 20 20  |~~~~~~~~~~.     |
00000850  20 20 20 20 20 57 68 65  6e 20 61 6e 20 22 78 22  |     When an "x"|
00000860  20 69 73 20 66 6f 75 6e  64 20 65 6d 62 65 64 64  | is found embedd|
00000870  65 64 20 69 6e 20 74 68  65 20 64 61 74 61 66 69  |ed in the datafi|
00000880  6c 65 2c 20 61 20 66 6c  61 67 20 0a 69 6e 20 74  |le, a flag .in t|
00000890  68 65 20 73 63 72 6f 6c  6c 74 65 78 74 20 6d 6f  |he scrolltext mo|
000008a0  64 75 6c 65 20 69 73 20  73 65 74 2e 20 49 66 2c  |dule is set. If,|
000008b0  20 61 66 74 65 72 20 61  6e 20 65 72 72 6f 72 20  | after an error |
000008c0  72 65 71 75 65 73 74 20  69 73 20 0a 63 61 75 73  |request is .caus|
000008d0  65 64 2c 20 79 6f 75 20  69 73 73 75 65 20 61 20  |ed, you issue a |
000008e0  2a 53 63 72 6f 6c 6c 43  68 65 63 6b 20 63 6f 6d  |*ScrollCheck com|
000008f0  6d 61 6e 64 2c 20 61 20  22 53 63 72 6f 6c 6c 74  |mand, a "Scrollt|
00000900  65 78 74 20 74 6f 20 55  73 65 72 20 0a 4d 65 73  |ext to User .Mes|
00000910  73 61 67 65 22 20 65 72  72 6f 72 20 28 54 79 70  |sage" error (Typ|
00000920  65 20 26 46 44 29 20 77  69 6c 6c 20 62 65 20 67  |e &FD) will be g|
00000930  65 6e 65 72 61 74 65 64  2e 20 49 66 20 79 6f 75  |enerated. If you|
00000940  20 77 61 6e 27 74 20 65  66 66 65 63 74 73 20 0a  | wan't effects .|
00000950  77 69 74 68 20 74 68 65  20 73 63 72 6f 6c 6c 74  |with the scrollt|
00000960  65 78 74 20 74 68 65 6e  20 79 6f 75 20 6d 75 73  |ext then you mus|
00000970  74 20 72 65 70 65 61 74  65 64 6c 79 20 69 73 73  |t repeatedly iss|
00000980  75 65 20 74 68 65 20 0a  2a 53 63 72 6f 6c 6c 43  |ue the .*ScrollC|
00000990  68 65 63 6b 20 63 6f 6d  6d 61 6e 64 20 61 6e 64  |heck command and|
000009a0  20 74 72 61 70 20 74 68  65 20 6d 65 73 73 61 67  | trap the messag|
000009b0  65 20 65 72 72 6f 72 20  28 61 6e 20 65 78 61 6d  |e error (an exam|
000009c0  70 6c 65 20 6f 66 20 0a  74 68 69 73 20 69 73 20  |ple of .this is |
000009d0  74 68 65 20 21 52 75 6e  49 6d 61 67 65 20 66 69  |the !RunImage fi|
000009e0  6c 65 20 69 6e 20 74 68  65 20 21 53 63 72 6f 6c  |le in the !Scrol|
000009f0  6c 54 78 74 20 64 69 72  65 63 74 6f 72 79 29 2e  |lTxt directory).|
00000a00  20 4f 6e 63 65 20 0a 2a  53 63 72 6f 6c 6c 43 68  | Once .*ScrollCh|
00000a10  65 63 6b 20 69 73 20 69  73 73 75 65 64 2c 20 74  |eck is issued, t|
00000a20  68 65 20 65 72 72 6f 72  20 72 65 71 75 65 73 74  |he error request|
00000a30  20 66 6c 61 67 20 69 73  20 63 6c 65 61 72 65 64  | flag is cleared|
00000a40  20 75 6e 74 69 6c 20 0a  74 68 65 20 6e 65 78 74  | until .the next|
00000a50  20 65 72 72 6f 72 20 72  65 71 75 65 73 74 2e 20  | error request. |
00000a60  49 66 20 74 68 65 20 65  72 72 6f 72 20 72 65 71  |If the error req|
00000a70  75 65 73 74 20 66 6c 61  67 20 69 73 20 61 6c 72  |uest flag is alr|
00000a80  65 61 64 79 20 0a 63 6c  65 61 72 20 77 68 65 6e  |eady .clear when|
00000a90  20 79 6f 75 20 69 73 73  75 65 20 2a 53 63 72 6f  | you issue *Scro|
00000aa0  6c 6c 43 68 65 63 6b 20  74 68 65 6e 20 6e 6f 20  |llCheck then no |
00000ab0  65 72 72 6f 72 20 69 73  20 67 65 6e 65 72 61 74  |error is generat|
00000ac0  65 64 20 61 6e 64 20 0a  63 6f 6e 74 72 6f 6c 20  |ed and .control |
00000ad0  69 73 20 72 65 74 75 72  6e 65 64 20 74 6f 20 79  |is returned to y|
00000ae0  6f 75 72 20 42 41 53 49  43 20 70 72 6f 67 72 61  |our BASIC progra|
00000af0  6d 2e 0a 0a 45 72 72 6f  72 20 4d 65 73 73 61 67  |m...Error Messag|
00000b00  65 73 0a 7e 7e 7e 7e 7e  7e 7e 7e 7e 7e 7e 7e 7e  |es.~~~~~~~~~~~~~|
00000b10  7e 0a 20 20 20 20 20 20  20 20 20 20 54 68 65 72  |~.          Ther|
00000b20  65 20 61 72 65 20 61 20  66 65 77 20 65 72 72 6f  |e are a few erro|
00000b30  72 73 20 74 68 61 74 20  74 68 65 20 73 63 72 6f  |rs that the scro|
00000b40  6c 6c 74 65 78 74 20 6d  6f 64 75 6c 65 20 63 61  |lltext module ca|
00000b50  6e 20 0a 67 65 6e 65 72  61 74 65 2e 0a 20 20 20  |n .generate..   |
00000b60  20 20 20 20 20 20 20 49  66 20 79 6f 75 20 74 72  |       If you tr|
00000b70  79 20 2a 53 63 72 6f 6c  6c 4f 6e 20 62 65 66 6f  |y *ScrollOn befo|
00000b80  72 65 20 79 6f 75 20 6c  6f 61 64 20 61 20 0a 64  |re you load a .d|
00000b90  61 74 61 66 69 6c 65 2c  20 74 68 65 6e 20 61 20  |atafile, then a |
00000ba0  22 4e 6f 20 53 63 72 6f  6c 6c 74 65 78 74 20 64  |"No Scrolltext d|
00000bb0  61 74 61 22 20 65 72 72  6f 72 20 77 69 6c 6c 20  |ata" error will |
00000bc0  62 65 20 67 69 76 65 6e  2e 0a 20 20 20 20 20 20  |be given..      |
00000bd0  20 20 20 20 49 66 20 79  6f 75 20 74 72 79 20 74  |    If you try t|
00000be0  6f 20 2a 53 63 72 6f 6c  6c 46 69 6c 65 20 61 66  |o *ScrollFile af|
00000bf0  74 65 72 20 61 20 2a 53  63 72 6f 6c 6c 4f 6e 20  |ter a *ScrollOn |
00000c00  63 6f 6d 6d 61 6e 64 20  0a 74 68 65 6e 20 61 20  |command .then a |
00000c10  22 42 61 64 20 43 68 61  6e 67 65 6f 76 65 72 22  |"Bad Changeover"|
00000c20  20 65 72 72 6f 72 20 77  69 6c 6c 20 62 65 20 67  | error will be g|
00000c30  65 6e 65 72 61 74 65 64  2e 20 54 6f 20 73 65 6c  |enerated. To sel|
00000c40  65 63 74 20 0a 61 6e 6f  74 68 65 72 20 64 61 74  |ect .another dat|
00000c50  61 66 69 6c 65 20 79 6f  75 20 6d 75 73 74 20 2a  |afile you must *|
00000c60  53 63 72 6f 6c 6c 4f 66  66 20 66 69 72 73 74 2e  |ScrollOff first.|
00000c70  0a 20 20 20 20 20 20 20  20 20 20 22 53 63 72 6f  |.          "Scro|
00000c80  6c 6c 74 65 78 74 20 74  6f 20 55 73 65 72 20 4d  |lltext to User M|
00000c90  65 73 73 61 67 65 22 20  69 73 20 64 65 73 63 72  |essage" is descr|
00000ca0  69 62 65 64 20 61 62 6f  76 65 2e 0a 0a 0a 43 72  |ibed above....Cr|
00000cb0  65 64 69 74 73 0a 7e 7e  7e 7e 7e 7e 7e 0a 20 20  |edits.~~~~~~~.  |
00000cc0  20 20 20 20 20 20 20 20  41 6c 6c 20 70 72 6f 67  |        All prog|
00000cd0  72 61 6d 6d 69 6e 67 20  6f 66 20 74 68 69 73 20  |ramming of this |
00000ce0  6d 6f 64 75 6c 65 20 77  61 73 20 64 6f 6e 65 20  |module was done |
00000cf0  62 79 20 48 2e 54 2e 57  69 6c 6b 69 6e 73 20 0a  |by H.T.Wilkins .|
00000d00  28 41 6c 73 6f 20 6b 6e  6f 77 6e 20 61 73 20 42  |(Also known as B|
00000d10  61 74 6d 61 6e 20 66 6f  72 20 76 61 72 69 6f 75  |atman for variou|
00000d20  73 20 72 65 61 73 6f 6e  73 20 77 68 69 63 68 20  |s reasons which |
00000d30  61 72 65 20 74 6f 6f 20  0a 63 6f 6d 70 6c 69 63  |are too .complic|
00000d40  61 74 65 64 20 74 6f 20  6d 65 6e 74 69 6f 6e 20  |ated to mention |
00000d50  68 65 72 65 29 2e 20 20  20 20 20 20 20 20 20 20  |here).          |
00000d60  20 0a 0a 20 20 20 20 20  20 20 20 20 20 54 68 65  | ..          The|
00000d70  20 66 6f 6e 74 20 77 61  73 20 74 61 6b 65 6e 20  | font was taken |
00000d80  66 72 6f 6d 20 41 6c 74  5f 4d 61 6e 27 73 20 44  |from Alt_Man's D|
00000d90  45 4d 4f 30 31 20 61 6e  64 20 77 61 73 20 0a 6f  |EMO01 and was .o|
00000da0  72 69 67 69 6e 61 6c 6c  79 20 64 72 61 77 6e 20  |riginally drawn |
00000db0  62 79 20 4a 6f 75 73 74  20 6f 6e 20 61 6e 20 41  |by Joust on an A|
00000dc0  6d 69 67 61 20 72 75 6e  6e 69 6e 67 20 44 65 6c  |miga running Del|
00000dd0  75 78 65 20 50 61 69 6e  74 20 49 49 2e 0a 0a 20  |uxe Paint II... |
00000de0  20 20 20 20 20 20 20 20  20 43 6f 6e 73 74 61 6e  |         Constan|
00000df0  74 20 61 67 67 72 61 76  61 74 69 6f 6e 20 66 6f  |t aggravation fo|
00000e00  72 20 62 65 74 74 65 72  20 63 6f 64 65 20 62 79  |r better code by|
00000e10  20 53 74 65 76 65 20 43  6f 6f 6b 2e 0a 0a 20 20  | Steve Cook...  |
00000e20  20 20 20 20 20 20 20 20  53 6c 61 67 2d 6f 66 66  |        Slag-off|
00000e30  2d 74 68 65 2d 41 72 63  68 69 6d 65 64 65 73 20  |-the-Archimedes |
00000e40  73 65 73 73 69 6f 6e 73  20 62 79 20 4d 61 72 6b  |sessions by Mark|
00000e50  20 4a 61 63 6b 73 6f 6e  20 61 6e 64 20 0a 50 61  | Jackson and .Pa|
00000e60  75 6c 20 54 72 61 79 6e  69 65 72 20 28 49 20 64  |ul Traynier (I d|
00000e70  6f 6e 27 74 20 6b 6e 6f  77 20 77 68 61 74 20 74  |on't know what t|
00000e80  68 65 79 27 72 65 20 6c  61 75 67 68 69 6e 67 20  |hey're laughing |
00000e90  61 62 6f 75 74 2c 20 74  68 65 79 20 0a 6f 6e 6c  |about, they .onl|
00000ea0  79 20 68 61 76 65 20 61  6e 20 41 6d 69 67 61 20  |y have an Amiga |
00000eb0  61 6e 64 20 61 6e 20 45  70 73 6f 6e 20 70 6f 72  |and an Epson por|
00000ec0  74 61 62 6c 65 20 50 43  21 29 0a 0a 2d 2d 2d 2d  |table PC!)..----|
00000ed0  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
00000f00  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 0a 49 66 20  |------------.If |
00000f10  79 6f 75 20 61 6c 74 65  72 20 74 68 65 20 63 6f  |you alter the co|
00000f20  64 65 20 6f 66 20 74 68  69 73 20 6d 6f 64 75 6c  |de of this modul|
00000f30  65 2c 20 70 6c 65 61 73  65 20 73 65 6e 64 20 6d  |e, please send m|
00000f40  65 20 61 20 63 6f 70 79  20 62 61 63 6b 20 0a 73  |e a copy back .s|
00000f50  6f 20 74 68 61 74 20 49  20 63 61 6e 20 75 70 64  |o that I can upd|
00000f60  61 74 65 20 74 68 65 20  6d 61 73 74 65 72 20 63  |ate the master c|
00000f70  6f 70 79 2e 20 41 6c 73  6f 20 73 65 6e 64 20 61  |opy. Also send a|
00000f80  6e 79 20 69 64 65 61 73  2c 20 62 75 67 20 0a 72  |ny ideas, bug .r|
00000f90  65 70 6f 72 74 73 20 6f  72 20 63 6f 6e 74 72 69  |eports or contri|
00000fa0  62 75 74 69 6f 6e 73 20  74 6f 3a 0a 20 20 20 20  |butions to:.    |
00000fb0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000fc0  20 20 20 20 20 20 20 20  48 2e 54 2e 57 69 6c 6b  |        H.T.Wilk|
00000fd0  69 6e 73 0a 20 20 20 20  20 20 20 20 20 20 20 20  |ins.            |
00000fe0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000ff0  54 68 65 20 50 6f 73 74  65 72 6e 0a 20 20 20 20  |The Postern.    |
00001000  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001010  20 20 20 20 20 20 20 20  43 68 69 67 6e 61 6c 20  |        Chignal |
00001020  53 6d 65 61 6c 65 79 0a  20 20 20 20 20 20 20 20  |Smealey.        |
00001030  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001040  20 20 20 20 43 68 65 6c  6d 73 66 6f 72 64 0a 20  |    Chelmsford. |
00001050  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001060  20 20 20 20 20 20 20 20  20 20 20 45 73 73 65 78  |           Essex|
00001070  0a 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |.               |
00001080  20 20 20 20 20 20 20 20  20 20 20 20 20 43 4d 31  |             CM1|
00001090  20 34 53 55 0a 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  | 4SU.-----------|
000010a0  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
000010d0  2d 2d 2d 2d 2d 0a 0a 54  68 69 73 20 4d 6f 64 75  |-----..This Modu|
000010e0  6c 65 20 69 73 20 50 2e  44 2e 20 61 6e 64 20 6d  |le is P.D. and m|
000010f0  61 79 20 62 65 20 64 69  73 74 72 69 62 75 74 65  |ay be distribute|
00001100  64 20 66 72 65 65 6c 79  20 70 72 6f 76 69 64 69  |d freely providi|
00001110  6e 67 20 74 68 61 74 20  0a 69 74 20 69 73 20 75  |ng that .it is u|
00001120  6e 61 6c 74 65 72 65 64  20 61 6e 64 20 69 73 20  |naltered and is |
00001130  6e 6f 74 20 73 6f 6c 64  20 66 6f 72 20 70 72 6f  |not sold for pro|
00001140  66 69 74 2e 0a                                    |fit..|
00001145