uh...now it appears to work...
a question...what about if I want to display that image on a background? I would use this code, but it doesn't work.
That's because now I'd like to know how to display multiple images at the same time.
By the way, guys, dont buy the book "beginners guide to dark basic programming" as you can see from my posts all the coding is mess up.
SET DISPLAY MODE 640, 480, 32
HIDE MOUSE
SYNC ON
load bitmap "background.bmp",0
LOAD BITMAP "F15.bmp", 1
set current bitmap 1
GET IMAGE 1,0,0,300,300
set current bitmap 0
do
SPRITE 1,170,90,1
SYNC
loop
WAIT KEY
END