var w=Alloy.createController('win2').getView(); w.open(); } $.index.open(); VIEWS/WIN2.XML STYLES/WIN2.TSS "#container":{ backgroundColor: "#000" }, "#thelabel":{ height: Ti.UI.SIZE, width: Ti.UI.SIZE, color: "#fff" } <Alloy> <Window id="container"> <Label id="thelabel" onClick="closeme">I'm Window 2</Label> </Window> </Alloy> CONTROLLERS/WIN2.JS function closeme(){ $.container.close(); } At this point, w is a Titanium Window Object Example 1