[Solved] .mp3 with Qt
QML and Qt Quick
19
Posts
4
Posters
11.0k
Views
1
Watching
-
Make sure your relative path is relative to "QDir::current()":http://doc.qt.nokia.com/4.7/qdir.html#current is. If it isn't you can always use
@QDir(QCoreApplication::applicationDirPath ()).absoulteFilePath("/path/")@ -
i have this snippet:
@ QString s = QDir::current().absolutePath().append("/qml/fileTrenner2/compleanno.mp3");
QUrl mp3Url = QUrl::fromLocalFile(s);
QDesktopServices::openUrl(mp3Url); @
i want that the new window opens itself in minimized mode...or i want to move it.
how to do it?