Anyone know how to identify a render template marked as a Favorite? I use a minimally modified Batch Render script based on the default one supplied with Vegas but it doesn't show which ones I have marked in Vegas as Favorites. I can throw stars in front of the displayed names by hard-wiring info from the template names into the stock script like this:
//Stock Code: String templateName = template.Name;
//Replacement Code to add * between check-box and template names if 32/64 is in the name String templateName = template.Name; if ( templateName.Contains("32/64")) { templateName = " * " + templateName; } else { templateName = " " + templateName; }