cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
638
Views
0
Helpful
0
Replies

SX20 help with Macro

Software version ce 9.13.2

SX20

This problem relates to Webex Meetings and the mute fiasco! 

I have a situation where room systems users in a Webex meeting at the touch10 need to to click "Keypad" and enter

*6 to mute/unmute

2 to cycle through the various Webex meetings layouts such as Grid view 


I have used the UI Extensions editor to add a webex button when in call and that button produces a new panel where I plan to put a mute/unmute button and a "view cycle" button, share etc.

 

My problem is that on ce 9 " xCommand DTMFSend DTMFString" is not available. 

So in my macro I need to find the right command to send the "*6" and other keypad commands.

Notes

1.The "Key item" command does not have a "*" available.

2.O ce 9 " xCommand DTMFSend DTMFString" is not available. I tried it nonetheless and it failed.

3.The "dial" command does not work as it tries to make a new call.

 

Does anybody know the right command to send "*6". Thank you.

 

This is what I have so far

 

const xapi = require('xapi');


xapi.event.on('UserInterface Extensions Widget Action', webexmute);

function webexmute(event) {
if (event.WidgetId === 'webexmute' && event.Type === 'clicked') {
xapi.command('        ??????        ', { ValuespaceRef: '*6' });   
}
}
xapi.event.on('UserInterface Extensions Widget Action', webexmute);

 

 

 

0 Replies 0