home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Super Platinum 8
/
Shareware Super Platinum 8.iso
/
mac
/
PROGTOOL
/
FGL304D.ZIP;1
/
EXBAS.ARJ
/
FGDOC
/
EXAMPLES
/
BASIC
/
13-04.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1994-01-24
|
349 b
|
27 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
OldMode = FGgetmode
FGsetmode 3
FGcursor 0
FGsetcolor 7
FGrect 0, 79, 0, 24
FGsetattr 10, 7, 0
FGtext "line one", 8
FGlocate 1, 0
FGtext "line two", 8
FGwaitkey
FGsetcolor 7
FGscroll 0, 7, 1, 1, 1, 1
FGwaitkey
FGscroll 0, 7, 2, 2, -1, 1
FGwaitkey
FGsetmode OldMode
FGreset
END