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

Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X

How can I get deep study into objects/methods in Vuforia Studio JS environment?

TongChen
5-Regular Member

How can I get deep study into objects/methods in Vuforia Studio JS environment?

Such like tml3dRenderer.setTexture, document.getElementsByClassName, etc.

 

Is there a guidance for new users to approach to them?

1 ACCEPTED SOLUTION

Accepted Solutions

There is a decent amount of AngularJS & JavaScript documentation available on the web. 

 

For JavaScript you can check out w3Schools: https://www.w3schools.com/js/js_htmldom_elements.asp

For AngularJS: https://docs.angularjs.org/api

 

Try printing the $scope object to your browser console to explore.

 

console.log($scope);

 

This will help you identify available functions, properties, etc. 

View solution in original post

2 REPLIES 2

There is a decent amount of AngularJS & JavaScript documentation available on the web. 

 

For JavaScript you can check out w3Schools: https://www.w3schools.com/js/js_htmldom_elements.asp

For AngularJS: https://docs.angularjs.org/api

 

Try printing the $scope object to your browser console to explore.

 

console.log($scope);

 

This will help you identify available functions, properties, etc. 

TongChen
5-Regular Member
(To:tmccombie)

Clear, thanks for sharing.

Top Tags