How do I tell the SN screen to not show if the demo version is ticked on the "select install" screen. Right now it is showing up for both demo and full.
Announcement
Collapse
No announcement yet.
How do I tell the SN screen not to show....
Collapse
X
-
Re: How do I tell the SN screen not to show....
I'm not sure of the exact screen you are using, however it sounds like you may be using the "Select Install Type" screen. If this is the case, if you look on the CUSTOM tab of that screen you will see that the type text is stored by default in the variable %InstallType%. Therefore on your Serial Number screen, you would go to the "Screen Condition" field on the SETTINGS tab of the screen and enter a condition such as:
%InstallType% <> "Demo"
or
%InstallType% = "Full"
Or whatever your types are actually called. The screen will be displayed if the screen condition evaluates to a value of TRUE.
If you are using a different screen, the same concept applies.
Comment