CP9 - Is it possible to Show/Hide a Web Object using external Javascript?
CP 9 v9.0.2.437
HTML5 only
Hello,
I am using a Web Object named 'woMain' which has onclick buttons in it to either show or hide other Smart Shapes or Web Objects on the same Captivate slide.
The buttons will show/hide a smart shape, but they will not show/hide another web object on the page.
My Question:
Is it possible to Show/Hide a Web Object using external Javascript?
Thank you
Peter
=======================================
A bit more info:
I have updated my AdobeCaptiavte.ini to read UseWidget7 = 1
This is the code inside my onclick buttons in Web Object called 'woMain'.
function myFunctionShow() {
window.parent.cp.show("ssFlag"); <- This works for a Smart Shape.
window.parent.cp.show("woTable"); <- This does not work for a Web Object.
}
function myFunctionHide() {
window.parent.cp.hide("ssFlag"); <- This works for a Smart Shape.
window.parent.cp.hide("woTable"); <- This does not work for a Web Object.
}
