Bart
My feedback
5 results found
-
9 votes
An error occurred while saving the comment An error occurred while saving the comment
Bart
commented
Greg's script didn't work for me, so I modified chatGPT output, and this worked for me (attachement didn't work, so I'm pasting), it's only looping through linked graphics. Hope it works for you too.
This scripte deletes ALL alt texts, not only AI generated -- please check if this is what you need.
```
var doc = app.activeDocument
var links = doc.linksfor (var i = 0; i < links.length; i++) {
var frame = links[i].parent.parent // Link -> Graphic -> Frame
var opts = frame.objectExportOptionsif (
opts.altTextSourceType == SourceType.SOURCE_CUSTOM // checks if custom text is selected option
) {
opts.customAltText = "" // sets custom text to empty string
opts.altTextSourceType = SourceType.SOURCE_XML_STRUCTURE // returns alt text option back to default
}
}
```
Bart
supported this idea
·
-
80 votes
Hi all,
Thanks for the detailed feedback on this thread. Reopening it, because we're still actively working on the issue. A few updates:
Relinking: the case where manually entered alt text was overwritten by generated alt text on relink was fixed in 21.4. If you're still seeing manual alt text get overwritten after relinking, reply here with a sample file and your InDesign version and we'll investigate directly.
Remove all generated alt text: an option to remove all generated alt text from a document in a single action is on the way.
We hear the wider feedback here too, and we're keeping this open while we work through it.
Best regards,
Sunny
Bart
supported this idea
·
-
24 votes
Bart
supported this idea
·
-
15 votes
Bart
supported this idea
·
-
69 votes
Bart
supported this idea
·
@sasha: Haven't tested it, but, according to release notes, version 21.5 added this function:
https://helpx.adobe.com/indesign/desktop/whats-new/release-notes.html
Also check this thread about issues for that function:
https://community.adobe.com/questions-671/indesign-21-5-remove-all-ai-generated-alt-text-fails-to-detect-and-remove-existing-ai-generated-alt-text-1636668