The Vegas Creative Software Support Community – Find help here
Forum
Tutorials
Support
New
Sign in / register
Search ...
Help
Sign in
All
Forum
441
Tutorials
User
All
Forum
Tutorials
User
Options
Last six month
Any time
Last 24 hours
Last week
Last month
Last six month
Last year
Video
5 answers, most recent Yesterday
[Solved] Anyone Found This Happening V23
Playing a project and all the timeline images are being displayed: Move say the track scroll bar and you get this: Play continues but some or all thumb nails disappear. Press pause and they come back. Does not happen in V22. Anyone else have this?
Video
3 answers, most recent on 5/9/2025
RE: [Solved] copy "frame size" from one video event to some video events
@Qbrick Just use a script like the following one: using ScriptPortal.Vegas; namespace Test_Script { public class Class1 { public Vegas myVegas; public void Main(Vegas vegas) { myVegas =
Video
2 answers, most recent on 7/18/2025
RE: need help with video cropping
If you use Track Motion in the track header, you'll have a much more flexible range of movement which will allow you to place the image where you are seeking to place it. Note however that track motion applies to every video event on that track so
Scripting
No answers, created on 5/31/2025
Lock Track Script ! Until VEGAS Team Not Creating Lock Track Function
Use this script until lock track function not coming in VEGAS. Lock Track (Toggle) using ScriptPortal.Vegas; public class EntryPoint { public void FromVegas(Vegas vegas) { foreach (Track track in
Video
4 answers, most recent on 4/24/2025
[Solved] PIP & Masking are doing something weird together
Hi guys how are you all?? PIP is not working when i applied it after a PAN & CROP mask in an event. I have to apply PIP on track FX. Didn't try it yet on Adjustment Events. please try to reproduce these steps. please guide me if i am doing
Video
10 answers, most recent on 8/20/2025
Vegas Pro 22, Tiles and Text clip, text is now dark
Using Vegas Pro 22 (Build 250), on a Tiles and Text clip (track 1), the text is now dark and used to be white. It might be the background color affecting it. I just don't know. Where this is happening, all the Tiles and Clip are on track 1. A song
Video
9 answers, most recent on 3/23/2025
[Solved] video and audio "ungrouped" then moving video on track
I don't know what to search to find a solution for this strange behaivour that I'm experiencing and I really don't want. Audio and video seems ungrouped when I move, ALL videos on timeline. See video. What can I do to restore the normality? Thanks.
Video
6 answers, most recent on 4/19/2025
[Solved] Envelope points no longer being added
When a region is selected and the envelope is dragged (up/down) the four transition points are no longer being added in the current build (248) of VP-22. This behavior occurs with all projects, video and audio file types, tracks, buses and Fx
Video
13 answers, most recent on 8/4/2025
RE: Using Mocha Mesh tracking results in Vegas Pro 22
MikeS, had a go but no success. I had a bit of trouble understanding some of your instructions:- "Basically, make the track you want to insert the compositing parent of the track you want to insert into. Now select Custom as the Compositing Mode for
Video
9 answers, most recent on 7/4/2025
RE: [Solved] Select entire track without going to beginning
This I didn't understand "When you click with the mouse, left click & hold, then right click will give you different lasso options". I wan't clear where to click. @JanVanBekkum If you click & hold the left mouse button you get the regular
Video
6 answers, most recent on 3/20/2025
[Solved] adding text to video timeline
Hi. Another quick question on V22. Adding text has always been the same format for me since forever. Would add extra video track above first one and add Media Generator Text there but on V22 doesn't show. Thought maybe behind video but not the case.
Video
9 answers, most recent on 7/4/2025
RE: Select entire track without going to beginning
That script will select all events on all tracks. If you want only the selected tracks, make this modification: foreach (Track myTrack in myVegas.Project.Tracks) { if (myTrack.Selected) {
Scripting
10 answers, most recent on 9/3/2025
RE: Dockable Window that Adds Keyframes - Cannot Access Track Motion
Additional to this: Does anyone know is it possible to access track motion keyframes on an adjustment track?
Scripting
10 answers, most recent on 9/3/2025
RE: Dockable Window that Adds Keyframes - Cannot Access Track Motion
Additional to this: Does anyone know is it possible to access track motion keyframes on an adjustment track? @Phil_P VideoAdjustmentTrack inherits from VideoTrack, and its Track Motion and other properties should work just like VideoTrack.
Audio
9 answers, most recent on 3/27/2025
[Solved] is there any way i can turn down the preview volume?
so i recorded a video with my microphone but when i jump into vegas pro, it's too loud. i want to turn down the volume without it effecting my audio tracks. i could just turn the volume down via windows volume but that's just really annoying if i
Video
12 answers, most recent on 5/23/2025
RE: Unable to get FSD in preview or External monitor setting
@wilco-n when you move the clip to another track is solving the issue than probably the track motion setting of the issue track is not default. BTW the settings you showed are from the audio track.
Audio
7 answers, most recent on 6/30/2025
RE: HELP Requested: Why is my Track AudioFX getting PRE-fade levels?
@RedRob-CandlelightProdctns It certainly appears the track FX take pre fader from the track. 'Help' doesn't offer any way to change that. When wiggling just the track fader, there is no change to the input level seen in the compressor. Volume
Video
13 answers, most recent on 8/4/2025
RE: Using Mocha Mesh tracking results in Vegas Pro 22
Mocha Pro SAL bundles Mocha Pro OFX, which can import the tracking data from SAL (Mocha Vegas does not support many advanced features, such as mesh tracking). But then you might as well do the tracking in Vegas using the OFX
Video
3 answers, most recent on 6/28/2025
RE: Moving Face Cam
If you are trying to replicate the vertical 9:16 image as shown in the example image above, you will first need to go to File/Properties in Vegas Pro and in the Templates field select a 9:16 (or code it manually using the other fields. Then in the
Scripting
10 answers, most recent on 9/3/2025
RE: Dockable Window that Adds Keyframes - Cannot Access Track Motion
OK thanks I have it working now placing KFs in the adjustment track.However, the KFs are placed in the adjustment track's normal track motion area. I can find no way to access the "Parent Motion" area using the API. I really wanted to place the KFs
Scripting
10 answers, most recent on 9/3/2025
RE: Dockable Window that Adds Keyframes - Cannot Access Track Motion
Here is the error. The track is just a normal video track. Nothing special. And I can manually open Track Motion no issues and my old script (with no dockable window) works fine.
Scripting
6 answers, most recent on 9/6/2025
RE: Adding VideoFX from a script in Vegas 22
@jetdv Edward, about those questions....... I wrote this script in order to work towards adding an effect to a single video event selected on the timeline. I am finding the strict capitalisation of C# a major PITA after the simplicity of VB! I
Video
9 answers, most recent on 7/4/2025
RE: Select entire track without going to beginning
That script will select all events on all tracks. If you want only the selected tracks, make this modification: @jetdv Your the boss on this so I can't really disagree but .... no, .. In this vid I select just a single video track (I normally use
Audio
7 answers, most recent on 9/3/2025
RE: Missing Mono Audio Option
@Irimia-CorneliuIonut When I have a stereo source-track that I need in mono, I usually use Render To New Track in main menu Tools and choose a mono audio preset in wav, wav64, or flac. If I record the track myself in Vegas, I record it mono to start
Previous page
1
2
3
4
…
19
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
of 19
Next page
2