is99
23rd September 2006 16:31 UTC
Finish Page
I want to change the finish page.
I need to give a user an option to select two options.
I know how to make one:
!define MUI_FINISHPAGE_RUN
!define MUI_FINISHPAGE_RUN_TEXT "Start Something"
!define MUI_FINISHPAGE_RUN_FUNCTION "LaunchSomeFunction"
But how can I make two ?
Animaether
23rd September 2006 18:20 UTC
Instead of a Finish page, you could just use a custom / installoptions page. That gives you the liberty to set up as many options as you'd like.
kichik
23rd September 2006 22:49 UTC
You can use the show readme checkbox for that. Have it execute a function instead of opening a readme. In that function, use Exec to run your application.
is99
1st October 2006 09:26 UTC
Excelent idea.
Thanks.