Captivate java script and the Playbar
I recently helped create a series of Captivate Courses and was able to successfully use javascript to enable and disable the Forward and Backward buttons in the Captivate supplied Playbar. For Example:
$("#" + "Forward").css("pointer-events","none");
$("#" + "Forward").css("pointer-events","auto");
For this course we also had situations where would have liked to have the Forward button jump to a particular slide (instead of just going the next slide). And the same for the Backward button. Is there any java script code that would make this work?
