run app in windows from qml
Unsolved
General and Desktop
-
-
thanks.
I tried (in linux)
it builds but it doesn work.
Text { id: text1 } Process { id: process onReadyRead: text1.text = readAll(); } Keys.onPressed: { if (event.key === Qt.Key_Up) { if (index < slidesPath.length - 1) index++; console.log(" key up"); process.start("/home/path//file_test_qml"); }
the log is:
qml: key up QProcess::start: Process is already running
-
@Montanaro said in run app in windows from qml:
QProcess::start: Process is already running
if you want multiple processes to be run you need multiple instances of
Process
in your QML