Copy to Clipboard

pctechtv wrote on 8/19/2014, 10:19 PM
With the help of this great community I have wrote my first script. I need to get this information copied every time to the Windows Clipboard. Can this script do this for me instead of posting to message box?. Thanks


/* Start Script
* With the help I revived from the great Vegas community this is my first script.
**/

import System;
import System.Windows.Forms;
import System.Runtime.InteropServices;
import Sony.Vegas;

var myMessage = ""

myMessage += "TransportSelectionStart = " + Vegas.Transport.SelectionStart + "\n";
myMessage += "TransportLoopRegionStart = " + Vegas.Transport.LoopRegionStart + "\n";
myMessage += "TransportLoopRegionStart = " + Vegas.Transport.LoopRegionLength + "\n";
MessageBox.Show(myMessage);

//End Script