Copy link to clipboard
Copied
I'm wondering if I can use the Web Object function to embed a VR Tour into
captivate and then have my students control it from within the Captivate shell?
Could I put hotspots onto the VR Tour and read out variables when students
click on the Panorama or 360 video?
Thanks,
Ted Hildebrandt
Copy link to clipboard
Copied
It is much easier to put code into your web object to listen for button clicks and whatever you want to use to control the web object.
Copy link to clipboard
Copied
Can Captivate "hear" the button click in a web object HTML5?
Copy link to clipboard
Copied
No, you put the listener inside of the web object (html file)
So to listen for a button in captivate called "pause_btn" in the web object you add the code:
window.parent.document.getElementById( 'pause_btn' ).addEventListener( 'click', function () { //your code here; });