VEGAS Creative Software Community
The Vegas Creative Software Support Community – Find help here
  • Forum
  • Tutorials
  • Support New
  • Sign in / register
  • Search ...
  • Help
All Forum 67k Tutorials User
Options
Any time
  • Any time
  • Last 24 hours
  • Last week
  • Last month
  • Last six month
  • Last year
  • Scripting
    23 answers, most recent on 12/13/2024
    [Solved] Is this a Bug? Script that launches adjustment event on Vegas Pro 22.
    Is this a Bug? The script bellow works on Vegas Pro 21 and does not work on Vegas Pro 22. But, if i add manually, menu, insert, then the adjustment event works properly on Vegas Pro 22. using ScriptPortal.Vegas; namespace
  • 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
    7 answers, most recent on 9/20/2025
    RE: Time spacing between video clips
    @robert-weitkamp It's in the picture Tools - Scripting - EvenlySpaceEvents_within_region. I thin it's a native Vegas script as I can't remember adding it but here it is if it's not there. /**  *     Program: EvenlySpaceEvents.cs  *
  • Scripting
    12 answers, most recent on 11/1/2025
    RE: Can VEGAS have a script for One Click 3D Compositing Effect?
    1. What's it not doing? It is adding keyframes to the parent track but on its track motion level not at parent track level. 2. Is it at least adjusting the Parent Track Motion now? No sir. You can check this clip for more clarity. Thankyou sir.
  • Video
    One answer, on 11/17/2024
    RE: [Solved] Issue with Timeline behavior while adding events.
    That's because you're in full timeline view, just zoom in one step and that full timeline view behaviour is gone (one step with the mouse wheel). One extra tip: instead of dragging events into the timeline, disable in preferences the option "double
  • Video
    10 answers, most recent on 10/30/2025
    RE: How to ungroup the audio file of a video
    I tried the expected "select both, right click, Track Group>Ungroup Selected Tracks" but Ungroup Selected Tracks is grayed out. I tried selecting and ungrouping, but Ungroup is grayed out. @Al_Korzonas I think you haven't understood the
  • Scripting
    7 answers, most recent on 7/29/2024
    [Solved] Reverse Pan/Crop Keyframes Script
    I am attempting to create a script for Vegas Pro that reverses the sequence of keyframes in the Event Pan/Crop. However, I am encountering errors in my script. Specifically, I am receiving the error "Object reference is required for the non-static
  • 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
    19 answers, most recent on 9/7/2024
    RE: [Solved] Create a script that lauch video stabilization plugin?
    @Thiago_Sase, Give this a try... using System; using System.Collections.Generic; using System.Collections; using System.IO; using System.Text; using System.Windows.Forms; using System.Globalization; using System.Drawing; using
  • 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.
  • 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
    3 answers, most recent on 2/4/2024
    [Solved] Where are minimize/maximize track buttons?
    I like this feature visible as a header on a track. But in Vegas 21 we don't have this. We don't have and event can't add. I mean that things: https://imgur.com/BYPlQy8 You can also see it here: https://imgur.com/x1rVL8r In "add custom buttons..."
  • Video
    3 answers, most recent on 7/18/2024
    [Solved] Must Needed Feature In Future Related To Adjustment Events
    I am recently working on a subtitle project on a short video. i notice and get and idea of a new feature which if come can give so much flexibility to users. Look at this image my subtitles are BLACK and my BG is WHITE. Now i want to reverse these
  • Scripting
    12 answers, most recent on 11/1/2025
    RE: Can VEGAS have a script for One Click 3D Compositing Effect?
    1. What's it not doing? It is adding keyframes to the parent track but on its track motion level not at parent track level. 2. Is it at least adjusting the Parent Track Motion now? No sir. You can check this clip for more clarity. Thankyou
  • Scripting
    12 answers, most recent on 11/1/2025
    RE: Can VEGAS have a script for One Click 3D Compositing Effect?
    @iEmby, Using the changes I sent you, this is what I got: Parent Track Motion was changed but the individual Track Motion on each track was not. If I switch back to your original code before I gave you the changes, I get exactly what you displayed.
  • Scripting
    3 answers, most recent on 8/22/2023
    [Solved] Move an event from one track to another
    I'd like to write a script that lines up some clips that are on multiple tracks. But I am stuck on moving a clip (event) from one track to another. Does anyone have an example of how this is done?
  • Audio
    18 answers, most recent on 7/4/2024
    [Solved] 5.1 audio importing as all mono instead of normal duel stereo duel mon
    So normally when I import a 5.1 video it has two stereo tracks and two mono. But for some reason ALL of the tracks are coming out as mono. Normally this happens when in the preferences I have it set to "import stereo as duel mono". But I don't. You
  • Video
    10 answers, most recent on 6/21/2023
    RE: [Solved] Vegas PRO - Confused with Overlay Compositing Mode
    What you are trying to do is possible with Vegas but not straight forward. 3 tracks: 1/track 1 your overlay (i used a white media generator). 2/ Track 2, your footage, track must be child of track 1 3/ Track 3, duplicate your footage. Use cookie
  • Scripting
    27 answers, most recent on 2/9/2024
    RE: [Solved] 📝⚙️(Script) Duplicate an event to a new track.
    using System; using System.Collections.Generic; using System.Collections; using System.IO; using System.Text; using System.Windows.Forms; using System.Globalization; using System.Drawing; using System.Runtime; using System.Xml; using
  • Scripting
    7 answers, most recent on 5/1/2025
    [Solved] How to change Audio Effect Parameter?
    @jetdv Hi Sir, please, could you guide me in this task; This is the way I add the Volume audio effect to the audio event;  public void AddVolume()         {             try             {                 PlugInNode effects =
  • Video
    3 answers, most recent on 1/13/2024
    RE: [Solved] Editing YouTube and Tiktok videos in the same project
    Does anyone know of way to do this within Vegas? Yes, but it involves having 2 separate .veg projects: one for YT and the other for TikTok. ... and then changing the project size before rendering to 1020x1980 for TikTok. But you'll also need to
  • Audio
    2 answers, most recent on 7/17/2023
    RE: [Solved] Volume Slider and 2 audio tracks
    Have you got multiple tracks highlighted? If you have, any volume change that you make in the audio track header will also occur on all the other highlighted audio tracks.
  • Video
    2 answers, most recent on 1/13/2025
    [Solved] I'm experiencing an issue with my 30-hour video project in -- Vegas.
    Dear -- Vegas Support Team, I'm experiencing an issue with my 30-hour video project in -- Vegas. The audio track only plays for the first 5 hours, and then it cuts off. Could you please assist me in resolving this problem? Thank you.P.s
  • Scripting
    2 answers, most recent on 1/8/2025
    [Solved] copying over picture in picture information
    im trying to make it easier for myself i have 2 scripts i am working on and i am not good at coding and i am running into error after error i wanted to be able to use a script to take the information from the earliest event on the timeline selected
Previous page
1 … 7 8 9 … 42
of 42
Next page
Follow us on
  • Community rules
  • Imprint
  • Privacy policy
  • Terms and conditions
United States
  • Additional offers
  • VEGAS Forum
  • MAGIX Magazine
(C) 2007 - 2025 MAGIX Software GmbH