Forum Replies Created

Page 52 of 459
  • Edward Troxel

    January 4, 2012 at 4:18 pm in reply to: Vegas Pro Titler alwys includes “Enter Text”

    Are you changing the text? Just add the media generator and the Titler GUI will open. Then select and change the text, CLOSE the Titler GUI, and the text will be changed. If you don’t close the GUI, the text will not properly update.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    January 3, 2012 at 3:09 pm in reply to: keyboard shortcut

    Save this as “Stereo Split.js”

    /**
    * This script will split a stereo track into two separate tracks.
    *
    * Written By: Edward Troxel
    * Copyright 2005 - JETDV Scripts
    * Modified: 10-17-2005
    **/

    import System;
    import System.IO;
    import System.Windows.Forms;
    import Sony.Vegas;

    try {
    for(var track : Track in Vegas.Project.Tracks)
    {
    if (track.IsAudio() && track.Selected)
    {
    //Add a new audio track
    var Rtrack = new AudioTrack(track.Index, "Audio-Right");
    Vegas.Project.Tracks.Add(Rtrack);

    for(var evnt : TrackEvent in track.Events)
    {
    //Copy all events to the Ltrack
    var mynewEvent = evnt.Copy(Rtrack, evnt.Start);
    //Set right to disable left
    var audioEvent : AudioEvent = AudioEvent(mynewEvent);
    audioEvent.Channels = ChannelRemapping.DisableLeft;
    //Set left to disable right
    audioEvent = AudioEvent(evnt);
    audioEvent.Channels = ChannelRemapping.DisableRight;
    }
    break;
    }
    }

    } catch (e) {
    MessageBox.Show(e);
    }

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    January 3, 2012 at 3:04 pm in reply to: NewBlue Titler and Vegas 10?

    While the version bundled with Vegas Pro 11 will run in Vegas Pro 10, it is bundled only with Vegas Pro 11. If you run it in Vegas Pro 10, you will get a watermark unless you purchase the retail version to get the required serial number. The serial number you received with Vegas Pro 11 will not work to activate it in Vegas Pro 10.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    January 2, 2012 at 4:04 pm in reply to: Preview Window Covered Up

    You docked it on top of the preview screen. In the upper left corner of that window you will see a series of dots. Click on the dots and drag away to undock it.

    Edward Troxel
    JETDV Scripts

  • Yes, I know how – since I wrote Excalibur. Just go to the “Properties” tab in Excalibur and you can change all the standard properties there.

    Edward Troxel
    JETDV Scripts

  • Excalibur can easily do this. I’m sure Ultimate S can as well.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    December 29, 2011 at 5:48 pm in reply to: Vegas movie specs

    Vegas is not limited on the length of a movie. If you’re going to DVD, the “length” will be limited by the “bitrate” used. Use a lower bitrate, and you can fit more video onto the DVD. Of course going over 2 hours is typically not recommended if you wish to keep the quality up.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    December 6, 2011 at 1:48 pm in reply to: NewBlue Tranitions in Sony Vegas Pro 11?

    If you installed the 64-bit version of Vegas pro, that could explain why you are not seeing them since all Movie Studio versions are 32-bit. If you are talking about a retail product, just reinstall picking the correct version of Vegas. If you’re talking a bundled package that came with Movie Studio, it will not work in the 64-bit version of Vegas Pro but will work in the 32-bit version of Vegas Pro.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    November 23, 2011 at 4:01 pm in reply to: NewBlue Titler Pro – multiple paragraphs alignment.

    Here’s a thought – put the second line ON TOP of the first line and get them properly aligned. Now change the “Y” value of the second line to put it into place. Repeat for additional lines.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    November 18, 2011 at 4:29 pm in reply to: Adding counter to video

    Vegas can do a counter. Just add a “Time Code” generated media and adjust the settings as desired. If you don’t like that one, try the NewBlue Time Clock effect.

    Edward Troxel
    JETDV Scripts

Page 52 of 459

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy