Posted: 10th Nov 2011 7:06
why this happen? how to get rid of the white screen?
Posted: 10th Nov 2011 13:04
It happens to me sometimes, but not all the time. I still can't spot the problem.
Posted: 12th Nov 2011 0:32
The trick is that when the loading page ends, you are launched instantly into the code of your app. If you then decide to start loading lots of media in taking many seconds, then you get a noticable empty screen. The trick is to add a load and render instruction at the very start of your code so you have something nice to look at while your media is loaded for your app. Something like:

CreateSprite ( 1, LoadImage ( "loading2.png" ) ) : Sync()

Just drop in a loading2.png image file into your media folder and where you would normally see a white screen you now see a nice piccy.
Posted: 12th Nov 2011 4:33
wow, it's a good trick. Thank you very much.