How to change font.pointSize with animation?
Solved
QML and Qt Quick
-
@Mayron https://doc.qt.io/qt-5/qml-qtquick-animation.html maybe?
Text { id: time x: 765 y: 15 color: "#fff" font.pointSize: 25 NumberAnimation on font.pointSize { running: myMouse.pressed from: 8; to: 25 } visible:true }
You would need to change running: part.