Hi all,
I have a simple test app:
When I run this app on my N950 using Qt Creator (under developer account), this app works just fine - there is a video on the screen, when I press on it, it plays. So far so good. But when I try to run this app by pressing on N950 desktop icon, all I get is a black screen with no video. Tapping on MouseArea doesn't perform anything, still no video. I tried to run this app from user account via ssh (using devel-su user) to debug this strange behaviour, but no luck - if I run this app over ssh, it works just like as using Qt Creator. What should I do to be able to properly run this app by pressing on the desktop icon, or at least to get more information about problem (for example, grab some application output)?Code:import QtQuick 1.1 import QtMultimediaKit 1.1 import com.nokia.meego 1.0 Window { id: mainWindow Rectangle { id: backgroundRectangle anchors.fill: parent color: "black" MouseArea { id: mouseArea anchors.fill: parent Video { id: video anchors.fill: parent source: "../video/look_around.mp4" fillMode: Video.PreserveAspectFit } onClicked: { video.play(); } } } }
Thanks in advance.

Reply With Quote
ulse-access" />

