Mui_abortwarning
Hi!
During installation I request the user to change CD Roms several
times.
I check if the correct CD is in the drive as follows:
<-- snip -->
checkIfFileExists:
IfFileExists "$EXEDIR/1.zip" "unzip" "message"
message:
MessageBox MB_OKCANCEL "Please insert the CD 1" IDOK checkIfFileExists
Call cancelInstallation
Goto checkIfFileExists
<-- snip -->
I have tried to avoid using my own "cancelInstallation" function by
replacing "Call cancelInstallation" with
"!insertmacro MUI_ABORTWARNING". The correct function is displayed but when I do not abort the installation, the installer does not go back to "checkIfFileExists" and seems to sort of hang (nothing happens, the progress bar windows is displayed (no progress) and I have to cancel the installer.
Is there a way I could use the predefined abort message?
Thanks for the help,
Barbara