We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

Search found 3 matches

by bilcorry
Thu Apr 26, 2007 4:04 pm
Forum: Plum DEV Q&A
Topic: Dynamically change a directory name
Replies: 4
Views: 10485

Or you can do a conditional:

Code: Select all

<if cond="lang=='en'">
    <!-- english -->
    <audio src="http://incentivesonline.com/ivr/en/welcome.mp3">
    </audio>
<else />
    <!-- spanish -->
    <audio src="http://incentivesonline.com/ivr/es/welcome.mp3">
    </audio>
</if>

- Bil
by bilcorry
Thu Apr 26, 2007 1:43 pm
Forum: Plum DEV Q&A
Topic: Where the caller hung up
Replies: 2
Views: 6743

Here's my solution for the archives (can you search these?): Instead of trying to save the location where the user hung up in a var, I instead have a "tickler" that periodically records their location in the call via <data>. It appears the script doesn't execute <data> if the caller has hung up. It'...
by bilcorry
Thu Apr 26, 2007 2:48 am
Forum: Plum DEV Q&A
Topic: Where the caller hung up
Replies: 2
Views: 6743

Where the caller hung up

I want to know where the caller hung up during the call. My first thought was to pepper the code with: <var name="hungup" expr="'got to A'" /> ... <var name="hungup" expr="'got to B'" /> Then use the "hungup" var with <catch> to know where they hung up. Unfortunately, the script keeps running when a...