Does anyone know why when I use the following code (to invoke the "File|Export|Quicktime Movie..." command):
Code:
app.executeCommand(app.findMenuCommandId("Quicktime Movie..."));
I don't get any result?
All of the other File|Export commands can be called. Such as
Code:
app.executeCommand(app.findMenuCommandId("MPEG-4..."));
I did try
Code:
alert(app.findMenuCommandId("Quicktime Movie..."));
and the alert window just said "0", (that's a zero).
I'm creating a custom dockable UI for my editors at work and was hoping to be able to call the
Code:
app.executeCommand(app.findMenuCommandId("Quicktime Movie..."));
string inside a simple function. A button would execute the function with an onClick.
Long story, short, I'm having to go through the Export menu because the AE Output Module for Quicktime MPEG-4 movies (not H.264) doesn't give me an "MPEG-4 Audio" (AAC) option. Only through the File|Export|Quicktime Movie... does it give me the "MPEG-4 Audio" audio option.
The resulting rendered file must be a MPEG-4 Video file, with Mpeg-4 Audio, and with a .mov extension, not .mp4. The .mov format and spec requirements are not of my choice but of our clients choice.
I am using Windows not OSX btw.
Awesome site! I've learned alot!
If this needs to go into it's own thread please let me know as this is my first post.
Any help is appreciated!