disable resample by default nataq wrote on 11/11/2008, 2:20 AM Hi all, the headline says it. I couldn´t find a way to disable resample by default. Is there a way to do it? Any input is greatly appreciated. Thank you! Back to post
Comments Rosebud wrote on 11/11/2008, 3:16 AM I don’t think we can set this properties by default. However, you can use this simple CS script to disable resample of all video Events. using System; using Sony.Vegas; public class EntryPoint { Vegas myVegas; public void FromVegas(Vegas vegas) { myVegas = vegas; foreach (Track track in myVegas.Project.Tracks) if (track.IsVideo()) foreach (VideoEvent evnt in track.Events) evnt.ResampleMode = VideoResampleMode.Disable; } } nataq wrote on 11/17/2008, 9:48 PM puh, I´m pretty late with my reply. Thanks a lot for your help. I haven´t yet used scripting, but I will try to get into that ;-). 1