Im trying to work on designing a star wars fan project, a game/application that would make goal setting into a game.
I dont understand fully in my head yet how its all going to work, I have some ideas so far but thats it.
Anyways, when the program first starts, Im trying to load a title screen image. And that part works somewhat, except for the image flashing.
But when you left click, and the next image is supposed to load, it seems like the 2 images kinda merge, and there also flashing.
I want the flashing to stop, and the 2 images to be seperate. Like the one image loads, then a different one loads.
Can anyone help me with this? Thanks
LOAD IMAGE "C:\swgs graphics\titleimg.bmp",1
PASTE IMAGE 1,150,-15
LOAD MUSIC "C:\swgs graphics\into the trap.mp3",1
PLAY MUSIC 1
WAIT MOUSE
IF MOUSECLICK()=1
LOAD IMAGE "C:\swgs graphics\newcontinue.bmp",2
PASTE IMAGE 2,150,0
ELSE
WAIT MOUSE
ENDIF
WAIT KEY