Programming "dialing" softket - Printable Version +- Yealink Forums (http://forum.yealink.com/forum) +-- Forum: IP Phone Series (/forumdisplay.php?fid=4) +--- Forum: Phone specific topic (/forumdisplay.php?fid=12) +---- Forum: T2xP Series (/forumdisplay.php?fid=21) +---- Thread: Programming "dialing" softket (/showthread.php?tid=1541) |
Programming "dialing" softket - Simon4acre - 04-09-2014 04:48 AM I have looked at several of the posts about this and tried several options but still cannot get it to work I have a T22 phone on vers 7.71.0.168 working with a version12 3cx I have downloaded the "dialing.xml" file and edited it so the group pickup key replaces the send key ialing> <Disable> <Key Type="Empty"/> <Key Type="History"/> <Key Type="Directory"/> <Key Type="Switch"/> <Key Type="Line"/> <Key Type="Favorite"/> <Key Type="GPickup"/> <Key Type="DPickup"/> <Key Type="Retrieve"/> <Key Type="Send"/> </Disable> <Enable> <Key Type="GPickup"/> <Key Type="IME"/> <Key Type="Delete"/> <Key Type="Cancel"/> </Enable> <Default> <Key Type="GPickup"/> <Key Type="IME"/> <Key Type="Delete"/> <Key Type="Cancel"/> </Default> </Dialing> I have an SNPBX machine running Windows 7 with an IP address of 192.168.1.210. My question is where do I place the "dialing.xml" file and exactly what path do I add to the provisioning template. I have tried various combinations based on custom_softkey_dialing.url = http://<server>/<path>/dialing.xml but none work RE: Programming "dialing" softket - Yealink Support - 04-10-2014 04:22 PM Please use correct syntax in dialing.xml. Code: <Dialing> Please don't forget #!version:1.0.0.1. ----------------------------------------------- #!version:1.0.0.1 ##File header "#!version:1.0.0.1" can not be edited or deleted, and must be placed in the first line.## ####################################################################################### ## Customize the softkey ## ####################################################################################### #Customize the softkeys presented on the phone LCD screen when Callfailed, Callin, Connecting, Dialing, Ringback and Talking. #Before using these parameters, you should store the desired XML files to the provisioning server. custom_softkey_dialing.url = http://<server>/<path>/dialing.xml ----------------------------------------------- RE: Programming "dialing" softket - Simon4acre - 04-10-2014 09:01 PM Hi Thanks for the reply. Not sure what you mean by Please don't forget #!version:1.0.0.1. I have edited the file as below,is this correct as it still does not work #!version:1.0.0.1 <Dialing> <Disable> <Key Type="Empty"/> <Key Type="History"/> <Key Type="Directory"/> <Key Type="Switch"/> <Key Type="Line"/> <Key Type="Favorite"/> <Key Type="Send"/> <Key Type="DPickup"/> <Key Type="Retrieve"/> </Disable> <Enable> <Key Type="GPickup"/> <Key Type="IME"/> <Key Type="Delete"/> <Key Type="Cancel"/> </Enable> <Default> <Key Type="Send"/> <Key Type="IME"/> <Key Type="Delete"/> <Key Type="Cancel"/> </Default> </Dialing> RE: Programming "dialing" softket - Yealink Support - 04-11-2014 04:41 PM #!version:1.0.0.1 is used in auto provisioning template. Please use below right syntaxs. <Dialing> <Disable> <Key Type="Empty"/> <Key Type="History"/> <Key Type="Directory"/> <Key Type="Switch"/> <Key Type="Line"/> <Key Type="Favorite"/> <Key Type="Send"/> <Key Type="DPickup"/> <Key Type="Retrieve"/> </Disable> <Enable> <Key Type="GPickup"/> <Key Type="IME"/> <Key Type="Delete"/> <Key Type="Cancel"/> </Enable> <Default> <Key Type="Send"/> <Key Type="IME"/> <Key Type="Delete"/> <Key Type="Cancel"/> </Default> </Dialing> |