How do you put Image on the Screen?
Posted: Thu Mar 27, 2014 9:34 pm
Hello Everyone
I just bought purebasic and got SpiderBasic demo
I have try out to put image on the screen but it doesnt show it up
Am I missing somethings?
I just bought purebasic and got SpiderBasic demo
I have try out to put image on the screen but it doesnt show it up

Code: Select all
#ScreenWidth = 1024
#ScreenHeight = 768
OpenScreen(#ScreenWidth, #ScreenHeight, 32, "Putting Sprites on screen")
LoadSprite(1, "HOTTIE.png")
DisplaySprite(1,10,10)
FlipBuffers()