Hi,
I have the following code snippet in QML, but i doubt statements inside
Repeater element is not executed. Is there any way through which i can
debug these, i know that there is a log property present for Repeater
element but i am not sure how to use these.
import QtQuick 1.1
Item {
id: screen
width: 1024
height: 600
/*Loading Screen*/
Interactive {id: interactive}
Loading {id: loading;}
/*Application Components*/
Pif {id: pif}
Config {id: config}
Media {id: media}
Repeater {
model: config.launchers
delegate: Loader {
id:loader
anchors.fill: parent
source: file
onStatusChanged: {
if (loader.status == Loader.ready)
{
loading.opacity = 0
loading.visible = false
}
}
}
}
Fullscreen {id: fullscreen}
}
Thanks & Regards,
Kalpesh Jain.
_______________________________________________
Qt-qml mailing list
[email protected]
http://lists.qt.nokia.com/mailman/listinfo/qt-qml