Advertisement
Slyke

Untitled

Sep 30th, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function loadLastScreen()
  2. {
  3.     lastOpenScreenObj=Ti.App.Properties.getString("lastWindow", "home");
  4.  
  5.     if (lastOpenScreenObj=="home") {
  6.         scrHomepage.open();
  7.     } else if (lastOpenScreenObj=="anotherscreen") {
  8.         scrPlaying.open();
  9.     } else {
  10.         scrDefault.open();
  11.     }
  12. }
  13.  
  14. loadLastScreen();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement