Brummelchen
11th October 2006 23:07 UTC
how to: wait for external program and set nsis idle this time
i need to set nsis "idle" while waiting for a shutdown of an
external program (not started from nsis)
any loops uses cpu power - i need it "sitting in the edge like a spider"
any hints for me?
(eg. like Processes::WaitProcess "myapp.exe")
thx
Takhir
12th October 2006 15:39 UTC
You can modify script on the first link http://nsis.sourceforge.net/Special:...leObject&go=Go
But plug-in (second link) works as well.
Brummelchen
13th October 2006 00:08 UTC
hmm, i dont want to terminate the program - user has to close it.
fct closed my program - wasn't purpose. :(
fct:wait does not work alone?
i have for now a 10sec sleep loop
Comm@nder21
15th October 2006 16:16 UTC
ExecWait "myapp.exe"
Brummelchen
15th October 2006 18:29 UTC
aaahhhhh O_o
read this what i described
nsis -> app1 -> app2
^-----------------|
Comm@nder21
16th October 2006 16:21 UTC
args, sry, read now :)
there is an api function for it, i guess you'll need a new plugin for it, or better enhance nsProcess :)
Brummelchen
16th October 2006 22:10 UTC
thx man - i'll look for it