Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Compiling/importing scripts

Status
Not open for further replies.

jhross

Programmer
Apr 2, 2007
2
DK
Hi.

When you export scripts from the script editor they will be stored somewhere as *.A and *.S files.

It is possible to edit the *.S files via a text editor, but the script can not be imported from the files again without copy/paste via e.g. notepad in the script editor.

Is there a way where you can do editing (e.g. a replacements in all scripts at one time) and then import and compile them in Symposium in an easy way?
 
Version 6 has an edit and replace (and a find) function, however, you need to do each script individually.

What is it you are trying to replace? Could you use call variables and assign values at the beginning of a script and then just use one script?

We have some scripts that assign the value of the skillset (cv_skillset) based on the CDN, but there's no reason you couldn't do the same for date, time, wait time. One thing you can't assign is voice_segment variables.

e.g.
WHERE CDN EQUALS
VALUE 12345 : ASSIGN sales TO cv_skillset
VALUE 56789 : ASSIGN marketing TO sv_skillset
DEFAULT : ASSIGN general TO cv_skillset
END WHERE

Then you queue to cv_skillset instead of sales, marketing etc.

DD


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top