Join a global community of InDesign users.
Actividad reciente
Hello,We are currently working on a file translated into Burmese (Myanmar) that requires accessibility remediation for screen readers.The files are being processed in Adobe InDesign 2026. The translated text was copied from a Word file after first being pasted into Notepad to remove any potential hidden formatting or encoding characters.The following settings and checks have already been completed:A Unicode font that fully supports Burmese characters is being used. World-Ready Paragraph Composer is enabled. The correct language is assigned at text level. Legacy Text Shaping for Adobe World-Ready Composer is enabled. The file is being exported as a tagged PDF with the correct document language assigned.Despite all these settings being correctly applied, Acrobat’s accessibility checker continues to report a character encoding error for the Burmese text. Could you please advise if Burmese (Myanmar) has any known limitations with Acrobat accessibility validation, or if there are additional
Hi everyone,I'm from Germany and thus have the German CC version.Have massive performance problems on all our PC/Win devices with InDesign.Of course I've already searched for a solution by myself and have already done the standard tasks - without any positive effect. That's why I write here, fervently hoping for a good and sensible answer instead of just standard copy & paste answers...1st I started with the preferences - and found nothing. The official Adobe post says:https://helpx.adobe.com/de/indesign/using/gpu_performance.html^^But although it's title is general it's written Mac specific. I actually have NO "GPU Performance" entry in the preferences list in InDesign (while in Illustrator and Photoshop I have that for years).I also have NO animated zoom as described in the article and it's all dead slow, so I'm sure I'm in CPU mode. Why does GPU work in the complete graphics and video apps but NOT in InDesign?Have a NVIDIA RTX Studio certified notebook with a RTX 3050 Mobile and
Bonjour, je viens de tester la mise à jour InDesign 21.3 sur Windows 11. J’ai une petite fenêtre rouge en bas d’écran qui me demande de tenir Windows à jour. Je ne peux pas fermer cette fenêtre rouge. Et comme je suis dans une grande entreprise, je n’ai pas la possibilité d’intervenir sur Windows, c’est une version imposée par l’entreprise et sécurisée. Je ne peux pas non plus quitter InDesign qui me dit qu’il y a une tâche en arrière plan, mais si j’ouvre la fenêtre “tâches en arrière plan” ,il n’y a rien. Je viens donc de revenir à la version 21.2 qui fonctionne sans problème. Une solution ?
I’m using the font “36 days ago BRK” that is free to use for any purpose, yet InDesign insists on replacing it as i export my PDF because of “licensing issues”. I’m not using Adobe Fonts, I simply downloaded a free-use font off the internet. I don’t want to start using Adobe Fonts or find another font to replace it. What’s really annoying is that it used to work on older versions. I don’t know why this is an issue now.
Since Indesign version 2025 all the time a whole textblock suddenly disappears. It still exists, but is not shown. It happens in different situations: when i scroll, want to start typing, etc. I already switched of the gpu-modus, but that does not help.I am using Windows 10 on a Imac 4K intel core I5.
Tenemos un cliente que todavía usa Adobe Indesign 2021 (16.x), como la versión está descatalogada no se puede descargar desde la creative cloud, y por migración de pc, se ha perdido la aplicación y ahora no se puede instalar.
Hallo :) Ich arbeite gerade an meinem Portfolio und möchte ein Bilder-Karussell im PDF einbinden. Beim Klick auf einen Pfeil soll das nächste Bild erscheinen, ohne dass eine neue Seite geladen wird (also keine Sprungmarken). Bisher habe ich dafür den Objektstatus und Schaltflächen mit entsprechender Funktion genutzt. In der InDesign-Vorschau funktioniert das auch aber leider beim Export nicht mehr. Die Schaltflächen werden zwar angezeigt aber funktionieren nicht. Ich arbeite mit der neusten Version von InDesign und auch von Acrobat. Ich habe auch darauf geachtet, dass ich als interaktives PDF exportiere aber leider klappt es nicht. Ich befürchte, dass diese Funktionen nicht mehr unterstützt werden aber vielleicht hat ja jemand einen Tipp oder eine Idee, wie ich den Slider anders umsetzten könnte. Danke schonmal und liebe GrüßeLena 😊
HiI am using Adobe Indesign 2026 and recently discovered that none of my documents open when clicked on in the Home screen. I tried clearing up space on my computer (over a GB of storage was freed), but that didn’t solve the problem. When I click on the desired files in my Finder window, nothing happens either.Can anyone help me troubleshoot this issue?Thanks in advance,Joey
HELP! I am unable to print my InDesign document. The error message states 'This document contains links to files/URL(s) that are not accessible. Please check your network connectivity or the original source of content.' When looking at the links page, there are no errors issued. Preflight shows no errors. I've gone to System Preferences/Security & Privacy/Privacy/Files and Folders, and verified that 'Document Folder' is checked under Adobe InDesign. Any other suggestions? Thank you!TR
Tearing my hair out with this one - trying to export hi res print pdf but keeps failing. Thought maybe it was a dodgy link so created new blank doc and getting the same error. tried exporting as png and jpg which doesn’t work either. Any ideas?
I’ve been wrestling with Adobe Fonts for several days now, and none of the workarounds have fixed anything. Creative Cloud shows that Adobe Fonts are synced and installed, but none of those typefaces show up in InDesign or Photoshop. All apps are up to date (including CC), I’ve tried disabling fonts, logging out, and enabling them again, restarted my computer multiple times (2019 iMac running Sequoia 15.7.3), clearing the font cache in Terminal, validating fonts in FontBook—basically anything that I’ve seen suggested, I’ve tried, and nothing has worked. Typefaces outside of Adobe Fonts are all working perfectly fine.I currently can’t work on any existing InDesign documents because it has “adding fonts” as a never-ending background task. I’m once again (thanks adobe!) paying for software that’s locked itself.Is there some other magical workaround I’ve overlooked? Ideally something that you don’t have to do every time you launch a program.
I am working on a project in Indesign and flipping back and forth between it and Lightroom. Everything was fine at first, all images looked good in Indesign, then something happened and now all of the images are overly saturated in Indesign. I don't remember changing any settings, but may have hit a hot key that changed it? Any help is appreciated! (First image is the Indesign photo, second is Lightroom)
It seems like the focus is lost after the update.I was hoping for a simpler solution:if (app.selection[0].constructor.name == “Image”) {var image = app.activeDocument.selection[0];var imagePath = image.itemLink.filePath;}if (LinkStatus.LINK_OUT_OF_DATE === image.status) {image.update();}But I didn’t quite understand what the body of ‘update()’ was supposed to be. Later, I found the code snippet below, but while it updates the image, the focus is lost and the code doesn’t continue. It seems it needs to keep the selection.var graphics = getGraphics(doc.selection);// Create paths and link objectsvar paths = [];var links = [];for (var i = 0; i < graphics.length; i++) { if (graphics[i].hasOwnProperty(‘itemLink’)) paths.push(graphics[i].itemLink.filePath); links.push(graphics[i].itemLink);}if (0 === paths.length) alert(‘Image appears to be missing!’);for (i = 0; i < links.length; i++) { if (LinkStatus.LINK_OUT_OF_DATE === links[i].status) { links[i].update();
We (a team of 11 people) are using INDD 2026 desktop version and are working directly from a wind 2025 server. What we are looking for: which kind of database works quite well with INDD and would be best for storing some 10,000 or more INDD files. The final goal is to start working locally and using the server for what it’s build for, storing things.
Hi everyone, I’ve been working on a 200-page report, meticulously checking all text threads to ensure the reading order is correct. However, after exporting to an interactive PDF, about 55% of the document still has issues with the reading order in Acrobat, even though it passes the Acrobat check. My goal is to make the PDF as accessible as possible. All other accessibility issues were resolved after the latest export, but the reading order still seems off during visual inspection. Currently, I’m exporting via File > Export > Interactive PDF, which seems to be the standard advice I found online. Am I missing something? Is there a better way to export for accessibility? Any advice would be greatly appreciated—reordering elements in Acrobat manually is taking forever! Thanks!
I've just started noticing random hyphens appearing in text I'm pasting from Word into InDesign. I'm pasting into a series of InDesign docs in a journal that get updated every year, and I've never had this happen before. I just pasted in a 900-word story, for example, and there are 12 hyphens inserted into seemingly random words with no pattern I can detect.Hyphenation is turned off in both Word and the InDesign paragraph style, so there should be no hyphens. They’re definitely not discretionary hyphens. I have Invisibles turned on in both Word and InDesign and everything looks completely regular. The words are all followed by a space (blue dot) and there are no special characters. The screenshot I've attached shows the text in InDesign with the source text in Word below.Anyone else seen this?
What are the things to take note when using word document that contain both text, tables and pictures into indesign report? what kind of formatting must be done in work because indesign cannot handle it?Take two examples that I was told by someone else :placement of tables in word document. The plan is just place the table near the text and let indesign reposition it for best visual. For e.g. we might need 4 columns of text and let the table stretch across two columns before the text using indesign. But we were told that indesign cannot keep the table as “whole”, the table will get broken into pieces when attempting to place it in different place. Font type, font size and font colors. We might need different font type, font size and font colors for best visual. The plan is to keep simple formatting for font in the text in the word document and later let indesign handle the change for best visual. We were told this will not happen because font formatting changes need to happen in
Indesign 20.5 Marguee Zoom has stopped functioning the way it used to and now sometimes functions like Step Zoom. I sometimes want to zoom in as far as I can on a specific spot. I use the Marguee Zoom for that. However, if I draw a box that would zoom it greater than the max zoom of 4000%, it functions as a Step Zoom. It sometimes takes 10 Marguee Zooms to zoom in. This is a change from previous versions.Is there a fix in the works?
Just received the above error message.I understand I have to wait, but in “sometime”?! Please can someone at Adobe change this to “some time later” or “in a few minutes”. Anything other than the above grammatical abomination!
First of all: All apps and Windows 11 are updated. I checked RAM, Graphic Card and much more.My problem: When I start working with InDesign it can work smoothly but suddenly InDesign doesn’t react anymore. I can’t close it. When I try to end the task with the Taskmanager it won’t close either. After maybe 5 - 10 seconds I get a “Blackscreen” and Windows shut down the PC and makes a restart.I don’t use InDesign Plugins. I’ve already tried to uncheck the GPU-Box. I uninstalled and reinstalled InDesign already.Has somebody the same problem or even better - the solution?PS: I never ever get a Blackscreen when I don’t use InDesign.Kind Regards, Oliver
I paid my suscripción but I can not use In Design because I have MacBook Pro Late 2013, with MacOs Big Sur 11.07.11.
Hello! Hoping someone can shed some light on this for us. We have a series of JSX scripts we use in InDesign that were working in MacBook Pro Intel but not in MacBook Pro M4. Same verison of InDesign too. When we run the scripts in Intel they execute but when we run the same scripts in M4, they do nothing. Are we missing something here? We also tried the Open In Rosetta option which did not work. Please advise.
When I select "Setup" in the InDesign print dialogue, it takes me to another dialogue which is apparantly a Windows 11 setup, which resets everything to defaults, including the system default printer (which I am not using for this job.) Then I have to select "More Settings" and make adjustments there from the traditional printer settings dialogue. My other Adobe products don't go through this. And searching online for a fix did not come up with a simple solution. Is there a way to bypass this stupid step? If not, can Adobe fix this?Version 20.5 x64Windows 11 Pro 10.0.26100
Hey, y'all. This may be a couple of different problems, so please bear with me. I'm working on a MacBook Pro with an M1 chip and Ventura. I'm trying to print booklet at 6x12, which I have done plenty of times before, but not with my current OS. I have the printer set to PostScript file and when I choose Device Indepentent as the PPD, all of the page adjustment options are grayed out. When I set the PPD to any other printer, I can adjust the page size/layout to what I need, but the PostScript files and resulting PDFs have been coming out at 8.5x11 instead of 6x12. I think I used to have the option to set the PPD as Adobe Acrobat, but I believe I read (in trying to trouble shoot this issue) that Mac has removed support for the Adobe PPD. If this is true, has anyone found a work around for this? Or some other PPD that allows for PostScript files to generate PDFs that actually stay the dimensions you set the page to?
Is it possible to export HTML content from InDesign for use on a coding website? I'm looking for the best methods to ensure the design translates well to web format, especially for responsive layouts.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
¿Ya tiene cuenta? Iniciar sesión
¿Aún no tienes una cuenta? Crea una cuenta
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.