Then you will reach nirvana when you try QML :P Example: Code: Label { text: myImage.status != Image.Error ? "Loading..." : "Error :(" visible: myImage.status != Image.Ready } Image { id: myImage // See? No quotes! A new language construct! source: "http://example.com/image.png" }
Label { text: myImage.status != Image.Error ? "Loading..." : "Error :(" visible: myImage.status != Image.Ready } Image { id: myImage // See? No quotes! A new language construct! source: "http://example.com/image.png" }