Back

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

Forum Replies Created

Viewing 14 posts - 46 through 60 (of 251 total)
  • Author
    Posts
  • Gert Verrept
    Member

    If you have to do this often,consider buying pitstop pro. You get a lot of action lists.

    in reply to: Overset text Conundrum #86550
    Gert Verrept
    Member

    It’s possible that in the documemnt footnote options, the “split footnotes” isn’t checked. We get it often, as we cannot allow the notes to split. So, before formatting, it’s possible that the note takes up more than allowed.

    in reply to: Creating a book file or not? #86213
    Gert Verrept
    Member

    1. indeed, as long as you update the book file too. If not al little yellow warning sign when you open the book file will tell you a “chapter” has been changed.

    2. Every “chapter” can have his own styles, no problem I think. Since you didn’t know that it would become a book, styles can be different.

    A book file = all the files are still separate items, grouped under a new name (kind of “virtual folder with pointers to the different files which make up the book”).
    Learning curve? Not so long, just create the book file, add the chapters, save the book file. Just don’t sync the styles, so all the styles in the different chapters will not be affected.

    in reply to: How to make the number on chemistry formula #85053
    Gert Verrept
    Member

    a. If it’s only one formula, try the kerning options and if needed, the baseline shift. That way you can put in superscript one number and in subscript the lower part. Then use negative kerning on the subscript part to get it under the superscript.
    b. Put the attachment somewhere (imgur) and put the link in the question.

    in reply to: right alignment #85047
    Gert Verrept
    Member

    If the phone number has a fixed format, cannot you try to do a grep search for the number and precede the result with a “tab”?

    in reply to: centering tables in a text flow – indesign cs6 #84007
    Gert Verrept
    Member

    Make sure the tables and charts are all inline objects, then you can apply a para-style to them (select “indent and spacing” – centered).

    in reply to: Split a document by style #83678
    Gert Verrept
    Member

    @michael: Everything that can split documents is interesting. just send it to gertverrept@gmail.com

    Gert Verrept
    Member

    Why not putting the pdf in your document, that way it’s in the e-zine, but it wil be static (no updating possible)? If you keep it stored elsewhere, you will have to keep it as long as the e-zine exists.

    in reply to: Script to change the language of all text on document #83075
    Gert Verrept
    Member

    I found something similar, long time ago, don’t know who made it, but it still works, so I’ll post it here too

    var myDoc = app.activeDocument;

    var myLanguages = new Array();

    for (j=0;j<app.languagesWithVendors.length;j++){
    myLanguages.push(app.languagesWithVendors[j].name);
    }

    myDlg = new Window(‘dialog’, ‘Select language’);
    myDlg.orientation = ‘column’;
    myDlg.alignment = ‘right’;
    //add drop-down
    myDlg.DDgroup = myDlg.add(‘group’);
    myDlg.DDgroup.orientation = ‘row’;
    myDlg.DDgroup.add(‘statictext’, undefined, “Languages”);
    myDlg.DDgroup.DD = myDlg.DDgroup.add(‘dropdownlist’, undefined, undefined, {items:myLanguages})
    myDlg.DDgroup.DD.selection = 7;
    myDlg.closeBtn = myDlg.add(‘button’, undefined, ‘OK’);

    // add button functions
    myDlg.closeBtn.onClick = function()
    { this.parent.close();
    }
    result = myDlg.show();
    alert(myDlg.DDgroup.DD.selection);

    for (i=0;i<myDoc.paragraphStyles.length;i++){
    try{
    myDoc.paragraphStyles[i].appliedLanguage = app.languagesWithVendors.item(myDlg.DDgroup.DD.selection.index);
    }catch(e){}
    }

    for (k=0;k<myDoc.characterStyles.length;k++){
    try{
    myDoc.characterStyles[k].appliedLanguage = app.languagesWithVendors.item(myDlg.DDgroup.DD.selection.index);
    }catch(e){}
    }

    in reply to: Find/Replace Migration #80709
    Gert Verrept
    Member

    Just follow step 2 and copy the complete folder to the new machine. An example below:
    C:\Users\<youruser>\AppData\Roaming\Adobe\InDesign\Version 11.0n_GB\Find-Change Queries (copy the Find-Change Queries folder from machine A to machine B)

    You should look for “Multi Find and Change” from automatication. You can save queries which is a lot easier to work with.
    Or, for free, the GREP_query_manager script (I believe it’s for GREP only, not text)

    Gert Verrept
    Member

    @michael I’m very interested too for such a script, if possible, you can send it to gertverrept[at]gmail[dot]com
    Thanks in advance!

    in reply to: Wrong image appears in PDF #79316
    Gert Verrept
    Member

    I what acrobat are you viewing the file? Is in acrobat “overprint” set to on?
    Just in case https://www.wsprint.org/tips/overprint-preview-in-acrobat/

    in reply to: Printing landscape pages #78452
    Gert Verrept
    Member

    It’s possible that you have to use the setup tab in the print dialog box to get to the prefs of the printer and change the settings as needed.

    in reply to: embedding a file inside ID for an Interactive PDF #78447
    Gert Verrept
    Member

    You can do this: create a tex tbox on the spec sheet and with the text tool still selected, go to the hyperlink panel, select “new hyperlink destination”, the next panel asks you for a name for the “text anchor”. Put in a distinct name.
    Next go to the page you want to link from and create a button. In the button panel select as action “go to destination” and link it to the previously created anchor.

Viewing 14 posts - 46 through 60 (of 251 total)