Guest Guest_alkrm Report post Posted 01/20/2006 08:51 PM hi, can some one tells me how to to do this,after getting a specific number from the caller i will need to paly a special wave based on the number he entered? using one module to speaks the wave,(i 'll have more than 100 wave files to be played)? i know how to write vb, i will use if condition, but i don't know how to play the file?? thnx Share this post Link to post
SupportTeam Report post Posted 01/20/2006 11:24 PM You can set the RV inside the VBScript to hold the filename which you want to play and then use that RV in the Play module. or, you could use the entered number as part of the filename and specify the file to be played like this: MySoundFile_$RV[GetCode].wav and then is caller enters 1234 in module GetCode then the file MySoundFile_1234.wav would get played. or, you could start file play form with VBScript module using VG's COM interface... Share this post Link to post
Guest Guest_alkrm Report post Posted 01/21/2006 09:06 AM works like magic. thanks alot Share this post Link to post