Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeanimations / data / dontStart2.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     id: wrapper
5     width: 600
6     height: 400
7
8     Rectangle {
9         id: redRect
10         width: 100; height: 100
11         color: Qt.rgba(1,0,0)
12
13         transitions: Transition {
14             SequentialAnimation {
15                 NumberAnimation { id: myAnim; objectName: "MyAnim"; running: true }
16             }
17         }
18     }
19 }