Ti.include( 'includes/tiframework.js' ); var $ = TiFramework; var main_window = $('currentWin'); main_window.focus(function() { // Create the label var label = $('label') // Set some options .setOpts({text: 'New Label', color: '#999', height: 50, top: 10}) // Slide in the label .slideIn() // Append it to the window .appendTo(main_window) // Add a click event listener .click(function() { // Slide the label out. When finished create a new window and load in // new file and navigate label.slideOut({duration: 1000}, function(){ var newWindow = $('window').setOpts({title: 'Test', url: 'animations.js'}); Ti.UI.currentTab.open(newWindow.context, { animated:true }); }); }); });