copy and paste this to DBP editor;
SET DISPLAY MODE 800,600,32
SYNC ON : SYNC RATE 60 : SYNC
BACKDROP OFF : HIDE MOUSE
time=TIMER() `store the time
DO
GOSUB start_screen
tick = (TIMER()-time)/1000
IF tick = 1 `show a one sec black screen/if you want you can remove this
PASTE IMAGE 1,0,0 `then paste the image
ENDIF
IF tick = 10 `right after 10 sec exit the programe
DELETE IMAGE 1 `delet the image 1, so that you can come back again
EXIT `exit the programe
ENDIF
IF KEYSTATE(16)=1 `if you press 'Q' key before 10 sec the programe will exit
DELETE IMAGE 1 `to come back
EXIT `exit the programe
ENDIF
SYNC
LOOP
END
start_screen:
LOAD IMAGE "intro.jpg",1,1 `change it with your own image file
RETURN
And learn TDK's tutorial. That will help you to get what you want more than this code.
Regards
Your Signature Here;