Skip to main content

2 replies

Adobe Employee
March 19, 2025

Hi, 
 
The fix for this issue is available in the latest update of Adobe Bridge (15.0.3). 
We would love for you to try it out and share your feedback. 
 
Regards 
Bridge team 

Participating Frequently
April 9, 2025

Since two weeeks, Bridge crashes upon starting. I can't even access the preferences since the program closes immediately. I de-installed it and reinstalled it, but to no avail. The version is 15.0.3 and I am using OS Sequoia 15.3.2

 

Legend
September 4, 2024

This code works in Bridge 12 but is broken in Bridge 13, 14, and 15 beta (obviously with a corresponding "2024" metadata template installed.)

try{
	var sels = app.document.selections;
	app.synchronousMode = true;
	var fileMeta = sels[0].metadata; //new metadata object
	fileMeta.applyMetadataTemplate('2024', 'replace');
	app.synchronousMode = false;
	}
catch(e){
	Window.alert(e + e.line);
}