jasonbernett Report post Posted 12/24/2008 05:41 PM In a script, anytime the person hits "*" I want a certain announcement to be played and then have the script return to its previous location. Right now, I have the * skipping to a play module but I am unsure how to bounce back to where I just came from. I have used the path logic of "on {timeout 0} goto [PLAY ACTION - Jump Back]" but this does not work as I expected (the call hangs up). Is there an easy way to do this? Share this post Link to post
SupportTeam Report post Posted 12/26/2008 01:01 AM Use $RV_PreviousModule Like this: on {timeout 0} goto [$RV_PreviousModule] From http://www.voiceguide.com/vghelp/source/ht...ltvariables.htm : $RV_PreviousModule Title of the previous module, ie: from which module the script arrived at the current module. Share this post Link to post