Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
I would like to bind events when developing for the Hololens. E.g make a Gauge visible with a hand gesture or voice command in the Hololens. However I do not get any services available when trying to bind it.(ref attachment)
Solved! Go to Solution.
Hi @lundha ,
As far as I know, the application events can be bound to a service to complete actions like playing a sequence. One of the ways to alter the gauge visibility is by defining a javascript function on Home.js and call it in the application event.
$scope.GaugeVisibility = function() { $scope.view.wdg['3DGauge-1']['visible'] = true; }
Hope this helps!
Hi @lundha ,
As far as I know, the application events can be bound to a service to complete actions like playing a sequence. One of the ways to alter the gauge visibility is by defining a javascript function on Home.js and call it in the application event.
$scope.GaugeVisibility = function() { $scope.view.wdg['3DGauge-1']['visible'] = true; }
Hope this helps!