Skip to main content
Known Participant
November 9, 2016
Question

Can i put a VR Tour (HTML5) into and control it from within Captivate 9?

  • November 9, 2016
  • 2 replies
  • 451 views

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

ted.hildebrandt@gordon.edu

    This topic has been closed for replies.

    2 replies

    tedh7Author
    Known Participant
    November 9, 2016

    Can Captivate "hear" the button click in a web object HTML5?

    TLCMediaDesign
    Inspiring
    November 9, 2016

    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; });

    TLCMediaDesign
    Inspiring
    November 9, 2016

    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.