Search found 3 matches
- Thu Aug 13, 2020 1:50 pm
- Forum: Adobe Bridge Scripting: General Discussion
- Topic: Utility Script Pack 3.0 for Bridge
- Replies: 0
- Views: 11792
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...
- Wed Aug 12, 2020 8:34 pm
- Forum: Adobe Bridge Scripts
- Topic: Save newfile readable by jsx
- Replies: 4
- Views: 18481
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());
var a = 5;
app.preferences.myValue = a;
alert(app.preferences.myValue.toString());
- Fri Jan 12, 2018 2:15 pm
- Forum: Adobe Bridge Scripting: General Discussion
- Topic: Copying metadata from XMP sidecar files?
- Replies: 2
- Views: 22631
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 ...