Copy link to clipboard
Copied
I have seen other posts on here sort of relating to my question, but have not managed to solve my problem.
I simply neeed to change all instances of ® to superscript within mystory.
This is what I have:
app.findTextPreferences.findWhat = "®";
app.changeTextPreferences.changeTo = "®",{position:Position.SUPERSCRIPT};
myRSearch = myStory.changeText();
Hi Roy,
In findWhat replace "®" with "^r".
Checkout below working code:
app.findTextPreferences.findWhat = "^r";
app.changeTextPreferences.changeTo = "®";
app.changeTextPreferences.position = Position.SUPERSCRIPT;
myRSearch = myStory.changeText();
Copy link to clipboard
Copied
Hi Roy,
In findWhat replace "®" with "^r".
Checkout below working code:
app.findTextPreferences.findWhat = "^r";
app.changeTextPreferences.changeTo = "®";
app.changeTextPreferences.position = Position.SUPERSCRIPT;
myRSearch = myStory.changeText();
Copy link to clipboard
Copied
Thanks Shonky. Just the job. Perfect.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now