CCX MeetMe Application

Greetings - we're a pretty small shop and use a combination of MeetMe and WebEx. MeetingPlace was too big for us in some instances and too small in most...just did not fit well and was not cost effective.

 

I want to write a script that gets people into MeetMe. I have everything except I want to check to see if the ext entered is a valid meetme number. For instance our MeetMe numbers start with a 6 - I want an if statement to test to see if the number starts with a 6...

I am new at this scripting thing but does anyone have any suggestions on how to do the if statement?

Kickoff

So how did you get the meetme to actually start, I haven't seen a way to do this in a script since it is done by pressing a softkey on an actual phone.

rswartzmiller's picture

CCX MeetMe Application

If variable_name.startWith("6")

CCX MeetMe Application

I have a variable declared

sGetDigit = Extended Get Digit String (--Triggering Contact--)
   Successful
        Set sRedirectTXNumber = sGetDigit

 

and I tried:

if sRedirectTXNumber.startsWith("6")

True
     GoTo Call Transfer
False
     Play Prompt
    

 

It's not stopping at the logic - it keep going through the rest of the script which transferes the call....what am I don't wrong?

CCX MeetMe Application

 This was very easy!

I grabbed a catch after the sGetDigit = Extended Get Digit String to catch everything that starts with a 6 (our meetme's are 6xxx).

 

It then drops down to a transfer procedure that transfers the call to the meetme. The catch was to put in a loop at the unsuccessful to retry. 

I have it retrying 5 times before the caller gets a messages thanking them for calling and ends the session.

 

rswartzmiller's picture

CCX MeetMe Application

Email me your script and I can look at it.

Recommended Reading: