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
19 answers, most recent on 11/27/2024
RE: [Solved] Alpha channel color
The alpha channel "color" is 0-0-0, or "nothing." Alpha "adopts" the color of the bottom most layer. "If" there is no bottom nonalpha layer, the "color" obviously is 0-0-0, or "nothing." The common name for that is called "black." Therefore, if you
Video
One answer, on 3/12/2025
[Solved] PluralEyes error "Failed to open... Check the PluralEyes 4 log file.."
Trying to pluraleyes a Vegas22 project, I'm getting this error: Deleted the P4P file and recreated -- no difference. Renamed my tracks to remove any slashes and ampersands i case that was causing issue (after searching online) -- no
Scripting
2 answers, most recent on 10/7/2024
[Solved] Learning how to convert a script to Custom Command
@jetdv Hello, Sir, please, if possible, could you help me? I'm watching your tutorials' series of Build a Custom Command, and I'm trying to convert my scripts to a custom command. But, I'm always getting the same error; "An error occured:
Scripting
7 answers, most recent on 5/1/2025
RE: [Solved] How to change Audio Effect Parameter?
@jetdv Sir, I found a solution. I just saved the value that I needed as preset, and then I inserted in the code. public void AddVolume(Vegas vegas) { try { PlugInNode effects =
Scripting
2 answers, most recent on 7/21/2024
[Solved] Apply an Audio effect to Event
@jetdv Hello Sir, please, how can i add in the code bellow the possibility when the audio fx effect is applied, the Audio Event FX pop-up window opens automatically? using System; using System.IO; using System.Text; using
Video
One answer, on 4/29/2025
[Solved] Missing video track - VEGAS 21 (Build 315)
I recently imported a project from my computer to my laptop, and when I opened the project, all of the video was just a black screen. I still had audio, and sometimes, the video would flicker here and there, but for the most part all my media was
Video
3 answers, most recent on 6/13/2025
RE: [Solved] How to remove A B cross over thing
@Bria On the track header there is an option you can turn off. There's also an option in Preferences. Double clicking the end of an event makes this happen, personally I have this on as i find it a useful tool but I can see how it can be annoying.
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 =
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
One answer, on 3/12/2025
RE: [Solved] PluralEyes error "Failed to open... Check the PluralEyes 4 log file.."
NOTE: in this particular case, I found that un-muting a track-group that had two wave files in it -- solved the problem?! I haven't compared the .P4P files to see what changed inside of them, but that made it work, and I could repeatedly just turn
Scripting
12 answers, most recent on 1/14/2025
[Solved] help me complete a very useful script on frames and their length
I have two scripts, the first script automatically assigns all frames to 100 frames per second and slows them down by 4 times the main thing is that it automatically determines these frames on the timeline, and they do not need to be selected minus
Video
20 answers, most recent on 8/14/2024
[Solved] Drop shadow on image overlay
Why can't a simple drop shadow effect be added to image in Vegas. I tried this in Vegas 19 and 22 and adding the stock Vegas Drop Shadow (or BorisFX) effect doesn't work. Doing this in Davinci Resolves works fines (with Resolve and Boris versions)
Scripting
25 answers, most recent on 11/3/2024
RE: [Solved] Create a script that removes transitions?
@Thiago_Sase Basically, take the script that I wrote to FIND transitions and modify it to look at only selected events and then remove them. This is a quick update to that script but I have not tested it. using ScriptPortal.Vegas; namespace
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
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.
Scripting
9 answers, most recent on 8/18/2024
[Solved] NEED HELP | Freeze - Unfreeze Script
@jetdv @zzzzzz9125 hi guys.... need a little guidance from your genius mind here. its very easy for you. but i couldn't make it even with the help of ChatGPT so here what i need. there will be a selected event. when i will run this script it should
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
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) {
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
9 answers, most recent on 9/16/2024
RE: [Solved] Is there an in-timeline visual cue for slow motion clips?
@jetdv @davebo You don't need to rename the file, just rename the active take name, unless that's what you meant. After experimenting, I was able to add a suffix to the active take name consisting of the string such as "fps:59.940_". A more exact
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
7 answers, most recent on 8/1/2024
[Solved] Automatic script
For more efficient editing, I've created several scripts to have a "shortcut" to the effects.(example:This example is the one that doesn't
Scripting
5 answers, most recent on 9/1/2024
RE: [Solved] SCRIPT HELP PLEASE !! Close Gaps but keep Grouped Events in Groups.
@iEmby See if this script works on that case; using System; using System.Collections.Generic; using ScriptPortal.Vegas; namespace Test_Script { public class Class1 { public Vegas myVegas; public void Main(Vegas
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.
Previous page
1
…
3
4
5
…
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
4