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

Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X

Linking studio experiences

Ike@ACE
13-Aquamarine

Linking studio experiences

I'm trying to link two different experiences together using a button that shows up at the end of one experience and, when pressed, launches the next. I thought that the method that I had used to link to other types of media and web pages would work, but apparently not. What am I doing wrong? Here's the code I'm using for reference:

 

$scope.nextPhase = () => {

let nextPhase = $sce.trustAsUrl('experience link');
open(nextPhase);
}

Thanks in advance for any help.

1 ACCEPTED SOLUTION

Accepted Solutions
kornelius
12-Amethyst
(To:Ike@ACE)

Hello Ike@ACE ,

you can use 

 

window.location.replace(url); 


for this use case. the url should be defined as the url you get from Vuforia Studio, when you access the Share button within the Vuforia Studio design canvas. 

 

View solution in original post

1 REPLY 1
kornelius
12-Amethyst
(To:Ike@ACE)

Hello Ike@ACE ,

you can use 

 

window.location.replace(url); 


for this use case. the url should be defined as the url you get from Vuforia Studio, when you access the Share button within the Vuforia Studio design canvas. 

 

Top Tags