home *** CD-ROM | disk | FTP | other *** search
AMOS Source Code | 1978-08-29 | 634 b | 26 lines |
- ' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ' AMOS Font Demo
- '
- ' By P.J.Hickman
- '
- ' Run the demo and press a key to cycle through fonts contained
- ' on this disc.
- ' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Screen Open 0,320,200,2,Lowres
- Palette $0,$FFF : Curs Off : Hide On : Cls 0
- MESSAGE$="An Example Font"
- Get Disc Fonts
- Ink 1
- COUNT=1
- Do
- F$=Font$(COUNT)
- If F$="" Then Exit
- Set Font COUNT
- T=Text Length(MESSAGE$)
- X=(320-T)/2
- Text X,110,MESSAGE$
- Centre At(,21)+F$
- Inc COUNT
- Wait Key
- Cls 0
- Loop