Forum Replies Created
-
AuthorPosts
-
Aaron Troia
ParticipantUsing
Shift + Return
should retain the entire title (I use it all the time) in your running header variable. I call it a soft return, not sure if that’s what you meant by Forced Line Break, but it should work.Aaron Troia
ParticipantDavid,
The script works great, however one thing I would tweak would be to change the application versions to their bundle id’s to eliminate needing to update the year throughout the script every time you update InDesign and Photoshop.
Change Application version lines
tell application 'Adobe Photoshop 2023"
andtell application "Adobe InDesign 2020"
(or which ever year of the applications you are running, these were just the years that were in the version of the script I downloaded)to bundle id’s
tell application id "com.adobe.Photoshop"
andtell application id "com.adobe.InDesign"
Maybe consult with Rob Day about this, he may have a reason why he didn’t do this, but it sure would save a lot of head aches and people having to modify the script.
January 31, 2023 at 3:15 pm in reply to: InDesign Scripting: footnote options and calling styles in folders #14385907Aaron Troia
ParticipantThank you Michel, I figured there was a way that I haven’t learned yet how to do, and that works perfectly! You are a true Jedi!
January 30, 2023 at 5:41 pm in reply to: InDesign Scripting: footnote options and calling styles in folders #14385864Aaron Troia
ParticipantHello David! Thank you for suggesting that FB group, I will check it out!
Aaron Troia
ParticipantHey David,
This might be a little late but I just saw your post and had to do some searching to see if there was a way to do this by chance I run into the same issue at some point. In my searching I ran across this script from Mars Premedia which might have been just what you were looking for. I haven’t tested it but it sounds like it might do the trick if you are in the same situation in the future.
https://www.marspremedia.com/software/indesign/change-overprint-indesign
Aaron
May 5, 2022 at 3:37 pm in reply to: Grep Adjustment – I made mine work, was wondering why it breaks when i change it #14365272Aaron Troia
ParticipantSo is it consistent with the other names like “Bob Andersen, PE” throughout but some just have more than one title such as Lori, “Lori Labrum, PE, PTOE” and you are only bolding though one title? If the first title consistent with 2-4 capital characters you might be able to do something like this:
(?<=\, ).+?, [A-Z]{2,4}
September 29, 2021 at 11:15 am in reply to: GREP Peculiarity – Different result for Selection, Selected Story & Document #14347737Aaron Troia
ParticipantThe FindChangeByList is quite the quirky GREP script. It seems straight forward but you really have to play by its rules and test to learn what it will and will not accept. I wish it used the same GREP engine that Find/Change uses (why it doesnt is beyond me). Like David said, I would also guess that this is a bug.
Aaron Troia
ParticipantUnfortunately not, GREP isn’t smart enough to recognize consecutive numbers like that, but you could do it if you selected the numbers, but you would physically need to select each range of numbers which I’m not really sure would be any quicker.
Here is an example GREP for that (with text selected)
Find:(\d+),.+?(\d+)$
Change:$1–$2
Search:Selection
Aaron
Aaron Troia
ParticipantCecilia,
Considering that this came from Kindle Previewer, I’m guessing they have something that have some sort of Quality Assurance script that is set up that is scanning for things like sequential superscripted numbers (not wrapped in anchor tags in the HTML to direct it to a footnote) and alerts you if it looks like you might have missed something you could go back and fix it. That doesnt really apply in this case as they are just superscripted numbers, but the script probably cant differentiate the difference, it just sees superscripted numbers and flags it. I honestly dont see this as something that the ebook would be rejected over. Also as far as I know there is nothing in InDesign that you can use to indicate that they are not footnotes.
Aaron
September 14, 2020 at 8:26 am in reply to: how to hold two cells together in a table in epub 2.0 fluent #14331394Aaron Troia
ParticipantMartin,
I’m not sure there is a way to do it natively within InDesign, but if you know a little HTML & CSS and feel comfortable unzipping and rezipping the file, you can always wrap your table in a div with a class that has the attributepage-break-inside:avoid;
I can’t say it’s perfect but I’ve had fairly good results with it in the past.
That said, this type of thing is the nature of reflowable ebooks, things break across pages that sometimes you just can’t control like you can in print. And since your readers can change variables on the page such as text sizes, margins, and leading on their ereaders, sometimes you just have to throw up your hands and say “good enough.”
AaronAaron Troia
ParticipantValerie,
I’m not sure how many footnotes you have, but probably one of the easiest ways is to go through and replace your footnotes with InDesign’s Footnotes (right click > Insert footnote). That will create the cross-reference linking that is needed in Epub’s and Mobi’s for linked footnotes.
AaronAaron Troia
ParticipantHey Austin,
I did a quick InDesignSecrets article search and ran across an article that David Blatner wrote that might be of interest to you regarding indexing plugins, it’s from 2014 but all the scripts/plugins should still be fairly relevant today.
https://indesignsecrets.com/alternatives-indesign-indexing.php
I’m sure there could be a work around with building a TOC with the names paragraph style, GREPing in a tab before the last name, converting to a table, swapping the First/Last Name Columns, and then converting back to text, but it might become a bit cumbersome to do each time a new name is added, and that doesn’t take into account that you’re wanting to do it across multiple files.
AaronAugust 28, 2020 at 12:03 pm in reply to: Problems placing book-length docuements into IDCC2015 #126743Aaron Troia
ParticipantNo problem, I’m glad it worked! I work at a publishing house and I think we actually ran into this same issue a few weeks ago.
Aaron Troia
ParticipantDoes text wrap do anything?
August 24, 2020 at 10:36 am in reply to: Problems placing book-length docuements into IDCC2015 #126678Aaron Troia
ParticipantAnother thing you could try, if you have a version of the PDF before the author made changes, would be to compare the PDFs to each other in Acrobat. That should give you a text-to-text comparison of what changed so you would only have to change the things the author changed instead of reflowing the whole document.
https://acrobat.adobe.com/us/en/acrobat/how-to/compare-two-pdf-files.html -
AuthorPosts