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
- :
- Jump Action in Install phase
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
‎Aug 04, 2009
01:27 AM
Jump Action in Install phase
is there any way to have jump action in install phase..?
it is not available in standard actions..
i want to give user option of "try again" during installation.. there i need a loop..
??
it is not available in standard actions..
i want to give user option of "try again" during installation.. there i need a loop..
??
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 05, 2009
02:01 AM
You don't need a goto statement to do this!
repeat ... until ( Ask(..try again?..) = NO );
repeat ... until ( Ask(..try again?..) = NO );
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 05, 2009
02:40 AM
but how to repeat?
e.g.
1. Ask user to close all browsers before continuing
2. user presses continue (without closing browsers)
3. go back to step 1, until he closes browser.
here how to do "go back to step 1" ?
consider 1, 2, 3 steps as 3 actions.
e.g.
1. Ask user to close all browsers before continuing
2. user presses continue (without closing browsers)
3. go back to step 1, until he closes browser.
here how to do "go back to step 1" ?
consider 1, 2, 3 steps as 3 actions.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 05, 2009
03:01 AM
repeat
MessageBox("Close your browser!", info)
(bool) browser_open = some_test_function() / Whatever
// another commands... ... ...
until ( browser_open = False);
This repeats the commands between repeat and until, till the condition becomes true.
MessageBox("Close your browser!", info)
(bool) browser_open = some_test_function() / Whatever
// another commands... ... ...
until ( browser_open = False);
This repeats the commands between repeat and until, till the condition becomes true.