I have the following part of code
...
Page custom ShowDownloadingPage PressButton
!insertmacro MUI_PAGE_INSTFILES
...
...
...
Function ShowDownloadingPage
!insertmacro MUI_INSTALLOPTIONS_DISPLAY "DLPage.ini"
FunctionEnd
Function PressButton
inetc::get /TIMEOUT 10000 /RESUME "One more time?" "http://mydomain/myfile" "$TEMP\\myfile"
Pop $0
FunctionEnd Unfortunately downloading starts only if I press "Install" button on my own page.My question is how to start it when I press "Next" button on the previous (MUI_PAGE_STARTMENU) page?
Thank you for your answers.