Actions

Open door script does not work

From Zenitel Wiki

Revision as of 10:07, 19 January 2018 by Hvd (talk) (Created page with "{{A}} The Open Door script as described in the manual, and as part of standard scripts in AlphaView itself does not work for both incoming and outgoing calls. This will be rec...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
AlphaCom icon 300px.png

The Open Door script as described in the manual, and as part of standard scripts in AlphaView itself does not work for both incoming and outgoing calls. This will be rectified in a following release. The correct script is:

string dirop = Av.Params.Get("DIROP", ""); 
string dira = Av.Params.Get("DIRA", ""); 
int nnop = Av.Params.Get("NNOP", 0);
int nna = Av.Params.Get("NNA", 0);


if ((dira==dirop) && (nna==nnop))
{
	Av.STE ("@U%NNOP $ER U2 U0 U1 U1 L(%NNOP)%DIRB U3 L%DIROP"); 
	Av.Delay (3500);
	Av.STE ("@U%NNOP $ER U2 U0 U0 U1 L(%NNOP)%DIRB U3 L%DIROP");
}
else
{
	Av.STE ("@U%NNOP $ER U2 U0 U1 U1 L(%NNOP)%DIRA U3 L%DIROP");
	Av.Delay (3500);
	Av.STE ("@U%NNOP $ER U2 U0 U0 U1 L(%NNOP)%DIRA U3 L%DIROP");
}