『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
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
Hi All, i have a custom font made at GlyphterIt works fine for the most part in both InDesign and non-Adobe apps such as MS Word. Recently however i needed to make some changes to the glyphs in the glyph table and after updating the font in Windows 10, ensuring its correctly loaded and working correctly in MS apps, InDesign simply doesn't update the font. I can confirm the font works in InDesign, just the expected newly added glyphs are not displaying in InDesign. Instead InDesign has glyphs from a very old version of the same named custom font, indicating its using some kind of font cache and not the newly installed font in Win10. I am using the latest version of InDesign.I have already tried deleting system .DAT font caches found in the steps herebut still the problem persists. I have spoken with Adobe Support that are trying to tell me the issue is not an Adobe app issue (which it clearly is as i can verify the font works as expected in all No
I am working with the InDesign 15.0.1 and I am having trouble renaming Groups and Objects in my documents. I have to click the Group/Object at least 5 times for the option to change the name appears. It's extremely frustrating. Is there a way to fix that? Or a way to create a keyboard shortcut? Thanks!
I have a piece of text. It has footnotes, but the footnotes are not properly linked to the main text.In other words, the footnotes and the main text are separate.They may be in the same text box, though.Perhaps I need to select a uniform footnote format. Now I need to link the footnotes to the main text.I can only enter footnotes manually. Can this be done automatically with a script?
Buenos días!Estoy teniendo problemas al importar en PDF interactivo con las transiciones de página que no las hace. Estoy con la versión v20.41, actualizado hace 6 días, con un MacBook Pro, con macOS Sequoia version 15.5.Alguien me puede echa una mano.Gracias de antemano!!!
Hi @rob day What a coincidence! I actually found this. I know you've done a lot of research in this area.Here it is:https://community.adobe.com/t5/indesign-discussions/resize-image-script/m-p/14141572#M544801 The original post you replied to already equi-scaled fits the layout(typearea?).Could you add a version that Image equi-scaled fit to the column width? When fit to typearea, align X and Y to the upper left corner.When fit to column width, align X to the left and leave Y unchanged. Please forgive me for posting this separately, as I would like to add some new information.For example, determining whether the current selection is a text box or an image.Thank you very much. However, I found that the original post was not scaled.Its width fits the layout, and the frame fits the content. Actually, the cropped content should not be released.But it doesn't matter, as it is irrelevant to the initial layout.At least there is hope.
Hi all,I have recently came across an annoying error. I have somehow switched on a setting which alters the "Shift + X" setting in my Indesign. When typying and pressing "x" nothing appears but my text fill automatically switches to red. the rest of the letters continue as normal. When pressing "Shift + X" I am able to type in capital "X" letter.It is almost as if the shortcuts themselves have been swopped? Not sure how I have accidentally switched this on. Thank you in advance.
Imagina que tienes un bloque de código HTML muy largo que ocupa varias páginas en InDesign. Cada vez que el texto “salta” de una página a la siguiente, quieres que aparezcan dos palabritas mágicas:← Continuación del código anterior al final de la página que se quedó “colgada”El código continúa en la página siguiente → al principio de la página nuevaPara lograrlo con un script en JavaScript (ExtendScript) para InDesign:Limpiar primero cualquier etiqueta vieja (por si ya habías corrido el script antes).Recorrer cada historia de texto y cada par de párrafos consecutivos.Detectar cuándo esos dos párrafos están en páginas distintas.Insertar justo después del último carácter de la primera página el textocssCopiarEditar← Continuación del código anterior(con un retorno para separarlo).Insertar justo antes del primer carácter de la siguiente página el textocssCopiarEditarEl código continúa en la página siguiente →Aplicar a cada uno su estilo de párrafo (“Etiquetacontinuacion” y “Etiquetacontinu
Folgendes Problem:Ich habe in InDesign ein Projekt mit ca. 130 Seiten. Über die Musterseite habe ich im Nachhinein Seitenzahlen hinzugefügt, welche ich nicht in den Vordergrund bekomme, da ich auf einigen Seiten Dokumente über die ganze Seite gezogen habe. Im Internet wird überall geschrieben, dass ich die Ebene in den Vordergrund packen muss, allerdings wird mir die Textebene der Musterseite nicht bei den Ebenen der individuellen Seiten angezeigt. Gibt es eine Möglichkeit, die Musterseite permanent auf allen Seiten in den Vordergrund zu stellen? Oder finde ich auf jeder Seite die Textebene der Musterseite, in welcher die Seitenzahl ist?Vielleicht stehe ich gerade nur auf dem Schlauch, aber ich finde den Fehler momentan nicht!
I have a document set up to print as a booklet with 5.5x8.5 pages on a spread. It looks fine in preview but the .ps file has the wrong page orientation. I've attached the Summary txt from Print Booklet.
Hi all, I'm trying to make a professional artistic cv using InDesign and it's not working. I have tried the oldest version available 19.0, as well as the 2024, and 2025 versions of the app and the same problem persists with all of them. A couple of seconds after launching an action, it buffers and invites me to force quit the app. I have also tried resetting the app. No other Adobe app has similar issues and I'm confused why InDesign would differ?
Hello. I'm creating rack cards in multiple languages. One of the languages is Farsi. I can't seem to get Farsi working in InDesign. I also don't see Farsi or Persian in the Language drop-down. Help please.
I have a customer who wants the Dynamic Text feature available in PS & AI, where the words are resized to fill the space. They want each chapter to start with a title page with dynamic text and on most of the book sections. I thought it would be easy so priced it that way. Am I just not seeing it? see example.
Hi, I have set up a document with parent pages. Before, I was able to see the parent pages A-C on top of the document pages in the panel, so I could edit them. Now, the parent pages have disappeared but they are still applied to the pages. So I cannot edit the parent pages as I don't know how to access them. In the panel options, parent thumbnails are activated. I don't know why the disappared. How can I get them back or how can edit the parent pages without seeing their thumbnails? Thanks <Title renamed by MOD>
Hi, Dear Friends!I want to apply a paragraph style and clear all character formatting using a single keyboard shortcut. ChatGPT said it could not be done and suggested run a script to clear (and attach that to a SC) and then apply the style. but it is not working goodThank you, and have a good day!Susan Flamingo
I'm using InDesign CC 2018, and as I work between pages, scroll or zoom-in/out, screen distortions appear on the page. A sample image is attached.In this example, the grey in the bottom right-half of the document isn't supposed to be there. It appears to be an artefact from the background. Changing pages or scrolling more will typically make the issue move to a different part of the page or disappear.Any suggestions?
I'm facing issue when i apply paragraph shadding Text is disappear.Steps:1.Create text frame and fill text with place holder.2.Open paragraph 3.Select 1 paragraph and apply drop cap(select value 2) and split for same paragraph.4.select exact below paragraph and apply shadding and observe.Top side text is Disappears.
すでにアカウントをお持ちですか?ログイン
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
申し訳ございません。このファイルは、ダウンロードしても安全かどうか、内容を確認中です。数分後にもう一度お試しください。
申し訳ございませんが、当社のウイルススキャナは、このファイルをダウンロードすることは安全ではないと検出しました。