Embedding links to websites in HoloLens Experiences
Is it possible to add "clickable" links to websites in a Vuforia View HoloLens Experience? They could be opened with Microsoft Edge.
Is it possible to add "clickable" links to websites in a Vuforia View HoloLens Experience? They could be opened with Microsoft Edge.
Hi
we do not have a link widget directly but you can use any widgets which supports the click event: modelitems , 3dImage , 3d Gauges and 3dLabels.

You can simple call from there a funciton - here example:
$scope.openUrl=function()
{
let url= "https://www.bing.com/"
window.open(url)
}
I tested it and it was working - it called the edge browser and open the web. page.
So , in this case the clickable links should be some 3d elements where you have to point with the gase functionality and tap on them (tap event) I think this could be used as workaround. (HoloLens 1)
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.