Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hi everyone,
I'm creating an experience in Hololes.
I can't select different sequences in the same model by connecting them to panels.
When I create experiences for Tablet I use a javascript that selects the correct Sequence (figure) and that's fine.
It doesn't seem to work here.
Are there any other ways?
Here is the javascript:
$scope.RiempimentoSerbatoio = function() {
$scope.view.wdg['SerbatoioPulita']['sequence'] = 'l-Creo%203D%20-%20riempimento_5Fserbatoio_5Fpulita.pvi';
$scope.$applyAsync();
$timeout(function() {
$scope.$broadcast('app.view["SerbatoioPulita"].svc.playAll')
}, 400)
};
Matteo.
Hi @Matteo_1987 ,
One of the ways to select a sequence through JavaScript is - extract the .pvi files and upload them separately on to the project.
Once uploaded, use the resource path to activate the requested sequence:
$scope.view.wdg['model-1']['sequence'] = 'app/resources/Uploaded/l-Creo 3D - ... .pvi';
Here is the sample JavaScript function for the same:
$scope.ChangeSequence = function(seq_name)
{
$scope.view.wdg['model-1']['sequence'] = 'app/resources/Uploaded/l-Creo 3D - ElbowMotorReplacement.pvi';
$timeout(function() {
$scope.$broadcast('app.view["Home"].wdg["model-1"].svc.playAll');
$scope.$applyAsync()
}
, 2000);
};
You would have to write separate functions for each sequence and link them in the Application Events as shown above.
Hope this helps!
Hi ytella,
Thanks for the reply.
For the selection of the sequences I already use this javascript.
A question:
I'm using Creo Illustrate 5.1 for creating sequences.
Is this version supported by Hololens?
Matteo.