Forum Replies Created
-
AuthorPosts
-
Gert Verrept
MemberLarisa, tried it in CC. Indeed as Luky says, if the style exists, this one is used, if not, then all goes fine. I often copy a small part of text to another doc just to have the para style in the new doc, but if the name exists, the old para style is not “copied”, the local one is used.
January 5, 2017 at 2:37 am in reply to: Seeking Script to Turn Off All Ligatures and Hyphenations #91010Gert Verrept
MemberAnnie, you didn’t say if you have executed the script, did you? Save script with the extension .jsx in the above folder, open doc and execute the script by double clicking on it.
Gert Verrept
MemberNot much info given. OS? INDD version? Is it created in a newer version?
Gert Verrept
MemberIndeed, I agree with David. Viewing a pdf in a browser is different from viewing it in acrobat reader (or pro versions). Even another viewer can give you another zoom factor. It also depends on how the user has set up his viewer. Whatever you try, it can be oke or not.
Gert Verrept
MemberCreate para styles with para rules above set to “on” for the first footnote and select the right color. A second para style with no rule above for the next notes on the same page.
Uncheck the “rules on” in the footnote option panel in the type menu. That way you can create different colored rules.October 18, 2016 at 10:40 pm in reply to: Seeking Script to Turn Off All Ligatures and Hyphenations #89135Gert Verrept
Memberas far as ligatures are concerned:
var myDoc = app.activeDocument;
var myParStyles = myDoc.allParagraphStyles;
for (i = 1; i < myParStyles.length; i++) {
myParStyles[i].ligatures = false;
myParStyles[i].hyphenation = false;
}Gert Verrept
MemberGetting lots of Word files, we made a macro which creates most of the styles needed (bold, italic, super or subscript, underline, bold-italic…).
All our templates have those char styles already prepared (exact same name). When we import the Word files, the char styles are applied, so no local formatting gets lost (some special cases are done by hand).Gert Verrept
MemberSeems normal. It isn’t because you don’t put numbers on the pages that they don’t export as a page. What you can do, is adding a section prefix from page “3” (your page number 1). That way you can export the pages using the prefix as a delimiter. The pages 1 and 2 will not be exported.
Gert Verrept
Member@Ari: maybe this thread can help you: https://forums.adobe.com/message/6056001#6056001.
We get a lot of fake footnotes from our sources. They all have the same “style” and are at the end of the document preceded by a title “endnotes”.
Maybe, with some adapting, this can be useful. All credits to the creator of the script of course.Gert Verrept
MemberI would make unique parastyles per “book”, then create TOC styles per book. Generating a TOC based on one of those TOC styles will give you the TOC wanted.
ex. “Book 1”, has parastyles ending on “_bk1”. Create a TOC style, named bk1 and include only the styles ending on _bk1. Create the TOC. Only the -bk1 entries will be listed.Gert Verrept
MemberYou could take a look at https://emsoftware.com/products/wordsflow/. This works great.
August 4, 2016 at 9:13 am in reply to: Updating Pantone Color Libraries… Still Missing Colors #87084Gert Verrept
Memberin Illustrator: same problem (2143c gives nothing)
Gert Verrept
MemberAfter some looking around, I cannot find another solution than, if you make a pdf/x4 it’s correct. The setting read “fogra39”.
For some reason (default setting by ADobe because they are US based??) in pdf/x1 it’s always CGATS.Gert Verrept
Memberhttps://www.color.org/IPA_2003-11_PDFX.pdf. Here you can find some info about it.
-
AuthorPosts
