We have spent quite a bit of time trying to figure out how to display text that differs by task #, but with no success. We would like to have specific question wording for task 1, another for task 2, then the rest of the tasks have yet another wording. Below is our best attempt, but we get error 132. AI has not solved it.
[% Begin Unverified Perl
if (CBCCurrentTask() == 1) {
return "Please review the first set of options carefully.";
}
elsif (CBCCurrentTask() == 2) {
return "Now consider these alternatives in the context of your usual needs.";
}
else {
return "Please choose the option you prefer.";
}
End Unverified %]