This is what you need to do.
- You need to change the pvz to zip,
- Remove the *.pvi files, rename the zip back to pvz and copy the pvi to the Uploaded resource file or upload them
In Javascript , reference each pvi by function
$scope.yourFunctionNamePVI1 = function() {
$scope.view.wdg['model-1']['sequence'] = 'app/resources/Uploaded/[yourpvi]';
$timeout(function() {
$scope.$broadcast('app.view["Home"].wdg["model-1"].svc.play');
$scope.$applyAsync()
}
, 2000);
}
$scope.yourFunctionNamePVI2 = function() {
$scope.view.wdg['model-1']['sequence'] = 'app/resources/Uploaded/[yourpvi2]';
$timeout(function() {
$scope.$broadcast('app.view["Home"].wdg["model-1"].svc.play');
$scope.$applyAsync()
}
, 2000);
}
Now you can gesture or click and execute the function to play your sequence of your choice.
You do not need to choose a default PVI for model