The Vegas Creative Software Support Community – Find help here
Forum
Tutorials
Support
New
Sign in / register
Search ...
Help
Sign in
All
Forum
1k
Tutorials
User
All
Forum
Tutorials
User
Options
Last year
Any time
Last 24 hours
Last week
Last month
Last six month
Last year
Video
3 answers, most recent on 7/18/2024
RE: [Solved] Must Needed Feature In Future Related To Adjustment Events
It reverse colors but it also inverted that below image. SO HERE IS THE CATCH. If we can skip a track or multiple tracks from ADJUSTMENT EVENTS. @iEmby It seems you don't know that Vegas Pro has a feature called Parent Track. With it, you can
Scripting
3 answers, most recent on 11/13/2024
RE: [Solved] Can I copy over image keyframes when duplicating image onto new track?
What, exactly, are you wanting to copy? You can COPY the event to the new track and it should include all effects & Pan/Crop settings: evnt.Copy(newTrack, StartTime); Or are you referring to Track Motion settings?
Audio
8 answers, most recent on 4/24/2025
RE: [Solved] correct "pin setup" for Surround Pan 5.1
From your images, it looks like that you have 6 separate audio events - 1 each for FL, FR, C, RL, RR and LFE - and each has its own track. That's absolutely fine, but I'd start off with the centre pan point to be left at its default centre position.
Video
4 answers, most recent on 9/8/2024
RE: [Solved] Color grading on track level
After watching the video few times, I noticed that you have highlighted all of the track in Timeline causing CGP Track FX to show "not active". You must click or ensure no more than 1 track is being highlighted.
Scripting
4 answers, most recent on 11/25/2024
[Solved] Automating a sequence of commands
Hello. Using Vegas Pro 22, what is the best way for a non-developer to automate a series of commands to edit a project? I would like to create a macro that does this: 1- Select all events on all tracks 2- Group this selection 3- Select all after the
Video
6 answers, most recent on 2/12/2025
RE: [Solved] rendered video is inserted to the project and I don't want that
How are you rendering? Sounds like you're choosing Tools - Render to New Track instead of File - Render As.
Video
7 answers, most recent on 11/16/2024
[Solved] Help, AI Speech to Text VP 22
I am running Vegas Pro 22 Build 194. I am doing a project for my family for Christmas. When I go to analyze a audio track it does a great job. But after it analyzes my audio, I go to View: subtitles, then to Generate Titles. But the problem is the
Video
One answer, on 4/20/2025
[Solved] Preview shows only upper left of video
Vegas 21.0 build 315, Windows 10 Pro, Radion R9 200, 16GB RAM, Intel i7-5280@3.3GHz One video track displays just its upper left corner in the preview window. It is correct on the track and crop window (see screenshot), and the rendered video. The
Scripting
18 answers, most recent on 8/21/2024
[Solved] Left direction uses wrong logic.
@jetdv Could you help me again?Please, I need the left direction behaviors as the same as the right direction logic.The right direction does perfectly what it's supposed to do. But the left direction does not.Where is my mistake? public void
Video
6 answers, most recent on 3/20/2025
RE: [Solved] adding text to video timeline
@sRecollet Hi, you've got the video track Soloed.
Scripting
5 answers, most recent on 7/18/2024
[Solved] A script that add Fade in Trasition at cursor position
@jetdv Please, if possible, how i add the creation of a fade in trasition at cursor position in the code bellow? using System; using ScriptPortal.Vegas; public class EntryPoint { Vegas myVegas; public void FromVegas(Vegas
Audio
3 answers, most recent on 12/5/2024
[Solved] When I edit video, the audio track stays silent
Hello! I use Vegas Pro 18. I have edited two days ago and everything was okay. Twenty minutes ago I have opened Vegas because I wanted to continue my editing. But the audio track stays silent there. I mean, the audio works on my PC. And Vegas too
Video
6 answers, most recent on 2/12/2025
[Solved] rendered video is inserted to the project and I don't want that
when I render a video the resulting video creates new tracks and is inserted at the beginning of the project. This behavior started a couple of versions ago and I've been working around it. I've looked around preferences to find the box to unclick
Audio
5 answers, most recent on 1/5/2025
RE: [Solved] Plug-Ins automatically loaded into new Audio track
You can remove all three Fx, right click on the track and change the default properties. Then it will stop loading them.
Audio
4 answers, most recent on 11/22/2024
[Solved] VP 21 Cannot adjust volume in audio clip
Have a project otherwise working and rendering, however in one clip on timeline the horizontal blue audio level is up in the video track above and cannot be moved. If you select the audio track in the clip it turns white. I must have accidently
Scripting
5 answers, most recent on 9/16/2024
[Solved] Script Fails to Apply Specific Effect and Preset in Vegas Pro
Hi, I need help with a script I'm writing. I'm trying to add a specific effect to it along with a chosen preset, but I'm not having any success getting it to work. Could someone help me figure out what I'm doing wrong, please? using
Scripting
9 answers, most recent on 5/26/2025
RE: [Solved] How to Add tracks to an empty project?
Let me answer this question of mine now. To properly modify the project we created in the script, we must wrap it with UndoBlock, just as we do in Custom Commands. Wrong one: Project nestedProject = vegas.CreateEmptyProject(); VideoTrack track =
Scripting
4 answers, most recent on 8/13/2024
RE: [Solved] A Script that swaps events and overlap
I'm confused as to what is on the two tracks. You're overlaying fully over other events on the second track? It would be simple to just get the two fade lengths and then set them again after moving the event.
Scripting
11 answers, most recent on 8/16/2024
[Solved] Reset Pan & Crop is not resetting Mask with it.
I want my code should reset pan & crop as well as mask. private void ResetPanCrop(Vegas vegas) { List<TrackEvent> selectedEvents = GetSelectedEvents(vegas); if (selectedEvents == null) {
Scripting
11 answers, most recent on 8/17/2024
RE: [Solved] Velocity Envelope and Points
Go back to this: private void AddEnvelopePoint(Envelope MyEnv, Timecode PointLoc, double PointSpeed) { try { EnvelopePoint newPoint = new EnvelopePoint(PointLoc, PointSpeed);
Scripting
16 answers, most recent on 10/20/2024
[Solved] Simple matching event length script is not working properly.
hello guys.. It match length well when length is extended than original by decreasing it.and if video event is trimmed (using split S) then it works good by in extending. but when make my event small by moving edge back then it dosnt
Scripting
8 answers, most recent on 7/19/2024
RE: [Solved] Transcode & replace media file while active project opened. Possible?
private void TranscodeMedia(RenderTemplate renderTemplate, string fileExtension) { List<TrackEvent> selectedEvents = GetSelectedEvents(vegas); if (selectedEvents == null || selectedEvents.Count ==
Scripting
One answer, on 8/7/2024
[Solved] NEED HELP In Script: Transcode Media Inside VEGAS
private void TranscodeMedia(RenderTemplate renderTemplate, string fileExtension) { List<TrackEvent> selectedEvents = GetSelectedEvents(vegas); if (selectedEvents == null || selectedEvents.Count ==
Audio
6 answers, most recent on 3/5/2025
[Solved] Randomly Can't move the GAIN Slider on a clip.
While editing, suddenly, the little GAIN slider, where you grab the blue dash, and pull it down, or back up... will stop working. Once it stopes. My project is trash, and I have to start over. Nothing I do, makes it work again, other than deleting
Previous page
1
2
3
4
…
42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
of 42
Next page
2