I have a NumberAnimation where the target is a dynamic qml Item object, created with Qt.createComponent().
The code works fine but I always get a error in QtCreator Aplication Output window, I don't know how to remove that annoying error.
property var badJoeObj: ({})
NumberAnimation {
id: moveBadJoeToAnotherScreen
duration: 1000
}
function moveBadJoe2AnotherScreen(){
moveBadJoeToAnotherScreen.target = badJoeObj // <- Error: Cannot assign QJSValue to QObject*
...
}
property var badJoeObj: ({})
NumberAnimation {
id: moveBadJoeToAnotherScreen
duration: 1000
}
function moveBadJoe2AnotherScreen(){
moveBadJoeToAnotherScreen.target = badJoeObj // <- Error: Cannot assign QJSValue to QObject*
...
}
To copy to clipboard, switch view to plain text mode
Bookmarks