Join a global community of InDesign users.
Recently active
Hi all,I have a problem that's been driving me crazy for years and just hit again today. My InDesign publication contains hundreds of Illustrator-generated PDF images that are resized as needed in InDesign and then descriptive text added on top. Day to day it's a good solution, but occasionally I'll find that I might need to do something to the Illustrator-generated PDF graphic. It might be as simple as adding a thicker stroke or moving a couple of handles to improve the look of a curve, etc. All very, very minor tweaks at this poing. The problem occurs when I update the image within InDesign. If I change something in the middle of a drawing it's usually not a problem, but if I tweak a line or add a stroke (or remove a stroke) at the perhiphery of the drawing then when I update in InDesign the drawing will move, or worse, the scale will change ever-so-slightly. If it was a simple illustration that wouldn't be a problem, but with sometimes over 100 small text boxes on a page it bec
I'm using the latest version of InDesign 2025 (20.0.1 x64) For the second time this week, on two different files, I've had my CMYK profiles disappear. I'll go to export my project as a PDF, and get a warning saying:"The present specifies a profile that is not available."Looking at the Output>Destination dropdown, there is only the CMYK Working profile. All of my CMYK profiles are gone. The profiles are gone globally, so if I open another project, they are also missing. The only way I've found to bring the profiles back is to open Illustrator and try Saving As a PDF (using any Illustrator project). That seems to bring back to the profiles. Then I can reopen InDesign and export as normal.Anyone else seeing this issue?
Helló! Az online közzététel több órája nem működik. Nem tudom feltölteni az indesignból, hogy közzétegyem az olnine-t. #14 és #16 hibakód. Kérlek segítsetek, fontos! Ez a vállalkozásom alapja, és nem tudok anyagot készíteni! Köszönöm
Please refer to attached image.InDesign finds the next instance of 'Stages' but clicking the 'Change' button does not effect the change.I quit InDesign and restarted but to no effect. Thanks in advance for any assistance.
Buen día, tengo un problema al pasar un documento de Word que contiene formulas elaboradas con la aplicación de word, (las formulas no fueron elaboradas con Mathtyp) al pasar a indesing pasa en blanco el espacio donde va la fórmula, cuando están hechas en Mathtyp pasan bien pero las que se hacen en directo de Word no, hay alguna forma de pasarlas sin que se pierdan? Feliz día
A l'attention du forum de discussion Indesign, J'ai rencontré un problème similaire à un.e autre utilisateur.ice avec la police BBB Baskervvol et, bien qu'en ayant appliqué les conseils addressés, le bug persiste.Après la composition d'un mot possédant une ligature spécifique, le curseur est décalé d'un incrément en avant par rapport à la composition ; et en enchaînant plusieurs mots un symbôle de croix apparaît en bout de phrase, qui reste visible en mode aperçu. Connaissez-vous l'origine de ce problème et seriez-vous en mesure de trouver une solution ?Merci de votre aide,Bonne soirée.
Hello. I have a problem with InDesign. By importing a Word text (docx) and then applying a style, some problems arise: part of the text does not acquire the right font and the text is not adequately formatted (for example, the hyphenation indications are not applied). How is this possible? What should I do? Thank you!
Guten Tag und Happy 2025Ich habe einen Fotoatlas mit InDesing erstellt. Dieser wurde dann als PDF exportiert und durch andere als bearbeitet (Änderung Layout, Ergänzungen). Das nun bereitgestellte PDF wollte ich als Vorlage für einen zweiten Fotoatlas verwenden. Leider kann ich dieses PDF jedoch nicht mehr in InDesign öffnen. Es bräuchte da ein zusätzliche Modul. Ich finde jedoch kein solches Modul. Gibt es eine Möglichkeit, dass ich dieses PDF als Vorlage wieder mit InDesign nutzen kann? Besten Dank im Voraus!
Hogyan tördelhete jobbról-balra írt szöveggel.
I'm trying to save a Booklet in InDesign 2025 for someone who is using Indesign 2019. They are able to open the IDML files inside the booklet but not the booklet itself.
Hello, can anyone tell me why my DropCap acts like this?(Please see picture attached)I can't find anything online. It's very frustrating. Thank you so much!
Hello I am using indesign cs6. i want to break a frame as one word in one line. For more understand i am upload two image. one pic for many sentence which want to break. second image for output means What I want. can you provide any script or any shortcut command for it.
Hello all,I recently updated to Indesign CC 2019. I immediately noticed that the pointer (selection tool) is now a hand icon. I've searched and searched forums to no avail. So, is this a new feature? If so, can it be changed? Or is this a bug? I don't like it at all.I am running Mojave on a MBP Retina.Thanks.
How do i turn off math rounding (below) so i get exact page dimensions when the script is activated? //This function adds static text variables in InDesign//They won't be dynamically updated though.//That's why we need the updating function belowfunction toTitleCase(s) { // By Trevorreturn s.toLowerCase().replace(/\b\w/g, function () {return arguments[0].toUpperCase()});}function myRound(thisNumber, digits) { // By Trevordigits = (digits) ? Math.pow(10, digits) : 1000;return Math.round(thisNumber * digits) / digits;}function addVariables(openEvent){if (!openEvent) return;var doc = (openEvent.constructor == Document) ? openEvent : openEvent.parent; // By Trevorwhile ( doc.constructor.name != "Document" ){if ( doc.constructor.name == "Application" ){ return; }doc = doc.parent;}//Adding User name to text variablescreateTextVariable(doc, "User name", $.getenv($.os[0] == "M" ? "USER" : "username") ); // changed by Trevor//Adding Computer name to text variablescreateTextVariable(doc, "H
Hello. I have a trouble with grep search. When searching manually it works, but when i try to use js script it applyes only the last pattern from three. I do not understand why.// Run the scriptvar doc = app.activeDocument; var charStyleName = "dontChange";// Create or retrieve the character style oncevar charStyle = getOrCreateCharacterStyle(doc, charStyleName);var extentions = "(txt|md|rtf|doc|docx|odt|xls|xlsx|csv|ppt|pptx|pdf|epub|mobi|jpg|jpeg|png|gif|bmp|tiff|svg|ai|eps|mp3|wav|flac|mp4|mkv|avi|mov|zip|rar|7z|tar|gz|iso|html|css|js|json|xml|sql|sh|bat|ps1|exe|dll|sys|ini|log|dmp|indd|idml|dwg|dxf|ttf|otf|woff|woff2|eot)"// Define patterns to apply the character stylevar patterns = [ "\\<[^[:space:]]+://[^[:space:]]*\\>", "\\<[^[:space:]]+@[^[:space:]]*\\>", "\\<[^[:space:]]+\\." + extentions + "+[^[:space:]]*\\>"];for (var j = 0; j < patterns.length; j++) { // Set the pattern and search with GREP
Hi, I want my RGB images in InDesign to convert to CMYK using the Photoshop's 'Convert to Profile' method. I found this script on the net:http://kasyan.ho.ua/indesign/swatch_color/convert_rgb_grayscale_images_to_cmyk.html However, this script is using the Change Mode method, whereas I want the 'Convert to Profile' method to convert my images to CMYK along with an option to select the desired Colour Profile from the Dropdown list. Like we do in Photoshop > Convert to Profile > select destination profile. Any suggestions.
Hey guys, ich habe nun das Problem, dass wenn ich etwas anklicke in Indesign, also ein Objekt, dass es eine kleine Sekunde dauert, bis es angewählt ist und dann auch direkt ein kleines Bisschen verschoben wird. Also als wenn ich es mit der Maus anklicken und verschieben würde, aber ich klicke es nur an. Woran kann das liegen?
Hi, InDesign works fine. But when I want to save a file to the intern Mac HD the cursors loading animation appears for 15 seconds or so while InDesign freezes. After it unfreezes it didn't saved anything. Same occurs for exporting to and opening files from HD. I can save in the cloud and open files from the cloud though.InDesign and Mac OS have the latest versions.I really need help! At least a quick workaround because I have to finish comercial projects and put my files to the agencys server at the end.
Used to be able to eyedrop across multiple pages for colors and styles, yet this is no longer working correctly. Color selections just coming up black of not on the same spread. Stop breaking it please! please! please!
Hi, In my book layout, I have a couple of places where there are runts. The main reason for the runts in the first place is to fix the overall balance of justification. I was under the impression that having runts wasn’t best practice; however, I realized that many famous books also have them.
The title says it all. This is a great extension. I paid $50 US for this in the past and it was still worth it. https://www.automatication.com/product/mfc/
Hi everyone,I'm having an issue with exporting an InDesign file as an interactive PDF including interactive checkboxes. I have set the checkboxes using the Zapf Dingbats font. However, when I export it, the checkboxes are not working properly.I'm currently using Adobe InDesign version 19.4. Has anyone experienced a similar issue or knows what might be causing this problem?Thanks in advance for your help!
I am having issues when I convert my document from InDesign into a PDF and then print it. The PDF file looks fine but when I print, the text is either bold or outlined and slightly fuzzy. However, when I create my document in Microsoft Word and export to a PDF and print, it looks great. I like the features that InDesign has but I have tried all sorts of things to fix this printing or exporting issue and I don't know what I'm doing wrong. I don't understand why the font looks different when I print the PDF than how it looks on the screen.
Hi! I work in publishing and I lay out several books. I usually receive the texts in Word, and I insert them into Indesign with menu > file > insert > keep formatting. This method has been excellent so far to keep the terms in italic, bold, etc. Lately I've been having big problems instead, because the formatting is not maintained and large parts of the text, or the entire book, are imported into Indesign in an entirely italic or small caps style, even though in Word there is apparently no setting of this type (except for some terms, which I would like to keep, but not on the entire text). I can't understand what the source of the problem is, and I can't manually re-insert all the formatting from scratch for time reasons. I had the same problems with different Word files, cominig from different people, and I've tried using different Indesign documents, the problems remain. I use original and licenced for both Adobe and for Microsoft software. I am currently using I
When I try to save a PDF in Adobe Acrobat, I am suddenly redirected to Microsoft Edge, and a sign-in pop-up appears. How can I resolve this issue and save the file without being redirected or prompted to sign in?
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.