Titanium Community Questions & Answer Archive

We felt that 6+ years of knowledge should not die so this is the Titanium Community Questions & Answer Archive

Transition not working

In my app, I have it loading a window, and from there, in one of the buttons in the event listener I have it create the window, and am trying to get a transition to work. No matter what I do though, all it does is slide from right to left.

This is on iPhone

AddSavedButtoniPhone.addEventListener('click',function(e)
 { 

     var w = Titanium.UI.createWindow({



        title:'Add Location',
        backgroundColor:'#000000',
        opacity:1,
        barColor:'#000000',
        url:'addlocation.js'
    });

    Titanium.UI.currentTab.open(w,{animated:true,transition:Ti.UI.iPhone.AnimationStyle.CURL_UP});


});
— asked November 8th 2010 by Josh Lewis
  • iphone
  • transition
1 Comment
  • what release are you using? "Titanium.UI.currentTab"

    — commented November 9th 2010 by Aaron Saunders

1 Answer

  • I'm using 1.4

    — answered November 9th 2010 by Josh Lewis
    permalink
    0 Comments
The ownership of individual contributions to this community generated content is retained by the authors of their contributions.
All trademarks remain the property of the respective owner.