Hello! - I play a little bit around with dark basic pro and would make a splashscreen but he will not shown at this code ...:
` show the splashscreen loop before gamestart loop
splashscreen:
do
` initalize sprite 4 (splashscreen image)
CLS
sprite 4, splashxpos, splashypos, 4
` trouble == the splashscreen will not shown
show sprite 4
` if space key pressed the splashscreen will be hidden
if spacekey() = 1 then hide sprite 4:gosub gameloop
` if the spacekey is hit this loop is over and the game starts
loop
Hope anybody can help ...
Bye