Forum Replies Created
-
AuthorPosts
-
David BlatnerKeymasterWow! That is interesting. I did not realize that limitation.
Perhaps one of the scripts on this page will help (for example, converting endnotes to static text): https://creativepro.com/files/kahrel/indesign/footnotes.html
David BlatnerKeymasterActually, it’s very easy!
- Use the Selection tool to select either one of the frames.
- Then (if you have the main story selected), click the out port (lower-right corner); or (if you have the endnote frame selected) click the in port in the upper-left corner. That loads the place cursor.
- Click the place cursor on top of the other frame.
Here is more about threading frames together:
David BlatnerKeymasterFascinating! I think it could be your particular font… when I open this document and use my version of Cambria and Cambria Bold, it works properly.
David BlatnerKeymasterHi Linda! Well… I suppose it’s possible, but not highly likely. Unless there were hundreds or thousands of objects out there.
There are so many reasons why ID can crash… outdated plug-ins, bad images, bad fonts, bad phase of the moon…
David BlatnerKeymasterThanks very much, Cathy! :-)
And thanks for being part of the CreativePro community.
David BlatnerKeymasterThe best way to do this would be to edit the original background image in Photoshop. The Content Aware Fill feature (or Content Aware Scale) may be able to help you extend the image to the size you need.
David BlatnerKeymasterSince InDesignSecrets merged with CreativePro, we have a number of articles on this site, such as:
Inside the Publishing Revolution: How the LaserWriter and Photoshop Changed the World
Building an Isometric Timeline of Modern Milestones in Design and Publishing with Illustrator
See also this issue of ID Magazine:
Also, this article has links you might find helpful:
April 22, 2021 at 9:30 am in reply to: GREP: changing the style of percentages within body copy #14338779
David BlatnerKeymasterActually, in this case it’s not needed. I do it out of habit.
Here’s where it comes in handy… given the sentence:
There are 1 (one) or 2 (two) options
And if you use grep to search for\(.+\)(which means “find everything between two parentheses) then it will find “(one) or 2 (two)” — that is, all the way from the first open paren to the last close paren.
But if you add the ? after the +, then it would just find “(one)” and then it will find “(two)”
So the ? sort of means “find the shortest amount of text that works.April 22, 2021 at 7:04 am in reply to: GREP: changing the style of percentages within body copy #14338776
David BlatnerKeymasterAh yes! With GREP you have to be extremely precise. The code I gave you only looks for digits followed by a percent symbol. If you want to look for numbers or dots, you’d have to use
[\d\.]+?%The \d means “number”, the \. means a dot or period. The square brackets mean “or”
-
AuthorPosts
