Your example is works for me. 23.04.2015 13:54, Fedor Zaitsev пишет: > > MouseArea { > anchors.fill: parent > onClicked: anim.start() > } > > PropertyAnimation { > id: anim > target: rect > property: "color" > to: "green" > duration: 2000 > running: false > } > > Timer { > id: timer > repeat: true > running: true > }