home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource Library: Graphics
/
graphics-16000.iso
/
msdos
/
animutil
/
fastgfx
/
fg303d
/
exbas.arj
/
FGDOC
/
EXAMPLES
/
BASIC
/
07-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
|
1993-09-30
|
279 b
|
21 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
OldMode = FGgetmode
FGsetmode 3
FGcursor 0
FGsetattr 9, 7, 0
FGlocate 24, 0
FGtext "Test", 4
Value = FGgetchar(24,0)
Attr = FGgetattr(24,0)
FGwaitkey
FGsetmode OldMode
FGreset
PRINT CHR$(Value)+" "+HEX$(Attr)
END