Comments

jetdv wrote on 3/1/2005, 7:25 AM
A script is simply a text file containing the proper code to perform the desired task. For example, open Notepad and enter the following:


import System;
import System.Collections;
import System.Text;
import System.IO;
import System.Drawing;
import System.Windows.Forms;
import Microsoft.Win32;
import Sony.Vegas;

MessageBox.Show("Vegas Version: '" + Vegas.Version + "'");

var s;
s = ""; // Build string with necessary info.
s += ScriptEngine() + " Version ";
s += ScriptEngineMajorVersion() + ".";
s += ScriptEngineMinorVersion() + ".";
s += ScriptEngineBuildVersion();


MessageBox.Show(s);






Now save this as Version.js and run it from within Vegas. It will tell you the current version of Vegas and the .NET framework you have installed.
I have a lot more information in the various issues of my newsletter


JohnnyRoy wrote on 3/3/2005, 3:48 PM
JetDV’s newsletters are an excellent source of information. I agree it’s a good place to start.

~jr