Copy link to clipboard
Copied
I would to make a simple non-modal UI Panel where the user can interact with some javascript code. I started to use the ScriptUI component, but there was a problem with the example SnpCreateDialog.jsx. I get the error "Window does not have a constructor". What is the preferred method to have buttons, text boxes, and dropdown menus when scripting for Premeiere?
Thanks in advance!
I recommend avoiding Eclipse and Extension Builder entirely; you can also develop directly in PPro's /extensions directory, to avoid any copy step. notepad and Chrome are the way to go.
Copy link to clipboard
Copied
We recommend using JavaScript, and HTML5, for panel UIs.
Here are several examples:
Copy link to clipboard
Copied
That's some really good software architecture! Here is my experience starting out with this tech:
I checked out the samples and I was bewildered at first, but then I found a hello world example for Adobe HTML Extensions: A Short Guide to HTML5 Extensions | Adobe Developer Connection. I noticed there is a change in the CEP 5 extension storage location. In the previous version it was %APPDATA%\Adobe\CEPServiceManager4\extensions but now it is %APPDATA%\Adobe\CEP\extensions.
I setup the Eclipse add-on called Extension Builder, but I found that creating a new project was much easier to do manually. I made a batch script that copies my project files from the network to the local extensions folder and then runs Premiere. I use Notepad++ to edit and Chrome to debug. It seems to be working. 🙂
Copy link to clipboard
Copied
I recommend avoiding Eclipse and Extension Builder entirely; you can also develop directly in PPro's /extensions directory, to avoid any copy step. notepad and Chrome are the way to go.