Hello,
I changed the start time of my sequence to 01:00:00:00 and when I run my script to get the cti timecode it returns the timecode as if it started at 00:00:00:00. Anyone know why this is happening, is it a bug? Code below...
function returnTimecode()
{
app.enableQE();
var seq = qe.project.getActiveSequence();
if (seq != null){
alert(seq.CTI.timecode);
} else {
alert("Active Sequence required.")
}
}
returnTimecode();