Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
1

Image metadata / "Copyright Info URL" field uneditable

Community Expert ,
May 27, 2025 May 27, 2025

Hi

I am having a hard time adding a creator URL to the "Copyright Info URL" field in Photoshop's image info panel 

see screenshot below

I can select the"Copyright Info URL" field, but I can neither paste into it nor type into the field directly 

Screenshot 2025-05-27 at 12.04.43.jpg

 

The field doesn’t seem to exist in Bridge it seems, so I can't edit there 

 

any help appreciated

 

many thanks 

 

neil barstow colourmanagement - adobe forum volunteer,

 

 

TOPICS
macOS
2.0K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 2 Correct answers

Community Expert , May 27, 2025 May 27, 2025

That's curious... Additionally, Bridge and Photoshop should be the same. As a workaround, you can try this script.

 

#target photoshop

// Create dialog window
var dlg = new Window('dialog', 'Set Copyright Info URL');
dlg.orientation = 'column';
dlg.alignChildren = 'fill';

// Group for label and edittext
var urlGroup = dlg.add('group');
urlGroup.orientation = 'row';
urlGroup.add('statictext', undefined, 'URL:');
var urlInput = urlGroup.add('edittext', undefined, '');
urlInput.characters = 30;

...
Translate
Community Expert , May 27, 2025 May 27, 2025

Hi Neil,

You can turn on the ability to enter 'Copyright Info URL' in Bridge by going to Bridge > Preferences > Metadata and checking IPTC (IIM,Legacy)

 

I don't know why it is greyed in your example from Photoshop though.

Dave

Translate
Adobe
Community Expert ,
May 27, 2025 May 27, 2025

That's curious... Additionally, Bridge and Photoshop should be the same. As a workaround, you can try this script.

 

#target photoshop

// Create dialog window
var dlg = new Window('dialog', 'Set Copyright Info URL');
dlg.orientation = 'column';
dlg.alignChildren = 'fill';

// Group for label and edittext
var urlGroup = dlg.add('group');
urlGroup.orientation = 'row';
urlGroup.add('statictext', undefined, 'URL:');
var urlInput = urlGroup.add('edittext', undefined, '');
urlInput.characters = 30;

// OK and Cancel buttons
var btnGroup = dlg.add('group');
btnGroup.alignment = 'right';
var cancelBtn = btnGroup.add('button', undefined, 'Cancel');
var okBtn = btnGroup.add('button', undefined, 'OK');

okBtn.onClick = function () {
    var url = urlInput.text;
    dlg.close();
    set(url);
};

cancelBtn.onClick = function () {
    dlg.close();
};

dlg.center();
dlg.show();

function set(URL) {
    var s2t = function (s) {
        return app.stringIDToTypeID(s);
    };
    var descriptor = new ActionDescriptor();
    var descriptor2 = new ActionDescriptor();
    var reference = new ActionReference();
    reference.putProperty(s2t("property"), s2t("fileInfo"));
    reference.putEnumerated(s2t("document"), s2t("ordinal"), s2t("targetEnum"));
    descriptor.putReference(s2t("null"), reference);
    descriptor2.putString(s2t("URL"), URL);
    descriptor.putObject(s2t("to"), s2t("fileInfo"), descriptor2);
    executeAction(s2t("set"), descriptor, DialogModes.NO);
}

 

https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 27, 2025 May 27, 2025

@Stephen Marsh amazing of you, thanks that worked, I tried copy/pasting it into the AppleScript editor and compiling,

Screenshot 2025-05-27 at 16.00.46.jpg

but got an error, then followed your useful guide and saved it as txt, changed the suffix and put it in Photoshop's scripts folder 

 

 

neil barstow colourmanagement - adobe forum volunteer,

 

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 27, 2025 May 27, 2025

Hi Neil,

You can turn on the ability to enter 'Copyright Info URL' in Bridge by going to Bridge > Preferences > Metadata and checking IPTC (IIM,Legacy)

 

I don't know why it is greyed in your example from Photoshop though.

Dave

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 27, 2025 May 27, 2025

@davescm thanks lots, that worked 

 

Neil B

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
May 27, 2025 May 27, 2025

Reset your prefs, the default answer to 99% of issues. LOL

Running Ps v26.7 under Sequoia 15.5, I was able to paste the URL of this post into the Copyright Info URL field, then click the "goto" arrow (yellow oval) to navigate to the post.

 

Larry
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 27, 2025 May 27, 2025
LATEST

@LAMY2017 Oh dear it's usually me telling users to go through the tedious process to throughly reset Photoshop preferences. Thanks for testing too 
I can select that field but not paste ot type into it in Photoshop 

I found a workaround in the meantime, @Stephen Marsh  script does it and @davescm advice on Bridge settings allows access too.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines