This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- How to use Get User Input - Simple Panel (High priority)
Subscribe
- 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
‎Apr 25, 2011
03:46 AM
How to use Get User Input - Simple Panel (High priority)
Hi,
As soon as installation completes and we get Install Complete Panel, i want to add one more panel for taking user input for starting application (yes/no). I am using Get User Input - simple panel for that. I am using Radio Button input method.
Prompt: Do you want to start application?
Method Type: Radio Button
There are two radio buttons that i am using.
1. Yes, start the application
2. No, i will start it later.
When user selects first option and click on done, i want application to start. How can i link this radio button with application opening (application shortcut or application opening file)?
As soon as installation completes and we get Install Complete Panel, i want to add one more panel for taking user input for starting application (yes/no). I am using Get User Input - simple panel for that. I am using Radio Button input method.
Prompt: Do you want to start application?
Method Type: Radio Button
There are two radio buttons that i am using.
1. Yes, start the application
2. No, i will start it later.
When user selects first option and click on done, i want application to start. How can i link this radio button with application opening (application shortcut or application opening file)?
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 26, 2011
02:49 AM
"Get user input simple" action answer goes to variable (default name: $USER_INPUT_RESULTS$).
If user selects first checkbox, then variable will be computed like this:
USER_INPUT_RESULTS="Yes, start the application",""
So you can use this variable then to execute your action by putting it into rule of your next action.
e.g. rule: "USER_INPUT_RESULTS contains Yes".
Good to know, the get user input will also generate (still for same answer):
USER_INPUT_RESULTS_BOOLEAN_1=1
USER_INPUT_RESULTS_BOOLEAN_2=0
USER_INPUT_RESULTS_1=Yes, start the application
USER_INPUT_RESULTS_2=
So you can use any of these.
Please don't post MPs for question already asked on the forum.
--Jerome
If user selects first checkbox, then variable will be computed like this:
USER_INPUT_RESULTS="Yes, start the application",""
So you can use this variable then to execute your action by putting it into rule of your next action.
e.g. rule: "USER_INPUT_RESULTS contains Yes".
Good to know, the get user input will also generate (still for same answer):
USER_INPUT_RESULTS_BOOLEAN_1=1
USER_INPUT_RESULTS_BOOLEAN_2=0
USER_INPUT_RESULTS_1=Yes, start the application
USER_INPUT_RESULTS_2=
So you can use any of these.
Please don't post MPs for question already asked on the forum.
--Jerome
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 26, 2011
02:59 AM
Thanks a lot Jerome. It is working now 😄