You mean more? Anyway that must be bug or we don't know how to use it 😕😕
Hacked at it until I figured it out. This is NOT properly documented, thanks Bridge Team. 😐
#target bridge
if(BridgeTalk.appName == 'bridge'){
try{
if(app.document.selectionsLength > 0){ //test for selection
var a = new EditCaptureTime; //must create new object
var f = app.document.selections; //selected Thumbnails
var h = '';
var sign = '+'; //add or subtract hours
for(var j = 0; j < app.document.selectionsLength; j++){ //loop through selections
h = f[j].spec.fsName; //get full pathname
h = h.replace(/\\/g, '/'); //convert Windows paths for Extendscript
a.addFilesForECT(h); //add files
}
a.shiftBySetTime(sign, 24); //adjust time for added files
}
}
catch(e){
alert(e + ' ' + e.line);
}
}