I’m currently scripting under VuGen and I would like to know if there is any way to choose which action to perform next.
For example I have 3 action in my script,
- in the first action I’m testing the value of a variable and if this value is 0 I want to execute action 2 then action 3
- but if the value is 1 then I only want to execute the action 3.
Is there a way to make this possible ?
These are standard C functions, so….
if ( myvariable == 0 )
{
action2();
}
If ( myvariable == 0 || myvariable == 1 )
{
action3();
}
You may want to investigate a ‘C’ language refresher course.