Hello,
I´m trying to make a transition on windows with map objects
when open the new window with transition code:
FARM.win2.open({transition:Ti.UI.iPhone.AnimationStyle.FLIP_FROM_RIGHT});
I can see a black screen when the window (win2) is closed. Can´t see my MAP object (that I could see before the open event)
If I dont use this transition in the open event then it works fine. But I need that transition.
I close win2 with this code:
FARM.win2.close({transition:Ti.UI.iPhone.AnimationStyle.FLIP_FROM_LEFT});
Somebody can help me?
1 Answer
It´s works
On the close event:
FARM.win2.close({transition:Ti.UI.iPhone.AnimationStyle.FLIP_FROM_LEFT}); FARM.win.show();On the open event:
FARM.win2.open({transition:Ti.UI.iPhone.AnimationStyle.FLIP_FROM_RIGHT}); FARM.win.hide();
Your Answer
Think you can help? Login to answer this question!