Different transitions on the animation pages

hi i want to know, is it possible to set different transitions on the animation pages or it is the same for all?

This feature is scheduled for next version. Currently you can do this by using scripts.

  1. Add an any widget.

  2. Press the Edit button in the User Script section and paste the code:

    import QtQuick 2.0
    import CMagazineStyle 1.0

    Item {
    property bool active: page.isActive
    onActiveChanged: {
    if (active) {
    magazineStyle.setPageChangerType(2)
    }
    }
    }

Change magazineStyle.setPageChangerType( number ) from 0 to 6.

See example project transitions.pma in the attachment.


Back to Flipabit >
Copyright © 2018. Flipabit Team. All rights reserved.