When I run app with Titanium 2.1.1.2012, the enter screen picture(Default.png) is show a little second. Can I change this time bigger or smaller second? thank you very much.
2 Answers
Accepted Answer
You can set the background of you first window to the same image as your Default.png .. this way, when your app loads, you can leave the splash screen up for as long as you want.
An alternative solution to Anthony's is to use a timeout delaying opening the first window. E.g.
setTimeout(function () { win.open(); }, 4000);Where 4000 means 4 seconds.
Your Answer
Think you can help? Login to answer this question!