Forum Replies Created

Page 70 of 459
  • Edward Troxel

    February 17, 2010 at 2:42 pm in reply to: A couple basic questions (keyboard shortcut)

    [Adam Spencer] “What’s the keyboard shortcut for the “Selection Edit Tool”?”

    From the “normal” edit tool, press “D” twice. Personally, I almost never have a need to switch from the “normal” tool – I use a script to select events if there’s more than a few to select.

    [Adam Spencer] “Also, when I move a clip, I get a small horizontal blue arrow above the timeline that tells me how far forward or backwards I just moved the clip. What is the function of this?”

    It shows you how far things will be moved if you do a “post ripple edit”. Search for ripple editing in the help file.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    February 14, 2010 at 8:28 pm in reply to: Its possible to capture only audio via fireware?

    Using Scenalyzer Live, you can capture audio only via firewire.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    February 13, 2010 at 7:14 pm in reply to: No picture in the trimmer

    You need the proper video codec installed on your system. Whatever codec your video file is using isn’t avaialble to Vegas.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    February 9, 2010 at 2:39 pm in reply to: can Vegas open mp4 files?

    122 minutes will easily fit on a standard DVD. You just need a lower bitrate. The bad news is that the Movie Studio versions don’t give you access to the MPEG2 custom settings (you need the Pro version for that). What format were the original files? If they were DV, just render out to DV, give DVD Architect the DV-AVI file, and it will convert it to MPEG2 for you using the proper bitrate so that it will fit.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    February 5, 2010 at 5:23 pm in reply to: Speeding up clips in Sony Vegas 9.0 pro?

    Hold down the ctrl key and resize the clip smaller.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    February 5, 2010 at 5:21 pm in reply to: Audio from mono to stereo

    Right-click it, “Channels”, then “Left Only” or “Right Only” depending on which channel it’s on.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    January 30, 2010 at 3:51 pm in reply to: B+W to colour in one scene?

    Your “automation” is the KEYFRAMES my post talked about.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    January 28, 2010 at 4:16 pm in reply to: sony vegas timeline

    Copy it, paste it into notepad, save it into the “Script Menu” folder in the Vegas install folder as “SelectEventsAfterCursor.cs”

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    January 27, 2010 at 2:32 pm in reply to: sony vegas timeline

    /**
    * This script will select all events after the cursor
    *
    * Written By: Edward Troxel
    * Modified: 10-23-2007
    **/

    using System;
    using Sony.Vegas;
    public class EntryPoint
    {
    Vegas myVegas;

    public void FromVegas(Vegas vegas)
    {
    myVegas = vegas;

    foreach (Track track in myVegas.Project.Tracks)
    {
    foreach(TrackEvent evnt in track.Events)
    {
    evnt.Selected = false;
    if (evnt.Start >= myVegas.Cursor)
    {
    evnt.Selected = true;
    }
    }
    }

    }

    }

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    January 18, 2010 at 3:19 pm in reply to: New Blue FX Flash Remover: Won’t eliminate flash

    For the best support, you’re better off filing a help ticket a newbluefx.com/support.html

    Edward Troxel
    JETDV Scripts

Page 70 of 459

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