Hi All,
The Markers created from script is not able to assign the Name and Comments to the marker in Premiere pro 2018,
This is working fine in premiere pro 2017. Markers are created, but no name and comments
Here is the sample code from github
if (projectItem.type == ProjectItemType.CLIP ||
projectItem.type == ProjectItemType.FILE) {
markers = projectItem.getMarkers();
if (markers) {
var num_markers = markers.numMarkers;
var new_marker = markers.createMarker(1.345);
var guid = new_marker.guid; // new in 11.1
new_marker.name = 'Marker created by PProPanel.';
new_marker.comments = 'Here are some comments, inserted by PProPanel.';
new_marker.end = 2.6789;
}
}
Anyone else facing the same problem?
Thanks and Regards,
Anoop NR