- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2020 05:44 AM
Hi,
Is there any command in order to open specific URL from DX 80 Device.
Maybe something similar to this one:
xapi.event.on('UserInterface Extensions Panel Clicked', (event) => {
if (event.PanelId === "Web") {
xapi.command('Dial', { Number: '201' });
}});
With the above lines I am able to dial Specific number from the DX 80 device when the custom button called "Web" is pressed.
Is there any similar lines of code in order not to "Dial" but to open URL?
Thanks any suggestions will be much appreciated.
Solved! Go to Solution.
- Labels:
-
Other Collaboration Endpoints
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2020 10:49 AM
Webview functionality is not available on dx and sx series. Only newer codecs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2020 10:49 AM
Webview functionality is not available on dx and sx series. Only newer codecs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2020 12:00 AM
function open(url) {
xapi.command('UserInterface WebView Display', {Url: url})
.catch(e => console.log('Not able to open url', e.toString()))
}
function guiEvent(event) {
if (event.PanelId == 'Web') {
open('http://www.youtube.com');
}
}
Webex Board 55-70 is capable of doing that.
Thank you anyway.
