Comments

jetdv wrote on 1/25/2005, 6:24 AM
You'll need to create your own dialog box - you can't open the one if Vegas. Then you'll have to make the proper calls to do the rendering.
richjo100 wrote on 1/25/2005, 7:26 AM
Here's the code that will send alt-f to Vegas then navigate down to the "render as" menu item adn then press enter

var fileMenu;
fileMenu = new ActiveXObject("WScript.Shell");
fileMenu.SendKeys ("%F");
fileMenu.SendKeys ("{DOWN}");
fileMenu.SendKeys ("{DOWN}");
fileMenu.SendKeys ("{DOWN}");
fileMenu.SendKeys ("{DOWN}");
fileMenu.SendKeys ("{DOWN}");
fileMenu.SendKeys ("{ENTER}");
fileMenu = null;

Richard
jetdv wrote on 1/25/2005, 9:38 AM
If the script is then supposed to do the rendering, that won't help because you have to immediately exit the script after sending those keystrokes or Vegas will never see them.