In an Audio Sequence, I clicked on "Switch to custom expression".
And then I put in
AudioPlaybackOptions(ToAudio(If(0==foo,Prompt.userprompt1,Prompt.userprompt2)),true)
It works fine.
However if I want it to play additional one as below, it gives me error.
AudioPlaybackOptions(ToAudio(If(0==foo,Prompt.userprompt1,Prompt.userprompt2)),true);
AudioPlaybackOptions(ToAudio(If(0==foo,Prompt.userprompt3,Prompt.userprompt4)),true)
How can I play a collection of prompts within a custom expression box?