Search found 3 matches

by lumigraphics
Thu Aug 13, 2020 1:50 pm
Forum: Adobe Bridge Scripting: General Discussion
Topic: Utility Script Pack 3.0 for Bridge
Replies: 0
Views: 4880

Utility Script Pack 3.0 for Bridge

Just wanted to announce that my Utility Script Pack for Bridge is about to be updated to version 3.0. The older version 2.1 is currently on Adobe Exchange. I've made numerous changes and additions, including: Backup Settings - Backups up and restores Favorites, Labels, and Keywords DNG Convert - fro...
by lumigraphics
Wed Aug 12, 2020 8:34 pm
Forum: Adobe Bridge Scripts
Topic: Save newfile readable by jsx
Replies: 4
Views: 7059

Re: Save newfile readable by jsx

You can either write your own text file (plain text or XML) or use the built-in Bridge preferences feature. Its in the SDK.

var a = 5;
app.preferences.myValue = a;
alert(app.preferences.myValue.toString());
by lumigraphics
Fri Jan 12, 2018 2:15 pm
Forum: Adobe Bridge Scripting: General Discussion
Topic: Copying metadata from XMP sidecar files?
Replies: 2
Views: 13103

Copying metadata from XMP sidecar files?

I'm writing a replacement for the JPEG Export panel and currently getting metadata copying setup. I have it working in the testing snippet below for image formats having embedded metadata, but it doesn't copy metadata from RAW files (presumably due to the sidecar file.) Trying Adobe's Bridge CC SDK ...