Saturday, January 14, 2012
var myString = 'The quick brown fox jumps over the lazy dog.';
var re = new RegExp(/o/);
var result = re.exec(myString);
while( result ){
alert(result);
myString = myString.substring(re.lastIndex);
var result = re.exec(myString);
}
Saturday, January 14, 2012
I will get all graphic frame bounds in an InDesign document and paint them in outside.
Saturday, January 14, 2012
I have a problem to solve numbre.
Is there a simple solution ?
Saturday, January 14, 2012
How to create InDesign paragraph style from extendscript ?