Hi,
I've found PeeJay's tutorials (and his website) which are just what I'm after but I'm stuck on Lesson 1 (!!!) Not a good start, I know!!
// --------------------------------- //
// Project: Lesson One
// Start: Friday, February 01, 2008
// IDE Version: 5.154
// --------------------------------- //
SETSCREEN 640,480,1
LIMITFPS 60
SETTRANSPARENCY RGB(0,0,0)
LOADSPRITE "l:\player.bmp",0
GLOBAL px=300
GLOBAL py=220
WHILE KEY(01)=FALSE
DrawTheScreen()
WEND
END
FUNCTION DrawTheScreen:
DRAWSPRITE 0,px,py
SHOWSCREEN
ENDFUNCTION
This code should simply display the graphic of the man in the centre of the screen. Note I've moved the graphic (player.bmp) into the root of my L drive so it should be pointing at the correct place but I'm getting a blank full screen.
Any help would be appreciated.
Thanks,
Steve.