Can I specify multiple expressions in Audio Sequence?

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?

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.