cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
tarun91
Level 4

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)?
Labels (1)
0 Kudos
(2) Replies
jerome_IA
Level 9

"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
0 Kudos
tarun91
Level 4

Thanks a lot Jerome. It is working now 😄
0 Kudos