Can I change enter screen picture(Default.png) second?

You must Login before you can answer or comment on any questions.

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.

— answered 11 months ago by Anthony Decena
answer permalink
3 Comments
  • Can I cancel the Default.png show on the screen?

    — commented 11 months ago by Chang YuanYu

  • What would you show while your app loads?

    — commented 11 months ago by Anthony Decena

  • I just ask this question. So the default.png show is the app loading picture. It's can't cancel. thank you.

    — commented 11 months ago by Chang YuanYu

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.

— answered 11 months ago by David Bankier
answer permalink
2 Comments
  • Can I cancel the Default.png show on the screen?

    — commented 11 months ago by Chang YuanYu

  • If you want to do that then open another window over it - Anthony's approach.

    — commented 11 months ago by David Bankier

Your Answer

Think you can help? Login to answer this question!