Asked By Rob Hamflett
25-Jan-07 11:26 AM
The most straight-forward way would be to assign a property to the group and assign a value to each
radio button. When the user has made their selection and clicks next (or at some later time), have
4 Custom Action, each of which sets the install location to one of the pre-existing folders.
Condition each Custom Action based on the property and you should be OK.
Spelt out a bit more explicitly:
Defines CAs:
CA1 = Set install location 1
CA2 = Set install location 2
CA3 = Set install location 3
CA4 = Set install location 4
Setup Radio Button Group:
Radio Button Group has property LOCATION
Button 1 has value 1
Button 2 has value 2
Button 3 has value 3
Button 4 has value 4
After the user has made the selection, run these actions:
CA1 - condition: LOCATION=1
CA2 - condition: LOCATION=2
CA3 - condition: LOCATION=3
CA4 - condition: LOCATION=4
Rob