I am trying to hide and show objects inside Captivate using Captivate JavaScript window, but even though it feels like it should be very easy to do, I cannot get my objects to show!
So far I've tried the following:
var slideNum = window.cpAPIInterface.getCurrentSlideIndex(); // to get current slide number
var CC = $("#CC_text_" + slideNum); // to get a proper object name as I have similar objects on every page
after that I tried standard JS approaches like CC.hide(); tried changing visibility, etc, but nothing works. Has anyone tried anything like this before?
Thank you!