It's not working... I still get a black screen. Here is some of my code. I have the image loaded in media.
rem set font
set text font "arial" : set text size 16
Rem Set BG color
load image "Title.jpg", 1
paste image 1, 0, 0
rem cls rgb(255, 255, 255) rem this is setting the BG white
Rem main menu
ink rgb(0, 0, 0),0
Do
if Button(20,55,"Earth Game")=1 then Gosub Earth
if Button(20,85,"1st Alternate Map")=1 then Gosub Alt1
If Button(20,115,"2nd Alternate Map")=1 then Gosub Alt2
If Button(20,145,"Exit")=1 then End
loop
Earth:
Do
cls rgb(255, 255, 255)
Text 240,220,"Earth Map Here";
wait 2000
Loop
Return
Alt1:
Do
cls rgb(255, 255, 255)
Text 240,220,"1st Alternate Map Here";
wait 2000
Loop
Return
Alt2:
Do
cls rgb(255, 255, 255)
Text 240,220,"2nd Alternate Map Here";
wait 2000
Loop
Return
Rem Functions
function Button(x1,y1,title$)
Don't follow in my footsteps... I often walk into walls