Within my tab group, there are 5 tabs including the "Home" screen. I want to allow users to easily navigate back to the home screen by clicking a button within any tab's window.
The current approach I've tried involves creating a new window every time, which disrupts the navigation flow.
var win_home = Titanium.UI.createWindow({
url:'home.js'
});
btn_home.addEventListener("click", function() {
Ti.UI.currentTab.open(win_home,{animated:true});
});