
abba0001.5524937790152683E12 asked a question.
InstallScript
Hi,
How come that when youre creating new installscript project and the script is empty, you still can compile the setup and it works? Shouldn't installscript be responsible for whole application?
I would like to make autoupdate setup that would only copy new files without any user interaction... so i need to remove all dialog boxes and just keep all actions... how do I do that? Is there any way for that?
Best regards,
FlashT
To override the dialog behavior, add the OnFirstUIBefore event to your script and modify the code as desired.
For example, to change the dialogs that are displayed to the user during a first time install you would add the OnFirstUIBefore event and change the code accordingly.
Any example would be appraciated. "
Have you checked out the InstallScript Project Tutorial in the help? Step 6 talks about changing the dialogs displayed.
The calls to the dialog boxes are just calls to InstallScript functions, so to remove them would be to comment them out and set the values to what you want rather than displaying choices.