cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

Eye wear project

RK_9880418
11-Garnet

Eye wear project

Hi,

 

I'm trying a new project for eye wear.

 

1) I have inserted the 3D panel and placed three 3D buttons on it. (Button A, Button B and Button C)

2) When I click button A, it should play the animation of the model and has to show the description (3D image) of the product. 3D panel should hide. 

3) When I close description( 3D image), 3D panel has to display.

 

So same thing has to apply for all three 3D buttons. How to write a code for this.

 

@tmccombie @kmcgee 

1 ACCEPTED SOLUTION

Accepted Solutions

@RK_9880418 Is your issue resolved now ?

View solution in original post

2 REPLIES 2

Hi @RK_9880418 , You can use the below code:

 

$scope.buttonone = function(){
$scope.view.wdg['3DPanel-1']['visible'] = false;
$scope.view.wdg['3DImage-1']['visible'] = true;                   // description image
$scope.$root.$broadcast('app.view["Home"].wdg["model-1"].svc.play');
}

$scope.Imgone = function(){
$scope.view.wdg['3DPanel-1']['visible'] = true;
$scope.view.wdg['3DImage-1']['visible'] = false;
$scope.view.wdg['model-1']['visible'] = false;
}

$scope.buttontwo = function(){
$scope.view.wdg['3DPanel-1']['visible'] = false;
$scope.view.wdg['3DImage-2']['visible'] = true;
}

$scope.Imgtwo = function(){
$scope.view.wdg['3DPanel-1']['visible'] = true;
$scope.view.wdg['3DImage-2']['visible'] = false;
}

$scope.buttonthree = function(){
$scope.view.wdg['3DPanel-1']['visible'] = false;
$scope.view.wdg['3DImage-3']['visible'] = true;
}

$scope.Imgthree = function(){
$scope.view.wdg['3DPanel-1']['visible'] = true;
$scope.view.wdg['3DImage-3']['visible'] = false;
}

 

And call the respective functions on click event of respective widgets, as shown in sample below:

MK_10166888_0-1653671296211.png

 

I hope this works for you

 

Best Regards,

Mohit 

 

@RK_9880418 Is your issue resolved now ?

Top Tags