Previously, my items self-animated a single animation.

Text { ... NumberAnimation on x { } }

Now I wish to do:

Text { 
    ... 
    SequentialAnimation { 
        PauseAnimation {duration: 300 }  
        NumberAnimation  { target: ...; property: ..; ...}  
    } 
}

However I can't seem to "kick" the animation off. Before the NumberAnimation 
started immediately. How can I get the sequential Animation to start?

Thanks!


      

_______________________________________________
Qt-qml mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-qml

Reply via email to