Cisco Unified Application Environment Developer Forums

« Back to Developers

Media file and TTS Variable in prompt

Combination View Flat View Tree View
Threads [ Previous | Next ]
I am attempting to build an IVR using Cisco UAE.  Originally, I have the main menu as a full Text-To-Speech list that includes the contactee name as a variable and that works just fine.
        Prompt1 (C#) = "Hello, if this is " + g_first + "please press 1."
 
We have had the static text portion of this menu recorded and would like to combine these WAV files with the variables.
However, if I simply substitute the text portion with the file name I receive an error that wav is not defined.
If I separate the media file into its own prompt as a string I receive only silence.
        Prompt1 (STR) = Hello.wav
        Prompt2 (VAR) = g_first
        Prompt3 (STR) = Opt1.wav
 
Any examples only ever show one single prompt.  How can I get this to work?  I cannot find any help on the web.

Thank you