GREP find specific number
I am trying to put together a GREP that will look through and find 7. thats the number seven followed by a point and then apply a style to the point and not the seven. Ex. if there is 17.99 the style...
View ArticleRe: Snap all rows in table/document
Hi, Exam a function snapRow() ==> snapColumn() in original, probably.It is a horizontalOffset property used to find a widest cell in column.This is useless if the goal is to snap row's height. There...
View ArticleRe: GREP find specific number
Hi, Possitive lookbehind is what you need:app.findGrepPreferences.findWhat = "(?<=7)\\."; it means ==> find every "dot" which follows "7". so your code could be:app.findGrepPreferences =...
View ArticleRe: Folder action to package and create pdf Applescript folder action
Take a look here: http://forums.adobe.com/message/4919221#4919221 best, gr
View ArticleRe: GREP find specific number
actualy.. you should also use a lookahead, so you won't find stuff like: "See page 7." so the grep expression is: (?<=7)\.(?=\d)and for scripting, using peter's trick i learned a few days...
View ArticleSpread Move problem
Hi ExpertsI want to move my spread (with all Page on that spread) at beginning using script.I try this : #target indesignvar myDocument...
View ArticleRe: Spread Move problem
Hi, move() is a method so you can't assign any value to this like... "move = "This method waits for two parameters1. where (how) to move2. relative to what so use:myDoc = app.activeDocument; spred =...
View ArticleRe: Spread Move problem
@Bill – see also into the documentation of the DOM (document object model) at: http://www.jongware.com/idjshelp.html It's a indispensable source of information…Especially the chm files for...
View ArticleRe: How can I save individual merged records automatically in seperate folder?
There are a couple of ways that this could be done but it involves scripts. See the following adobe forum posts: http://forums.adobe.com/message/5193375#5193375http://forums.adobe.com/message/5159865
View ArticleRe: Folder action to package and create pdf Applescript folder action
Hi BabsI ended up paying someone to create the script. They did a fantastic job creating a droplet that has options to package, create PDFs to presets, print to presets, create an IDML file, retrosave...
View ArticleUsing javascript how do I address individual items in a group?
I want to:Find out how many items are in a groupAddress/work with each item in turn In the documentation ways, I can find ways to address specific types of items in the group but I can’t see anyway to...
View ArticlePanel for holding text (not notes panel) and a search internet contextual...
I often get text sent to me via email which I then copy and paste to a frame in the pasteboard, but sometimes the document is hundreds of pages long and the changes are throughout. Would really love a...
View ArticleRe: Using javascript how do I address individual items in a group?
@Frederick What do you *exactly* mean by "handle them generically"?What is the specific task here?Just an example:you could take allPageItems for the specific group and loop through them to filter out...
View ArticleRe: Using javascript how do I address individual items in a group?
@ Laubender Thanks that was the needed push to read the reference. I think I was reading the definition for pageItems wrong. Reading it correctly it looks like pageItems are anything that can be placed...
View ArticleRe: Using javascript how do I address individual items in a group?
In this regard, the word "all" is a bit misleading.The scope of allPageItems sometimes is restricted :-( "myDoc.myLayer.allPageItems" cannot address pageItems on master spreads! "myMSO.allPageItems"...
View ArticleRe: Using javascript how do I address individual items in a group?
@ Laubender Thanks for the clarification. For my purposes (providing meaningful information to the user when doing error checking on a selection) allpageItems should work. I may come back later to...
View ArticleRe: Panel for holding text (not notes panel) and a search internet contextual...
Hi, you may have a look at this swiss forum thread to solve your second wish:http://www.hilfdirselbst.ch/foren/gforum.cgi?do=post_view_flat;post=45 5213;page=1;sb=post_latest_reply;so=ASC;mh=15; Edit:...
View ArticleRe: Indesign Script Opening Flex App / Tab Handling
Hi All I'm doing somthing similar. I have many textArea in my SWF file and I can't copy and paste text in it using shortcuts.If I paste contents using the Indesign menu commend, all works fine. Someone...
View Article