How to implement multiple actions on onClicked [SOLVED]
-
I want to implement multiple actions at once. For instance, we have the following snippet:
MouseArea { onClicked: textField.text = "test" }
I want the following functionality:
MouseArea { onClicked { textField.text = "test" myImage.source = "http//....." } }
Is it possible?
-
Hi,
I can't try now but I think is possible.
You can execute any kind of Javascript code in a slot