I want to create a Custom Page with InstallOptions. On this page there should be a button and when the user clicks on it he can select some files, that are copied in a folder located in the installationfolder. What I finished is to create the InstallOption and to show the Custom Page via Macros in my Installer.
The problem still left is to popup the filerequest dialog when the user clicks on the button. Im using a Dialog-Plugin that is working already:
Dialogs::Open "Jar Files (*.jar)|*.jar|" "4" "Choose a file from the list" $EXEDIR ${VAR_6} I'm new to NSIS and I don't know how to handle the click event, so is anyone able to help filling the two functionsFunction TestStart
...
FunctionEND
Function TestLeave
..
FunctionEND The last thing I think I should post is the InstallOption ini File:[Settings]
NumFields=1
[Field 1]
Type=Button
Left=244
Top=121
Right=294
Bottom=136
Text=Button
Flags=
State=DirBrowseButton Thanks a lot!