Comments

SonyPJM wrote on 4/25/2005, 7:58 AM
Media objects have a ReplaceWith method which takes a replacement media object as its argument... make sure the replacement media is the same type as the original. For example:


var m1 = Vegas.Project.MediaPool["C:\\m1.avi"];
var m2 = new Media("C:\\m2.avi");
m1.ReplaceWith(m2);