本帖最後由 bubblestar 於 2011-10-2 11:45 編輯
回復 11# ckleea
Since the total telephone number including the country code 1 is 11 digits instead of 10, another modification should be made as below to indicate all numbers. Otherwise, the last digit will be truncated. Would ckleea c-hing put this into his script to reflect the whole picture for our future reference. Thanks.
Set(CALLERID(number)=${CALLERID(name):1:11})
This will show up 11 digits including US code 1
If users do not want to show all 11 digits on the screen display, the code should be:
Set(CALLERID(number)=${CALLERID(name):2:10})
This will show up 10 digits excluding US code 1 |