Skip to content

Bart

My feedback

5 results found

  1. 9 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Bart commented  · 

    @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

    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.links

    for (var i = 0; i < links.length; i++) {
    var frame = links[i].parent.parent // Link -> Graphic -> Frame
    var opts = frame.objectExportOptions

    if (
    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  · 
  2. 80 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    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  · 
  3. 24 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Bart supported this idea  · 
  4. 15 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Bart supported this idea  · 
  5. 69 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Bart supported this idea  ·