Adobe InDesign: Bugs
When filing a new bug, please provide:
- Version of Adobe InDesign, InCopy or InDesign Server
- Steps to reproduce the issues
- Expected result
- Actual result
- Test file, screenshot, video or GIF capturing the issue (optional)
61 results found
-
InDesign: Insert authors document's metadata without quotes
Version
Adobe InDesign up to 2023.Steps to reproduce the issues
Setting the active document’smetadataPreferences.authorwith multiple authors, separated by comma or semicolon in a string via extendscript:
app.activeDocument.metadataPreferences.author = "Elric Wade; Anne Emu; Sophie Kumpir";
Expected result
The authors should be placed into the "Author" metadata field, separated by comma or semicolon.Actual result
The authors are placed into the "Author" metadata field, but all set within double quotes, so they appear to be one author, not multiple authors.Test file, screenshot, video or GIF capturing the issue (optional)
See attached screenshot.Please make it possible to add…
2 votes -
matchPreviewBackgroundToThemeColor resets pasteboardMargins to [0,0]
In a script, app.activeDocument.pasteboardPreferences.matchPreviewBackgroundToThemeColor to 1 causes app.activeDocument.pasteboardPreferences.pasteboardMargins to reset to [0,0].
Furthermore, setting the pasteboardMargins doesn't work after setting app.activeDocument.pasteboardPreferences.matchPreviewBackgroundToThemeColor to 1.
(While matchPreviewBackgroundToThemeColor is set to 0 everything works fine.)
2 votes -
Cell object is null!
I get the third merged cell as null. Why is that?
Please to get the error First create new document and table 3 by 3 and merge and select cells like screenshot. Execute the script.
var sel = app.selection[0];
var queuedCells = getQueuedCells ([sel]);
function getQueuedCells (deepCells) {
var queuedCells = new Array;
if (deepCells.length > 0) {
targetIndex = null;
targetIndex = deepCells[0].parentRow.index;
for (var dcs = 0; dcs < deepCells.length; dcs++) {
for (var dcc = 0; dcc < deepCells[dcs].cells.length; dcc++) {
alert ("(deepCells[" + dcs + "].cells[" + dcc + "] != null) " + (deepCells[dcs].cells[dcc] !=…2 votes -
Convert Footnotes and Endnotes problem and a bonus scripting problem with special characters
Indesign 17 on MacOs 12.3.1
Convert Footnotes and Endnotes does not work when the footnotes does not have a footnote number.
I have an Indesign document with footnotes.
In each footnote I have removed the footnote number and the following tab character. (~F\t)I need these footnotes to be endnotes but this is not possible with the command "Convert Footnotes and Endnotes".
Without the footnote number in the footnotes the command/script does not recognise the footnotes as being footnotes.
They are however still footnotes and I can continue working with them as footnotes and also address them via scripting but…
2 votes -
anchoredObjectSettings SpaceBelow is missing in the DOM
The space below is missing for anchored Object Settings
I can only find this:
anchoredObjectSettings.anchorSpaceAbove(INDD17.1 + Javascript)
2 votes -
InDesign does not load type library on upgrade
Similar to the 2020 release (see https://indesign.uservoice.com/forums/601180-adobe-indesign-bugs/suggestions/41072476-type-library-is-not-automatically-created-by-cc202), InDesign 2022 does not install the type library in upgrade. Please include this with the installation, as this will cause errors for many users.
Error message: Error: Unable to load Adobe InDesign 2022 Type Library (Version 1.0).
2 votes -
script panel blank
Nenhum Script aparece no painel. Todos sumiram, e todos os scripts estão na pasta do ID.
2 votes -
export layers to photoshop
would be so nice to have a way to export inDesign layers to Photoshop file. (would save hundreds of hours to rebuild all these files!)
2 votes -
FindChangeByList not working
1 The script stopped working. Doesn’t do anything.
2 Please let the updater copy the FindChangeList.txt from the previous version. In most cases it’s part of a workflow that breaks with each update.
2 votes -
[ID-4273762] Critical bug — Dropdown / <select> / sp-picker not working in UXP plugin under InDesign 2025 (Win & Mac)
I'm contacting you about a recurring bug I've encountered—and that several other developers have reported—since the Adobe InDesign 2025 update (versions 20.4, 20.4.1, 20.5).
🔹 Problem Description
In a plugin using Adobe UXP (UI HTML or Spectrum), the dropdown elements
<select>—or<sp-picker>—no longer respond to clicks: the border may change color, but the list doesn't open, and it's impossible to select an item.Even when using minimal HTML code or testing from UXP Developer Tools (Playground), the problem persists.
This bug seems to affect several environments (Windows 11, different versions of InDesign, and possibly macOS as well, according…
1 vote -
Error Number: 30619
When opening InDesign GA 21.0 I am now getting this pop message. I do not get the same thing in Beta version
1 voteHi,
As confirmed by the user, the issue is resolved by removing second scrollframe folder
—
Adobe InDesign Team
-
Title: `afterSelectionChanged` triggers "The object no longer exists" error even when a valid object is selected Description: When using th
Title:
afterSelectionChangedtriggers "The object no longer exists" error even when a valid object is selectedDescription:
When using the methodaddEventListener("afterSelectionChanged", ...)in an ExtendScript script for InDesign, the application consistently throws the following error:"The requested action could not be completed because the object no longer exists."
This occurs even when:
- A singleTextFrameis manually selected,
- The object is valid (isValid === true),
- The code is wrapped in atry/catch,
- AnidleTaskis used to defer execution.Steps to Reproduce:
1. Open an InDesign document.
2. Add the following script:…
1 vote -
[ID-4260022][ExtendScript] Folder.prototype.create fails on macOS/InDesign 20.1
Something has broken in ExtendScript's Folder.prototype.create method on MacOS and Indesign 20.1.
To test yourself, save the following script to your disk, and run it in Indesign.
(function () { var scriptFolder = File($.fileName).parent; var deepFolder = Folder(scriptFolder + '/A/B/C/D'); if (!deepFolder.exists) deepFolder.create(); if (deepFolder.exists) { alert('Folder created successfully.'); } else { alert('Failed to create folder "' + deepFolder.fsName + '".'); } })();Expected Result:
Prior to this bug, this script would successfully create the folder and subfolders, in the same folder as the script is saved.Actual Result:
Each time the script is run, it creates only one more…1 voteFix for this issue is available in the latest InDesign Release version 20.2, available via Adobe CCD app.
--
Adobe InDesign team
-
Dropshadow > Size is limited to 0-144 points within scripting but you can enter higher numbers manually 0-1000 points
My understanding is indesign dropshadow effect needs to be updated for the option: size within the dropshadow panel to be able to accept 0 - 1000 points for scripts. You can input higher numbers within the size by doing it manually but not with scripts for whatever reason. It will only accepts 0-144 point or 2 inches within the code.
- Indesign CC 2025
- Run the attached script a 100 in height image and you'll get the error.
- On the dropshadow applied to have the distance 5.0 in and size 5.0
- Distance: 5.0 in and Size: 0.0694 in
- Script attached.
I…
1 vote -
do script bug in indesign 2025?
I have a script (extend script) file that has worked flawlessly in every version of InDesign for the last 15 years or so. Bercause it is used in semi-automated workflow I trigger it from an AppleScript, using the "do script" command.
InDesign 2025 suddenly incorrectly reports a syntax error "expecting ;"
The javascript that gets called works as expected, without warnings when run from the script panel.
This is highly problematic for me, since triggering the script from applescript is an essential part of my workflow.
Adobe are welcome to contact me for more information
1 vote -
Scripting Windows: Add page item after add swatch will delete added swatch
In ExtendScript on Windows only, adding any InDesign page item after adding a color will delete the color:
var doc = app.documents.add();
// adds black CMYK color
sw = doc.colors.add();
// this line will delete the color that was just added on Windows only
var rect = doc.rectangles.add();
alert(sw.isValid);
This actually manifested for me as a crash bug. This script crashes InDesign 2024 Windows:
var doc = app.documents.add(); var sw = doc.colors.add(); doc.rectangles.add({fillColor: sw});This crashes because the last line deletes the swatch when it adds the rectangle, then tries to use the swatch.
1 vote -
PlaceGun does not have reference to idms textframe
Hi,
I'm trying to place a textframe from an idms file into an indesign document. The actual loadPlaceGun() operation seems to work fine as I'm able to paste the textframe on the page. However, I also want to have a reference to that textframe. I was trying to accomplish this by using
placeGun.pageItems.everyItem().getElements(), but it doesn't return any elements. I find this odd because I'm using the same method when inserting images and it works fine, so I'm not sure what the issue is. Link with pictures here: https://community.adobe.com/t5/indesign-discussions/placegun-does-not-have-reference-to-idms-textframe/m-p/14530065#M568624
1 vote -
hyperlinkTextSources.add thrown Errornumber 79111 since InDesign 2024
When creating hyperlinks, a hyperlink is automatically created via a text object. The script ran until InDesign 2023.
The text objects are returned by a search.app.activeDocument.findGrep();
The hyperlink was created with the steps
hyperlinkTextSources.add
hyperlinkURLDestinations.add
hyperlinks.addThe first hyperlink is created as expected. In InDesign 2024, error 79111 "The selected object is already being used by another hyperlink" is thrown after the first hyperlink created (hyperlinkTextSources.add).
1 vote -
action feature
hello, Is there an action feature in InDesign, like Photoshop?
Is there a script that records the work steps and then applies the steps automatically when clicked?1 vote -
Insertion point with more than one text style range
An insertion point can have more than one TextStyleRange, e.g.
InsertionPoint.textStyleRanges.length // Result: 779
These are the TextStyleRanges of the entire text (of the story) that follows the insertion point.
Expected is one TextStyleRange for one InsertionPoint.
InDesign 18.5.1, MacOS, UXP and ExtendScript
1 vote
- Don't see your idea?