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

Community Tip - You can change your system assigned username to something more personal in your community settings. X

Vuforia Studio Scripting

pstenge2
4-Participant

Vuforia Studio Scripting

Is there a way with in Vuforia Studio to access the list of uploaded resources via scripting in Home.js? I'm struggling to find in depth documentation on the scripting capabilities within Vuforia Studio. I know the parameters can be accessed by $scope.app.params so I'd think the resources would also be able to be accessed similarly but the syntax isn't intuitive and without documentation it's difficult to figure out.

ACCEPTED SOLUTION

Accepted Solutions

The Application page is for writing CSS - you can reference uploaded resources like images to be used within your class. 

 

I think this community post may be helpful: https://community.ptc.com/t5/Studio/get-list-o-file-from-Uploaded/m-p/603367/highlight/false#M5396

 

It discusses using $http to read in a json file of all the resources. 

View solution in original post

3 REPLIES 3

Yes, you can use the resources within Home.js. What are you trying to do? 

 

As an example, you can update sequences of a model by doing the following:

$scope.view.wdg['model-1']['sequence']='app/resources/Uploaded/Illustration/<PVI file name>';

 

In the Application page, you can reference uploaded resources using $resources.

Example: background-image: url(#{$resources}/Uploaded/image.png)

 

 

pstenge2
4-Participant
(To:tmccombie)

Great thank you this is helpful information. Could you explain your bottom example a little? What is considered the 'Application page'? Is url a specific url or is it literally url?

I am trying to use a script to assign each model uploaded as the resource for a model in my scene. Is there a way to iterate through each of the uploaded items?

The Application page is for writing CSS - you can reference uploaded resources like images to be used within your class. 

 

I think this community post may be helpful: https://community.ptc.com/t5/Studio/get-list-o-file-from-Uploaded/m-p/603367/highlight/false#M5396

 

It discusses using $http to read in a json file of all the resources. 

Announcements
Top Tags