Skip to main content
Participant
December 1, 2011
Question

FlipViewTransition in Sdk 4.6

  • December 1, 2011
  • 1 reply
  • 13868 views

I'm getting this warning with the new SDK (and I can't find documentation about that!):

'FlipViewTransition' has been deprecated since 4.6

                                                var flipTrans:FlipViewTransition = new FlipViewTransition();

                                        flipTrans.direction = ViewTransitionDirection.RIGHT;

                                        flipTrans.mode = FlipViewTransitionMode.CUBE;

 

                                        navigator.pushView(DettagliView, data,null,flipTrans);

    This topic has been closed for replies.

    1 reply

    Participant
    December 2, 2011

    I move to a simple slide transition because I can't find a solution to maintain Cube transition. Anyone have an idea? Thanks

    var flipTrans:SlideViewTransition = new SlideViewTransition();

                                            flipTrans.direction = ViewTransitionDirection.RIGHT;

    Adobe Employee
    December 2, 2011

    FlipViewTransition is still there and works, but it is deprecated.

    Known Participant
    December 9, 2011

    Any actual response as to:

    - why it was deprecated?

    - what we should use instead?