Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function loadLastScreen()
- {
- lastOpenScreenObj=Ti.App.Properties.getString("lastWindow", "home");
- if (lastOpenScreenObj=="home") {
- scrHomepage.open();
- } else if (lastOpenScreenObj=="anotherscreen") {
- scrPlaying.open();
- } else {
- scrDefault.open();
- }
- }
- loadLastScreen();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement