Hi bkan -
You might find this discussion at the Adobe scripting forum useful:
https://forums.adobe.com/thread/1251722
Click events specifically are having problems with eventListeners, dig through that thread and see if any of the answers apply to your case.
Good luck!
Chris
Search found 4 matches
- August 4th, 2014, 4:01 pm
- Forum: Scripts Discussion
- Topic: addEventListener doesnt worjk anymore in AE CC??
- Replies: 1
- Views: 11673
- April 29th, 2014, 12:54 pm
- Forum: Scripts Discussion
- Topic: easy ease
- Replies: 1
- Views: 9946
Re: easy ease
Hey tc123 - You can control the easing of keyframes using the "setTemporalEaseAtKey()" method, which makes use of the KeyframeEase Object. You will need to use both things to set easing for your keyframes. One thing to watch for is that you are setting your keyframes with setValueAtTime(),...
- April 17th, 2014, 7:07 pm
- Forum: Scripts Discussion
- Topic: jQuery in After Effects
- Replies: 1
- Views: 12065
Re: jQuery in After Effects
You probably won't have much luck using any of jQuery in AE, I haven't tried it but I imagine many of the constructors will fail and the majority of the library won't load. jQuery exists for DOM manipulation in web browsers, and won't know what to do in AE. You can load other libraries and use them ...
- April 3rd, 2014, 7:14 pm
- Forum: Scripts Discussion
- Topic: Progress bar and dockable panels
- Replies: 3
- Views: 17588
Re: Progress bar and dockable panels
Hey Simma - The unexpected behavior is happening because the Window object has an update() method, but the Panel object does not. So when you run as a Window, everything is fine - but when you load your script as a dockable Panel, you lose the update() method. The good news is that you don't need to...