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)
- or
No existing idea results
- ~ No ideas found ~
7021 results found
-
Persistent startup screen
When opening old ID documents frequently the startup screen hangs on the main screen. This happens specially after missing images, plug-ins an fonts warnings. Have to quit and relaunch ID...
2 votes -
AGLFN: ZWJ, ZWNJ, ZWS in PDF
Indesign is not written ZWJ (U+200D), ZWNJ (U+200C), ZWS (U+200B) with its glyph name uni200D, uni200C, uni200B respectively.
This is not helping in copying the text with ZWJ (U+200D), ZWNJ (U+200C), ZWS (U+200B) from PDF.
These non-printing characters are copied has "space" instead.
These non-printing characters in Indic scripts are part of text. With and without these characters, text can changes its meaning.
Please support these characters with AGLFN glyph names in fonts in Indesign, PDF export feature.
More info
https://github.com/adobe-type-tools/agl-aglfn/issues/1#issuecomment-323822117
2 votes -
Surface Pro 4 And Gestures
I have a new Surface Pro 4. When using Adobe applications, gestures on the touch pad (for example pinching or scrolling) either don't work or are really bugy with little control. I was told by Adobe that this is due to the detachable keyboard on the Surface Pro.
2 votes -
Multiple Bugs in CC17
Display issue 1
Random lines appeared on my screen. Baseline grid and guides were hidden as I was in Preview Mode, no explanation for these lines.Display issue 2
Text doesn’t display correctly when I apply a different Paragraph Style Sheet. (It displays the text in both the original Paragraph Style and new paragraph style on top of one another, even though the new Paragraph Style is selected). I needed to deselect and reselect another paragraph of text to rectify the issue.Dialogue box issues
Both videos show how I’m unable to select from the drop down menu in InDesign. In the first video I want to select the ‘Photoshop Path’ from the Clipping Path dialogue box, but am unable to do so.
The second video show how I want to create a PDF (via File/Export) but I cannot change the PDF settings from the drop down menu.
Needed to quit the program and restart to rectify the problem.Display issue 1
Random lines appeared on my screen. Baseline grid and guides were hidden as I was in Preview Mode, no explanation for these lines.Display issue 2
Text doesn’t display correctly when I apply a different Paragraph Style Sheet. (It displays the text in both the original Paragraph Style and new paragraph style on top of one another, even though the new Paragraph Style is selected). I needed to deselect and reselect another paragraph of text to rectify the issue.Dialogue box issues
Both videos show how I’m unable to select from the drop down menu in…2 votes -
window
Fuck You Adobe
2 votes -
The lists of entries for a cross reference is not ordered
Some panels with items (e.g. links) can be ordered by clicking the column header. Others cannot. Among these are the lists of references to choose from when inserting a cross-reference. These seem to be totally unordered. As a result, it is a pain to look for the right one (e.g. choose from a few hundred in a large document). I consider this a bug because other panels do have this ordering
2 votes -
Colour picker turns everything to blank with strokes, applies stroke
Colour picker is broken. Everything is checked, but when I use it, it turns the object picked from into blank with black stroke. When applied, it adds a black stroke. This is true of text, objects, and links. Deleting local settings changed nothing.
2 votes -
Profiles equal to the Output-Intend get lost on PDF-Export
When exporting a PDF all profiles equal to the Output-Intend (which in my case is the Document-Colorspace PSO Coated V3) get lost when exporting.
I have created a small test-file with an PSO Coated V3 Image and an ISO Coated V2 Image.
When Exporting as PDF X4 with Output-Intend Set to PSO Coated V3 the Image that IS PSO Coated V3 looses its profile and the same for the ISO Coated V2 when the Output-Intend is set to that.
This is horrible for Colormanagement. I've been in contact with "Heidelberger Druckmaschinen AG" and they suggested to report this to Adobe as a bug.
They way it is you can not differenciate between images that don't have a profile and images that already have the correct profile. As a result all images get converted again in prepress - even those that already are in the correct profile.
If you have any further questions feel free to ask and i'll help out as good as i can :)
Thanks!
When exporting a PDF all profiles equal to the Output-Intend (which in my case is the Document-Colorspace PSO Coated V3) get lost when exporting.
I have created a small test-file with an PSO Coated V3 Image and an ISO Coated V2 Image.
When Exporting as PDF X4 with Output-Intend Set to PSO Coated V3 the Image that IS PSO Coated V3 looses its profile and the same for the ISO Coated V2 when the Output-Intend is set to that.
This is horrible for Colormanagement. I've been in contact with "Heidelberger Druckmaschinen AG" and they suggested to report this to Adobe…
2 votes -
Missing color in PDF from InDesign
I have an InDesign file with a placed PSD file in it, which contains two spot colors. When I save the file as a PDF out of InDesign, only one of the two spot channels is visible.
I'm running the latest versions of InDesign, Photoshop, and Acrobat. To reproduce, open the attached InDesign file and save as a PDF. The resulting PDF should show a yellow and blue spot, but only the blue is visible. (The PDF generated during packaging also exhibits the problem.)
2 votes -
Bug Report – PDF Export from Book Produces Low-Resolution Images (InDesign 20.x+)
Product Version:
Adobe InDesign 2025 (version 20.x and later)
Operating System:macOS 15.4
Summary:Exporting a PDF directly from a book (.indb) using book.exportFile() produces a PDF with low-resolution images, even though the source links are updated and the documents contain high-resolution images. This issue started occurring in version 20.x and was not present in earlier versions.
Steps to Reproduce:Create a book (.indb) containing multiple documents with high-resolution images. Update links in the individual documents. Use book.exportFile(ExportFormat.PDF_TYPE, ...) to export the entire book as a PDF. The output PDF contains low-resolution images, noticeable especially when printing or zooming in.
Expected Result:
The exported PDF should contain images at full resolution, matching the quality of PDFs exported from individual documents using doc.exportFile().
Actual Result:PDF exported from the book contains low-resolution images, differing from PDFs exported from individual documents.
Workaround:Currently, the issue can be avoided by first merging the documents from the book into a single INDD file, updating the links, and then exporting the PDF from that merged document.
Attached Script:// Repro script for PDF export issue from Book in InDesign 20.x+
try {
// Select the book file
var indbFile = File.openDialog("Select a book file (.indb)", "*.indb");
if (!indbFile) throw "No file was selected.";// Open the book var book = app.open(indbFile); if (book.bookContents.length === 0) throw "The book contains no documents."; // Update links in each document of the book for (var i = 0; i < book.bookContents.length; i++) { var content = book.bookContents[i]; var doc = app.open(content.fullName, true); var links = doc.links; for (var j = 0; j < links.length; j++) { if (links[j].status === LinkStatus.LINK_OUT_OF_DATE || links[j].status === LinkStatus.LINK_MISSING) { links[j].update(); } } doc.save(); doc.close(SaveOptions.NO); } // Select PDF export preset (first available) if (app.pdfExportPresets.length === 0) throw "No PDF presets found."; var pdfPreset = app.pdfExportPresets[0]; // Choose folder to save PDF var outputFolder = Folder.selectDialog("Select folder to save PDF"); if (!outputFolder) throw "No folder was selected."; var outputFile = File(outputFolder + "/" + indbFile.name.replace(/\.indb$/, "") + "_export_from_book.pdf"); book.exportFile(ExportFormat.PDF_TYPE, outputFile, false, pdfPreset); alert("Export from book completed: " + outputFile.fsName); book.close(SaveOptions.NO);
} catch (e) {
alert("Error: " + e);
}Additional Notes:
The problem started with InDesign version 20.x. Exporting PDFs from individual INDD documents works correctly. Previous versions of InDesign did not exhibit this issue.
Product Version:
Adobe InDesign 2025 (version 20.x and later)
Operating System:macOS 15.4
Summary:Exporting a PDF directly from a book (.indb) using book.exportFile() produces a PDF with low-resolution images, even though the source links are updated and the documents contain high-resolution images. This issue started occurring in version 20.x and was not present in earlier versions.
Steps to Reproduce:Create a book (.indb) containing multiple documents with high-resolution images. Update links in the individual documents. Use book.exportFile(ExportFormat.PDF_TYPE, ...) to export the entire book as a PDF. The output PDF contains low-resolution images, noticeable especially when printing or zooming in.
…
1 vote -
InDesign Help redirects to Adobe Tutorials Webpage Instead of Showing Tool Location in Menus
I use InDesign a lot, but I don't always remember the location of EVERY tool. Sometimes I just forget the submenu it's in, and go to the search bar so it will show me where the tool is in the program. For some reason, in InDesign ONLY, it will instead redirect me to the Adobe Tutorials website. Often it doesn't even have a tutorial for what I'm looking for, or it takes me to a completely unrelated tutorial.
This means I either have to read through the whole tutorial and hope that there is an image of the submenu with the tool I need, or I have to google it and find another tutorial. Or, I can go through every menu and submenu one by one in indesign. Even though I have used this program for years my ADHD means I will often forget exactly where a tool is even though I use it a lot. And it's a huge, HUGE disruption because instead of instantly finding the tool, it takes me 5-15 minutes to find something that wouldn't even be an issue in any other program.
I am NOT on MacOS, so the language/region issue does not solve it for me. I'm on Windows 11. I am so, so frustrated that this small, weird bug/glitch/choice is SUCH a huge interruption and it hasn't been fixed FOR YEARS.
I use InDesign a lot, but I don't always remember the location of EVERY tool. Sometimes I just forget the submenu it's in, and go to the search bar so it will show me where the tool is in the program. For some reason, in InDesign ONLY, it will instead redirect me to the Adobe Tutorials website. Often it doesn't even have a tutorial for what I'm looking for, or it takes me to a completely unrelated tutorial.
This means I either have to read through the whole tutorial and hope that there is an image of the submenu with…
1 vote -
Color palette is gray and does not show color choices. InDesign 20.3.1
Color palette is gray and does not show color choices. InDesign 20.3.1
1 vote -
Error on app start: files required for color management missing
- InDesign (Beta) 20.3 x64 (Mainline CI #4bdfb98)
- Start the app
- App should start without error message.
- An error message pops up during start up (see screenshot). Have to click "OK" to continue.
1 vote -
Unable to type letter "g"
every time I type "g" in a textbox, the font automatically changes to a different paragraph style and the "g" does not type in the textbox
1 vote -
Auto Style not working
For the last week or so the auto style feature hasn't been working for me. I keep getting error messages.
1 vote -
InDesign newer than 20.3 and newer freezes on some documents from 19.X.X
InDesign 20.3 and 20.3.1 hang and close with an error reporting dialog when opening some documents from InDesign 19.X.X. This issue does not occur in version 20.2.
1 votePlease send the following information to santalwa@adobe.com :
- Reproducible Steps – What were you doing when InDesign froze?
- Video recording of the issue
- Is(Are) the issue related to a specific document(s)/asset(s)? If yes, could you provide us with the document(s)/asset(s)? Please package the entire document (To package the document, choose File → Package…)
- Please provide spindump report, follow these steps:
- Open Activity Monitor: Go to Finder > Applications > Utilities > Activity Monitor.
- Select the Process: Locate the frozen or lagging application and click on it.
- Generate the Report: Click the gear icon in the Activity Monitor window and choose Spindump
- Save the Report: Click "Save" to store the spindump file on your system.
—
Adobe InDesign Team
-
Invisible toolbox
When opening an existing file (by clicking on the file before opening Indesign), the toolbox on the left appears as an invisible rectangle. It only works properly if the file is closed and reopened from InDesign.
1 vote -
'단락'의 '보조 메뉴' 일부가 나오지 않음.
'단락'의 '보조 메뉴'의 반(半) 정도가 나오지 않습니다. 아래 반만 나옵니다. 'Adobe World-ready 싱글라인 컴포저' 이하 메뉴만 나옵니다. 구체적으로 '격자 정렬' 기능을 기준에 따라 수행할 수 없습니다. 끝.
1 vote -
[ID-4263586] Adobe InDesign 2025 text justify buttons issue
In the latest update of InDesign 2025 (as of writing this), there is a problem with the text justification buttons in the toolbar.
Previously, you could click these buttons and then just keep typing into your currently active text frame, which is what one would expect from previous versions of InDesign.
With the latest update, keyboard focus instead shifts over to these buttons, taking focus away from the text frame and your current text cursor position.
This is completely useless, and makes it more difficult than it should be to, say, change the justification at a certain line of text and then keep typing or navigating the text in the frame.Would appreciate a fix for this, as it is causing severe interruptions to my workflow, and the feature/bug benefits no one.
In the latest update of InDesign 2025 (as of writing this), there is a problem with the text justification buttons in the toolbar.
Previously, you could click these buttons and then just keep typing into your currently active text frame, which is what one would expect from previous versions of InDesign.
With the latest update, keyboard focus instead shifts over to these buttons, taking focus away from the text frame and your current text cursor position.
This is completely useless, and makes it more difficult than it should be to, say, change the justification at a certain line of text…1 voteWe're reviewing this issue.
--
Adobe InDesign team
-
Can't acess to color_window
After updating to the latest version of InDesign (20.3.1) I cannot access the color window. Neither in the swatches nor in the sidebar as you can see in the side window.
Images attached.
Can you help?
Thanks.
1 vote
- Don't see your idea?