Back

If your email is not recognized and you believe it should be, please contact us.

Forum Replies Created

Viewing 15 posts - 271 through 285 (of 372 total)
  • Author
    Posts
  • in reply to: Grep help for cookbook ingredients #89944

    Did you see the minor change in the last GREP? [\xBD\xBC\d]+ will find a fraction, a number AND a number with a followed fraction!

    in reply to: Grep help for cookbook ingredients #89940

    > Do I understand correctly that I have to select each text frame and apply the script?

    Did you remove your last post? > I assume, that you work with para styles and apply the character style with a GREP-style!

    > When I have something like2¼ cups it skips the first number and gives me the fraction and the cups.

    You get, what you want ;-)

    [\xBD\xBC\d]+(\?\d)?\x20\w+\.?
    

    Kai

    in reply to: Grep help for cookbook ingredients #89926

    Try this one:

    [\xBD\xBC\d](\?\d)?\x20\w+\.?
    
    in reply to: Spliting text boxes #89925

    This should be possible with Adobes SplitStory-Script. You will find it under Scripts > Samples.

    Kai

    in reply to: GREP expression for commas #89922

    Gregory, this sounds easy, but needs maybe a bit more explanation.

    However:
    The first character after a carriage return: \r\K[^.]
    All characters after a carriage return, that are not a period: \r\K[^.]+

    This will find also a return after a return and maybe too much …

    Kai

    in reply to: InDesign graphic artist who can't learn InCopy #89914

    Sure why not. Mail me: infoATruebiarts.de

    in reply to: InDesign graphic artist who can't learn InCopy #89904

    Jill, I’m a german speaking InDesign and InCopy-Trainer. When I start long time ago with InDesign and InCopy, I found, that the InDesign AND the InCopy-Trainings at Lynda.com are very well done and especially the Incopy workflow is very well explained. I could understand everything, although it is not my mother tongue.

    To your problem:
    It sounds, that both of you have no good idea, how to start and it sounds, that you get icml-files instead of assignments.

    So, some thoughts:

    1. The designer work in InDesign.
    2. The editor work with InCopy.
    3. Both can work on the same network, but Dropbox and working from home will work too.
    4. You and the designer need the same fonts. There is no real packacking!
    5. You have the ability to change text, but no geometry.
    6. The designer must start a workflow and give you the right for different stories. There are several ways to do this!
    7. After that, you could edit the indesignfile or a so called assignment (e.g. some spreads instead of the whole document).
    8. You should never edit the icml-files, since this shows only text and not the geometry.
    9. Once the workflow has started, you must check out the stories. Otherwise it is not possible to edit something.

    I did a presentation in 2013 for Adobe. The presentation is in german language, but it should work without any sound too ;-)
    https://www.youtube.com/watch?v=sR–k7Oa2qw&t=28s
    The InCopy-part starts at 41:15.

    I would think, that a online-session (1 hour) could be helpful to him and then he should watch the lynda-training again.

    Kai

    in reply to: Cell Styles – The blue lines keep resetting! #89797

    >> when i go back into the settings, the blue line now shows around the whole of the cell again. it’s as if it doesn’t save my settings..,.

    That is the normal behavior!

    So make a small test:
    1. Create a new table with 3 columns
    2. deselect everything
    3. alt-Click on the button for new cell style
    4. Go to strokes and fill, deselect all blue lines, except the bottom
    5. choose a 2 Pt stroke in red
    6. Select a cell in your table and apply the style
    7. Expected Result: You should have a cell with a 2 Pt red bottom stroke

    8. Go back to your cellstyle and have a look at strokes and fill
    9. Alle blue lines are shown, because this is a Proxy of your cell
    10. The important thing here is, that there are no values shown, because they are different on each side
    11. If you deselect everything except the bottom, you will see your 2 Pt red again
    12. But if you select e.g. the top you will see no value, cause these values are inherit from the parent table

    Now clear?

    Kai

    in reply to: Images to hyperlink #89754

    The benefit of a label or metadata is, that you can apply it directly to the object. So the script can read the url and apply it to the parent of the PDF > the frame.

    in reply to: Images to hyperlink #89743

    Hi Luiz,

    first it is not clear, if you need the hyperlink on a addtional textframe or on the frame, that holds the PDF.

    If the last one: You could give the frame a label with the hyperlink or could enter the url e.g. in the description-field of the metadata in the PDF. I did not test it, but it is possible to read the value by the Objectexportoptions.

    Kai

    in reply to: indesign to epub | kindle line spacing locked & not recognized #89740

    I tested this today on a Kindle Paperwhite, I assume Version 1 or 2 from 2012: Here line-height is honored!

    Kai

    in reply to: Epub export warnings #89730

    Hi Chris,

    most of the error messages has nothing to do with images. Since CC, frames are sadly exported with a div-element and get width, height and some more attributes applied. Another problem is, that anchored-inline elements are now honored in a wrong way and get rasterized. So the idea to find those elements:

    Open your EPUB in e.g. BBEdit. Navigate to the css-file and at the bottom you will find a lot of generic classes. Search those generic classes in your html-files.

    Most of the warnings can be ignored. But some of them, can realy mess up the look of your epub.

    Kai

    in reply to: Export pdf in Original Folder #89631

    If I understand the question correct, the name of the preset is “LR-Bleed-Crops-Slug” and the pdf should get “_LR” as part of the name?

    I would:
    1. Check, if the preset exists
    2. Check, if the current document was saved before (otherwise there is no file path) and even modified
    3. Make a reference to the new file name and file path
    4. Export with the preset
    5. Close without saving

    // your preset name
    var pdfPreset = app.pdfExportPresets.itemByName("LR-Bleed-Crops-Slug");
    if (!pdfPreset.isValid) {  
      alert("Your preset doesn’t exist!");
      exit();
    }
    
    while (app.documents.length) {
      var curDoc = app.activeDocument;
    
      // check if the doc was saved or modified
      if (!curDoc.saved || curDoc.modified) {
        alert ("Save your doc before!");
        exit();
      }
    
      // built the PDF name
      var pdfName = curDoc.name.replace(/\.indd$/i,"_LR.pdf");
    
      // path to the folder of the indd-file
      var fPath = curDoc.filePath;
    
      // reference to the new file
      var pdfFile = new File(fPath + "/" + pdfName);  
    
      // export the current file …
      curDoc.exportFile(ExportFormat.pdfType, pdfFile, false, pdfPreset);
    
      // … and close the document
      curDoc.close(SaveOptions.NO);
    }
    

    Kai

    in reply to: URL #89521

    John, I’ve no idea (for the moment) what’s going wrong here. The hyperlink anchor is missing during the export in your document. If I copy a hyperlink from your doc into a fresh one > anchor is missing. BUT: If I create a hyperlink in a fresh doc and export to fixed layout or if I export your document to reflowable EPUB, everything is fine.

    Normally I would say, it’s a bug. In this case, I’m not sure, cause it works with a fresh doc.

    in reply to: URL #89514

    Sadly no. If I inspect the code in the EPUB, the hyperlink is missing. It seems also, as the hyperlink is a bit transparent? So to find the error, a idml with ONE page is needed.

Viewing 15 posts - 271 through 285 (of 372 total)