I have tried using bringtofront but I dont beleive that is what I actually want. Is there something I am missing?
Asked
Active
Viewed 393 times
0
-
Could you give more informations ? Are you starting a NSIS installer from another program ? If so what language ? – Seki Feb 23 '12 at 15:06
-
the exe file is downloaded from a webpage and opens for the user to install the application. if there are other windows open it will open behind them – mdarling Feb 23 '12 at 15:24
-
1but who is starting the setup ? The user from the web browser ? Another application that you made ? – Seki Feb 23 '12 at 15:50
1 Answers
0
Plugins could cause focus issues, try a script without any code in .onInit
and .onGuiInit
. If it still happens you can file a bug report with a simple example script and the required steps to reproduce (Browser and operating system version etc)

Anders
- 97,548
- 12
- 110
- 164
-
i have found that it is because i am calling inetc::get during .onInit. Are you aware of any fix for this? – mdarling Feb 24 '12 at 19:43
-
-
@user1228637 Try moving the plugin call to .onGuiInit or the show callback for your first page. Or try the (experimental?) InetBgDL plugin... – Anders Feb 27 '12 at 16:57
-