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

xAPI commands to open Web browser from DX 80 device

ValeriKehayov
Level 1
Level 1

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.

 

1 Accepted Solution

Accepted Solutions

tomas_vll
Level 1
Level 1

Webview functionality is not available on dx and sx series. Only newer codecs.

View solution in original post

2 Replies 2

tomas_vll
Level 1
Level 1

Webview functionality is not available on dx and sx series. Only newer codecs.

Yup, unfortunately DX 80 does not have WebEngine and it is unable to execute similar function like this one:

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.
Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: