How to create window using Titanium?
deepak - Mon Jan 30 2012 20:23:05 GMT-0500 (EST)
Window Creation
var win1 = Titanium.UI.createWindow({
title:'Tab 1',
backgroundColor:'#fff'
});
deepak - Mon Jan 30 2012 22:28:42 GMT-0500 (EST)
Adding background image to the window
var win1 = Titanium.UI.createWindow({
title:'Tab 1',
backgroundImage:'\background_splash.png'
});
deepak - Mon Jan 30 2012 22:35:22 GMT-0500 (EST)
Window Attributes Titanium Reference