Graphic doesn't seem to work
BlitzPlus Forums/BlitzPlus Beginners Area/Graphic doesn't seem to work
| ||
| Include "CCfunc.bb" Include "CCSelect.bb" ;GetStr is Good Bitmap$="StarMap3.bmp" Graphics 1024,768,16,1 SetBuffer FrontBuffer() Viewport 0,0,1024,768 Dayt$=CurrentDate$() Logo = LoadAnimImage("StarMap3.bmp",1024,768,0,1) DrawImage Logo,0,0 My problem is: it Puts the Bitmap on the screen but when the Menu comes on the screen it comes on 1/2 screen. If I set it for full screen and run it the cursor disappears. How can I make it display the BMP full screen and then the menu full screen and have the curor displayed? Input$("Press Ket to continue") Graphics 1024, 768, 16, 0 AppTitle " Check Chum Command Center Today's Date: "+Date$(1) |
| ||
Try this:
Include "CCfunc.bb"
Include "CCSelect.bb" ;GetStr is Good
Bitmap$="StarMap3.bmp"
Graphics 1024,768,16,1
SetBuffer BackBuffer()
Dayt$=CurrentDate$()
Logo = LoadAnimImage("StarMap3.bmp",1024,768,0,1)
DrawImage Logo,0,0
Text 100,100,"Press key to continue"
Flip
Waitkey
EndGraphics()
Graphics 1024, 768, 16, 0
AppTitle " Check Chum Command Center Today's Date: "+Date$(1)
FlushKeys()
Waitkey
|
| ||
| Thanks I will!! |