Forum Replies Created
-
AuthorPosts
-
Aaron Troia
ParticipantDwayne, I like that work around, I’m going to have to start including that in my Character styles.
Aaron Troia
ParticipantI could be wrong, but I don’t think it is possible, reflowable and FXL both have their own UI/chrome and I don’t think it’s possible to use one for the other.
Aaron Troia
ParticipantHave you tried the SplitStory script that’s in the sample scrips provided in InDesign? If you havent, I would give it a try, it should break the thread link between text boxes. I personally use the StorySplitter_3.0 script by Adi Ravid but I cant seem to find a useful link to it. Well, I dont know what the rules are on here about posting other’s scripts for others to use. Anyway, if anyone has an issue with me posting this, let me know and Ill take it down, but here is a link to it.
StorySplitter_3.0 by Adi Ravid
https://www.dropbox.com/s/7btdkce2q36zdth/StorySplitter_3.0.jsx?dl=0Aaron Troia
ParticipantUnfortunately it’s not possible, you have to use a span tag and class to do bold italic text on ePub Export. If you need/want to edit the HTML/CSS I would do a GREP search for your span tag <span class=”[your-bold-italic-class]”>(.+?)</span> and replace with $1. This is something that bugs me too, so for all my ePub Exports I go in and clean up all the , , and <sup> tags that have classes (that I dont want to have classes) and any spanned classes that I can convert to semantic mark up such as bold italic. Hope this works for you.
November 10, 2014 at 1:09 pm in reply to: Create indent without starting an entirely new paragraph #71547Aaron Troia
ParticipantIn the paragraph style, under indents and spacing, make sure that space before is set to 0 and change the first line indent to an indent that you feel is appropriate, this should bring the paragraphs closer and give you the indent you are looking for.
Aaron Troia
ParticipantUnfortunately there is not a inside gutter setting in InDesign like you are referring to (or at least one that I know of), I would adjust your inside margin on your master pages so that it is adequate enough so that nothing will be printed within the inside edge gutter (or inside margin in InDesign) when placing your text frames. You can adjust your margins on your Master Pages after laying out the book with Margins and Columns (with Enable Layout Adjustment checked) but you might have to go and make sure everything has adjusted properly.
Aaron Troia
ParticipantWow, that is strange. I did a quick search and found an old Adobe forum post where Dave Saunders and a few others had written some scripts that might be of use. The post is a few years old, but I would say the (Javascript) scripts would still be worth a try.
https://forums.adobe.com/message/1106498
I tried the script posted by Kasyan Servetsky (post 16 from Jun 23, 2010) in CC and it worked with no issues, given doesnt really select them it just deletes the unused. So hopefully one of the scripts posted on that page should (hopefully) work and you will then have something to assign a KBSC to.
Aaron Troia
ParticipantThank you so much Oleh, I’m not working on the projects that I was working on when I first posted, but I know this script will come in handy on future eBook conversions that come my way!
Aaron Troia
ParticipantOh, we found it, the body paragraph style had the Paragraph Layout set to Span All in the Span Column paragraph settings for some reason.
November 3, 2014 at 3:08 pm in reply to: I'm going crazy… lady says my pdf file has ICC colors in it #71405Aaron Troia
ParticipantWow, that doesn’t sound fun :( I would probably be in the same boat if it were me as I’m not familiar the color profiles end of InDesign. I did a little searching (as I was curious and would want to know what to do if I had the same issue) and found another form post on here that might be of help.
Aaron
Aaron Troia
ParticipantHave you tried converting the text on your cover page to outlines? You could also export the first page as a PDF pull it into Photoshop and create a JPG from it and then use that as your cover.
Aaron Troia
ParticipantJust off the top of my head, this should work though
Find: (\d)(\d+\.\d%)(\d)(\d+\.\d%)(\d)(\d+\.\d%)
Replace: $1($2)$3($4)$5($6)Aaron Troia
ParticipantThanks David, I’ll have to try that. It might be hard to do a reinstall here at work (I’m currently on 10.6.8, pre-CC app) so I guess Ill just accept the fact that I cant use any .zxp plugins (unless there is another way to instill the .zxp files without using EM), but I was noticing the same issue at home on Mavericks so I will give your suggestions a try at home and hopefully something will work :)
October 10, 2014 at 11:30 am in reply to: Images suddenly warped in Kindle and Samsung Galaxy #70976Aaron Troia
ParticipantYeah I usually have to go into my InDesign exported ePubs and fix up the code on images. I normally set my images to be centered and, if possible, stretch the width of the page, unless I’m floating or something else, but this gives me a good base and a starting point to do more if need be. you might try this and see if it works for you. This also works on the iPad, though for centering issues, you would need to wrap the
tag in an empty span tag.
CSS:
.center {
text-align:center;
margin:0;
text-indent:0;
}
img {
width: auto;
max-width: 100%;
}
div.image {
text-align:center;
}HTML:
<div class=”image”>
</div>Kindle also requires a guide start location as it will not, and cannot be set to, open to the cover, so if your forward is the first text file after the cover, its probably a good chance this is the reason. You can set up a guide section in the OPF file to direct the ereader to open to another part of the book, as long as it is not the cover. You would also need to set an id=”start” in one of your tags in your file as well.
-
AuthorPosts
