Join a global community of InDesign users.
Actividad reciente
Hallo zusammen, versuche gerade verzweifelt, InDesign auf meinem Laptop zu installieren. Es wird nicht in der Creative Cloud unter Applikationen gelistet. Systemvoraussetzungen passen und mein Abo umfasst auch alle Apps. Auf meinem Desktop-Rechner ist es kein Problem. Photoshop konnte ich auf dem Laptop ohne Probleme installieren. Selbst wenn ich es über Umwege schaffe, InDesign zum Installieren auszuwählen, werde ich immer wieder auf den CreativeCloud Desktop Startbildschirm umgeleitet. Dort erscheint dann kein InDesign mehr zur Auswahl. Weiß jemand Rat? Danke und Grüße Chris
I am working with uxp for adobe InDesign and created a drop-down using <sp-picker> the dropdown is meant to show "Row per page " options. How ever the sp-picker not working expected The drop down appear but selecting an item does not triggering any event But nothing happens when I select a different value <sp-picker id="rowsPerPagePicker" label="Rows per page" placeholder="Select rows"> <sp-menu-item value="10">10</sp-menu-item> <sp-menu-item value="25">25</sp-menu-item> <sp-menu-item value="50">50</sp-menu-item></sp-picker>const picker = document.getElementById('rowsPerPagePicker'); picker.addEventListener('change', (event) => { console.log('Selected value:', event.target.value);});
var cp = pp.marginPreferences.columnsPositions;I now want to distinguish between odd and even numbers.cp[1], cp[3], cp[5]cp[2], cp[4], cp[6]I previously used cp[2*i] to represent even numbers and cp[2*i-1] to represent odd numbers, but in practice, as the numbers grow larger, the logic becomes confusing.For example, when i=11, 2*i becomes 22, which is no longer near 11. I think the correct logic should be:Odd number + 1 = Even number.
Hello!I'm not 100% sure, but I think I never had this warning before. When exporting a PDF the dialog says the (PDF export) preset specifies a different (color?) profile than a so-called "color settings file".I just want to understand what's going on. First if all, I don't see any color profile in the preset. The only thing is this:The assigned color profile is as such:while the global color settings are these: So, in regard to another discussion about this color profile warning which says that the warning will/could/should appear when the RGB settings is NOT sRGB, which it is in fact in my case, I wonder how to get rid of this warning, since the preset doesn't specify a color profile at all. Sure, I could also simply ignore it. Thanks.
This has me banging my head on my desk.As is often the case, I want to start the page numbering a couple of pages after the start of my document (so, page 1 is actually page 4, etc.)However, every time I try and start a new section to do so, Indesign takes out the left page of my document where I'm trying to start the section, which messes up my whole layout.Any suggestions?
I had somehow changed my little arrow cursor to a larger cursor that looked more like a triangle than an arrow. How do I get it back to normal?
Use script,How to determine if the currently selected object is outside the page (outside the bleed)?Or, if the object is outside the bleeding area, move it into the layout area. Should it be divided into left and right?Like this:Is it called Editing?Or meOffset = measurementEditboxes?
When selecting multiple images, the leftmost image may not necessarily be the first in the array.It could be the topmost image.I guess that sel[j].geometricBounds[1] has the smallest value, which is the leftmost image visually. I want to use it as a reference and get its geometricBounds[1] value.I now need to find the leftmost image among three images. How should I write the code? Thnaks. var sel = app.documents[0].selection; for(i=0;i<sel.length;i++){ . . . . . . var leftmost = (sel[i].geometricBounds)[1]; }
Hello!I have latest InDesign as a subscriber to Adobe cloud.Every time I try to use shortcuts to get bold or italic text InDesign switches to direct selection mode (because I press CMD button in Shift+Cmd+B or I).Tried to create custom keyboard shortcuts – it does not work. InDesign still treats Cmd key as a switch to direct selection tool.Tried to clear preferences – it did not help.Checked other fonts – the same problem presits, so it's not the improper font installation without bold or italic versions.Am I missing something?
Bonjour,Est-ce possible de comparer des fichiers Indesign, comme le fait 'normalement' Adobe Acrobat pour les PDF?En vous remerciant,Liza
We're encountering an issue when creating more than 100 rollover buttons on a single page—some of the rollovers stop functioning correctly. I've thoroughly reviewed the actions multiple times, but the problem persists.Export setting - Used Bydefault iPDF export setting Thanks in Advance!
Changing smallcaps % (default is 70%) using ^K (Advanced type) doesn't have any effect on the size of the smallcaps. If I can get on this.
Hello allCan someone please help me. I have designed a book that is now also published in Tamil. The layout works fine with the font „Baamini“. But now I have been asked to layout everything in a Unicode font (e.g. „Latha“ or „Noto Sans Tamil“). Unfortunately, Baamini is not a Unicode font and I simply cannot manage to install the two fonts „Latha“ or „Noto Sans Tamil“ correctly. Only (pink) rectangles or latin letters appear (see screenshots).Does anyone know how I can solve this problem? I would be very grateful for any helpful tips.Barbara
Hi everyone, I just noticed that there seems to be no discussion of the View menu > Overprint Preview anywhere in the help system. It is not mentioned here: https://helpx.adobe.com/indesign/using/overprinting.html Seems like it would be and should be?
I have a document with several sections. Each section is my own notes on several different books I am studying. As I study more of each text, I add my notes to the end of each section. However, when the text reflows, instead of adding another page to the end of the section 'Book1:' the text flows onto the first page of the section 'Books:'How do I get the document to add a new page to the end of the section I am writing in when I need more space in that section?I have selected EDIT>PREFERENCES>TYPE>SMART TEXT REFLOW>ADD PAGES TO END OF SECTION Thanks!
I am experiencing an issue with Adobe InDesign when exporting documents to JPEG format.Lines appear on the images, as if the photos are being "sliced" or "cut."I have tried the following troubleshooting steps without success:– Changing the resolution of the images individually– Adjusting the export resolution settings in InDesign– Modifying other export and display settingsDespite these efforts, the issue persists. Interestingly, when the same file is exported on another computer, it works correctly, and no lines appear.This problem occurs with all my InDesign files on my system.Could you please help me identify what might be causing this and how to resolve it? I have already searched online for solutions, but none have worked so far.Thank you in advance for your assistance.
I’m exporting an InDesign document to EPUB (reflowable), but the paragraph formatting (like spacing, alignment, and indents) isn’t showing correctly in the final file. I’ve applied paragraph styles consistently. Is there a setting I’m missing or a better way to preserve formatting during EPUB export?
In the past few days, a stationary phantom box has appeared on every document, both old and new. I can't find any way to get rid of it.
Has anyone figured out how to use a script to convert cross-row data to table header rows?
I inherited from kRollOverIconPushButtonBoss because I wanted to customize the appearance of the button. So, I overrode the IID_ICONTROLVIEW interface and implemented the Draw() function like this:class MyButtonView : public DVControlView { public: MyButtonView(IPMUnknown* boss); virtual ~MyButtonView(); virtual void Draw(IViewPort* viewPort, SysRgn updateRgn = nil); };Everything works fine — I successfully implemented a custom-drawn button appearance.However, the button click event stopped working.I had to explicitly re-implement IID_IEVENTHANDLER for the button to respond to clicks again.So my question is: why is this the case?If I re-implement IID_ICONTROLVIEW, do I also have to re-implement IID_IEVENTHANDLER for the button to function properly?
We are finding occasionally that when you copy an item to paste elsewhere (either in the same doc or another) that instead of replicating the item you get a pseudo screengrab. It looks just like the item you have copied, but is just a screengrab, and a screengrab with no link at allSo I copied this(all vector) and it returned thisI am a very experienced Indesgner, having used it since ID2 (and have trained others in it) and I have never experienced this or know why it is happening – so reaching out the the community. I assume it is an issue with ID20, but be curious to learn if others are getting this phenomena or what could be causing it?
I am working in Indesign CC 2019 on a document that will not show "selection" when perfoming find/change.It only show document as the option to search. How do I restore all the options (selection, story, etc.). ?? Mike
Hello everyone,I have a project of multi-brand manuals (one manual each), however, I have being duplicating books and its respective chapters (indds) for a new brand. I am now organizing a common strutucture that all the brands use and pull these indds in the respective book of that brand. But by doing this, all the information of the foot are not correct with the dedicated chapters, meaning page/date and brandname. I have made this change so the maintaince of the manuals specially in the common structure would be 1-time thing across 9 brands instead, 1 each manual and to become more productive.But how can I change the date/page and brandname without changing the common indds? Is there a way to define in the common indds or in the indb to overlap that information and put the same as the dedicated ones?Thanks for the help
Help! The hyperlink line is not showing up in the document. It does sometimes in the paragraph, but then there is another word or phrase that it does not. Any ideas why?
Hi, I've recently switched from a 27" 5K iMac to a 15" MacBook Pro with an external LG 4K display, which I'm using as my primary monitor. However I have noticed that when the zoom setting is at 100%, pages are not actual size on my 4K display like they were on my old iMac. If I move the InDesign window to my MacBook display, 100% is actual size, but on the external display it is not (a 210mm (w) page becomes ~180mm), ie. around 85.7% of actual size. I assume this is due to the difference in DPI between my built-in display and the external display, but can I resolve this issue? macOS 11.5.2 (20G95)InDesign 16.3.2
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.