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
 automatically adding up before ©
 automatically adding up before ©
You could try ...
Code: Select allapp.activeDocument.info.copyrightNotice = "\xa9 test";
Code: Select allapp.activeDocument.info.copyrightNotice = "\xa9 test";