Forum Replies Created
-
AuthorPosts
-
July 28, 2016 at 11:46 pm in reply to: Best way to change the page size of a PDF and maintain the proportions by sca #86997
Gert Verrept
MemberIf you have to do this often,consider buying pitstop pro. You get a lot of action lists.
Gert Verrept
MemberIt’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.
Gert Verrept
Member1. 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.Gert Verrept
Membera. 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.Gert Verrept
MemberIf 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”?
Gert Verrept
MemberMake sure the tables and charts are all inline objects, then you can apply a para-style to them (select “indent and spacing” – centered).
Gert Verrept
Member@michael: Everything that can split documents is interesting. just send it to gertverrept@gmail.com
March 30, 2016 at 2:16 am in reply to: Embed a PDF file(White Paper Research) into an Interactive PDF #83458Gert Verrept
MemberWhy 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.
March 18, 2016 at 11:21 am in reply to: Script to change the language of all text on document #83075Gert Verrept
MemberI 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){}
}Gert Verrept
MemberJust 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)December 15, 2015 at 3:46 am in reply to: Collect individual files contained in a book in one .indd document #80182Gert 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!Gert Verrept
MemberI 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/Gert Verrept
MemberIt’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.
Gert Verrept
MemberYou 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. -
AuthorPosts
