automatically adding up before ©

Discussion of Photoshop Scripting, Photoshop Actions and Photoshop Automation in General

Moderators: Tom, Kukurykus

radheesh

 automatically adding up before ©

Post by radheesh »

Hi,


When I try to add the Copyright Notice I am getting "Â" automatically added up before the "©".

The Code I am using to do this is as given below...

app.activeDocument.info.copyrighted = CopyrightedType.COPYRIGHTEDWORK
app.activeDocument.info.copyrightNotice = "©test"

Please suggest any solution to avoid "Â"



Regards
Radheesh

Professional AI Audio Generation within Adobe Premiere Pro - Download Free Plugin here

Paul MR

 automatically adding up before ©

Post by Paul MR »

You could try ...

Code: Select allapp.activeDocument.info.copyrightNotice = "\xa9 test";
radheesh

 automatically adding up before ©

Post by radheesh »

Thanks Paul,


It worked...


Regards
Radheesh