yes it is possible
u might have .pvz model with you . so do one thing save that file as .zip by renaming. and extract the file, you will get a lot files including .obj and .pvi
so in that .pvi files are nothing sequence file to run , suppose you have 4 sequences then you will find 4 .pvi files
now with the help of these files You can run 4 sequences with 4 different buttons
you need to provide 4 button in 2D canvas and bind all those button with model first and in home.js view you need to write javascript code for that given below:
$scope.r1= function()
{
$scope.view.wdg['model-1']['sequence'] = 'app/resources/Uploaded/l-Creo 3D - RED.pvi';
}
now this is javascript to run only 1 sequence , so if u have 4 sequence then you need to write above lines 4 times by making some changes in that
now in above javascript
"r1" is assinged to respective button binding
"l-Creo 3D - RED.pvi" is respective sequence file which we get from extract of zip file
suppose to bind A button to model to run sequence then u need to right below code in click area of A button
r1();
means if u click on A button respective Sequence file will run
similarly u need to perform same procedure to other button by changing the red part in javascript