Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. appWindow.addEventListener(Ti.XXX, function(event) {
  2.  
  3. appWindow.show();
  4.  
  5. });
  6.  
  7. tray = Ti.UI.addTray("icon.jpg", function(evt){
  8. if(appWindow.isVisible() == true){
  9. appWindow.hide();
  10. } else {
  11. appWindow.show();
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement