hello, i want to add 2 check box in my finish screen, 1 for "run program", 1 for read instruction, could someone please tell me how to do it ?
Announcement
Collapse
No announcement yet.
check box on finish screen
Collapse
This topic is closed.
X
X
-
Re: check box on finish screen
Hi,
Simply use a 12 Checkbox screen, and only make two checkboxes available. Call the first one 'Run' and make its variable %Run%, and the second one 'Read' and make its variable %Read%. (You can change these values later to make more sense.)
Then go to the After Screen tab and add these actions:
If (%Run% = TRUE)
Execute Program (Launch your Program)
End IF
If (%Read% = TRUE)
Open Document (Read your material)
End IF
That's it, I'm sure you will be able to get it working properly.
mark.MSI Factory The Next Generation Intelligent Setup Builder
Comment
-
Comment