- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: InstallShield Advanced UI and Suite: how to determine feature selection state via Installscript
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Dear support,
I have an Install Shied Suite and I need to find the feature selection at run time via installscript action:
i have unsuccessfully tried the following:
*Using FeatureIsItemSelected
rel1= FeatureIsItemSelected (MEDIA, "Feature1");
rel2= FeatureIsItemSelected (MEDIA, "Feature2");
* FEATURE[name].actionState I can make it work only in the actions but not via installScript
* Read the value of ISFeatureInstall . However it does not reflect the modification the user makes in the UI after it was set by command line
Thank you in advance.
Angela
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Hi Angela,
In InstallationFeatures Dialog -> select Next button-> click event-> SetProperty with below condition
FEATURE[featurename].actionState EqualTo Install
and run the installscript function to get the property value using SuiteGetProperty function.
Regards,
Thananjeyan
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Hello Thananjeyan,
This is exactly what i did at the end.
Thank you.