I want to be able to specify what text I want within the script.
Is there a way to edit text without adding a preset?
Here is my code so far, I am only able to use a preset in it.
PlugInNode generator = myVegas.Generators.GetChildByName("Sony Titles & Text");
Media media = new Media(generator, "(Default)");
MediaStream stream = media.Streams[0];
VideoEvent newEvent = new VideoEvent(myVegas.Transport.CursorPosition, Timecode.FromSeconds(2));
myVegas.Project.Tracks[0].Events.Add(newEvent);
Take take = new Take(stream);
newEvent.Takes.Add(take);