Re: Create a TOC in an actual table?
Hi, In case of "myT" - you are right - that's my fault, sorry.In case of opposite width effect... hm... is your left page measurements growing from right to left? To ensure zeroPoint at left-top corner...
View ArticleAdd item to Links palette flyout
Hi all,I'm trying to add a custom item to the flyout menu in the Links palette. Basically it would behave exactly like this http://in-tools.com/article/scripts-blog/convert-colors-to-grayscal-in...
View ArticleRe: Create a TOC in an actual table?
Still nothing. Did i put those last two lines you suggested in the wrong spot?
View ArticleRe: Create a TOC in an actual table?
Hi, Notice indent = 5 With your measurement unit (inch) it is pretty big.Modify myIndent value. Jarek
View ArticleRe: Create a TOC in an actual table?
AHHH im silly i didnt even consider that! well all is well now thanks a bunch for all your help!
View ArticleRe: from paragraph Style to "New Hyperlink Destination"
its perfect Green4ever,Thank you very much this what i was looking for, but the only thing is .. can the list be the same as what been found in paragraph style, in aother meaning if found "Green" in...
View Articlescripts export information about cross references
scripts export information about cross references in the active document and saves the result to csv/txt file (es: LOIC script Links2CSV; http://www.loicaigon.com/en/solutions-en/downloads/). I am...
View ArticleRe: Add item to Links palette flyout
Hi, use app.menus.item("$ID/#LinksUIPanelMenu") to refer to this menu Jarek
View ArticleRe: Add item to Links palette flyout
Well goodness, I guess that was the one I didn't use! It worked perfectly! Care to share how you got that info? Nate
View ArticleRe: Add item to Links palette flyout
Hi, Is not a straight way but this method:app.findKeyStrings() is useful. I just listed all app.menus - found proper one with localized name - and used app.findKeyStrings(name) to reach unlocalized...
View ArticleRe: cleaning up text frames
Thank you for that Uwe. I've modded the script again but no joy. Here's what I have so far: var myStories = app.activeDocument.stories.everyItem().getElements();for (i = myStories.length - 1; i >=...
View ArticleRe: from paragraph Style to "New Hyperlink Destination"
The names should be unique. If you choose same name for the 2nd para (destination) it will throw error. But you can add your text "Green" at the end/start of each of name. see the e.g. below. var myId...
View ArticleRe: How to capture the contents between the tags?
Hi, Thanks for the response, as per the client instructions, we shuold not modify the XML structure, could you please check and confirm again? Thanks, Praveen
View ArticleRe: cleaning up text frames
@Colin – don't know, if I have time to look into this more deeply today or the next days. Just looked at your if statement:You have to eliminate the quotes from TextWrapModes.NONE. TextWrapModes.NONE...
View ArticleRe: How to capture the contents between the tags?
Hi Gejaraja, Please try the below snapshot method. I created the one character style name is "SpecialChar" magenta color properties only. Definitely your <cite> tag texts applied the any...
View ArticleRe: How to capture the contents between the tags?
Yeah, Including a GREP Style inside a Paragraph Style sounds good to me as well.
View ArticleRe: cleaning up text frames
@Colin – could you provide an IDML for download as well? Uwe
View ArticleRe: How to capture the contents between the tags?
Hi phil, I tried with your suggestion and found below 2 feedbacks: (1) ',' in other places also getting disturbed(2) '[NDASH]' between the numbers not handling Rest looks fine. Please advise. Thanks,...
View ArticleRe: How to capture the contents between the tags?
For Ndash between numbers, append the following GREP at the end your previous expression (without quotes). "|(?<=\d)–(?=\d)" For "," please specify with some examples (i.e. Specify where you want...
View ArticleSelect group with label
hi, I try to select group on page var doc = app.activeDocument;var myModul = doc.groups.item("modul");//var myModul = doc.groups[0]; //$.writeln("ID: "+myModul.id);$.writeln("Constructor:...
View Article