This tutorial examines the use of the IsGraphicValid Method in order for (Grass Valley) automation solutions to validate data held externally.
Implementing the IsGraphicValid Method.
Chapter 1: Adding an IsGraphicValid Method to a template
5 minutes
All users
if (File.exists? _imageFileName)
self.setOutcome(true);
else
self.logMessage("Image does not exist " + _imageFileName);
self.setOutcome(false);
end