Question
Getting started with Bridge CEP/HTML5 extensions.. need some help
I'm stuck with my first Bridge CC 8.0 CEP extension. I'm trying to create an event handler that will trigger in the main.js when a user selects a new thumbnail in the content window and call a function in the extendscript. I've tried a few different options with the following code but nothing appears to work. Thanks for any advice.
| var csInterface = new CSInterface(); | |
| csInterface.addEventListener(document.open,function(e){ | |
| alert("thumbnail selected!"); | |
| }); |
