Archive: PAGE ABORT Problem from function


PAGE ABORT Problem from function
Hi,

I have problem when I want abort from page function.

Page custom myfunc

Function myfunc
Abort
FunctionEnd

Any Idea, I can stop installing here?

Thanks,
Jack


Abort does not work in Custom pages. To skip a custom page you need to jump over the InstallOptions plugin call.

-Stu


To completely stop the installation, use the Quit command.

To skip a page and go to the next one in the wizard, use the Abort command in the page's creator function (built-in or custom pages), or skip the InstallOptions plugin call (custom pages only).

To prevent the user from leaving a page, use the Abort command in the page's leave function.


It is works when I use "Quit" instead of ".


Thanks a lot.

Jack