if you have patched asterisk with bristuff, you could use the app DevState(newstate).
Basically, a thing like this:
; suppose 999 is your "nightmode enable/disable" extension
exten => 999,hint,DS/nightmode
exten => 999,1,your enable/disable stuff
exten => 999,2,your enable/disable stuffexten => 999,3,your enable/disable stuff
.....
exten => 999,n,Gotoif(${ENABLING}?100:200)
exten => 999,100,DevState(nightmode|3)
exten => 999,101,Hangup
exten => 999,200,DevState(nightmode|1)
exten => 999,201,Hangup
then you monitor "999" on your BLF...
hope this helps
2006/4/11, Jason Adams <[EMAIL PROTECTED]>:
Hey Everyone,I just setup a way for our receptionist to turn on the auto attendant mode via her phone. I setup one of the indicators to dail an extension which runs a bunch of code to turn on/off the night mode. Is there a way using the BLF to turn the indicator on (solid red) when night mode is on and turn the indicator off when night mode is off?Thanks,Jason Adams
Sumo Systems
57 E. Wilson Bridge Rd
Suite 200
Worthington , OH 43085
Phone | 614.433.9906 ext: 102
Fax | 614.433.9931
E-mail | [EMAIL PROTECTED]
_______________________________________________
--Bandwidth and Colocation provided by Easynews.com --
Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
_______________________________________________ --Bandwidth and Colocation provided by Easynews.com --
Asterisk-Users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
