Re: Script to convert one style to another
can u send me ur paragarph style pallete snap shot
View ArticleRe: Script to make text frame or table cell hit precise depth - ID5.5
Hi VamitulYou are an insanely busy prince or princess as the case may be.What this script will be of use for, will be adverts that appear in newspapers. They are many and varied but all adds that...
View ArticleRe: Open With
Hi Trevor, Is this script for private or public consumption? Meaning, can we rely on the way things are set up on your computer, or are you targetting unknown systems? I suppose the answer's the...
View ArticleRe: Open With
I change my locale to German and restarted the computer and I still got the same results.But I am wondering if the results would be different on a non English version of ID on a non English Locale system?
View ArticleRe: insert or replace last content
Thanks to both the G's.... everything is superb & fantastic, still my request is here..... I do want to change fullstop only to the bullet of last paragraph. and rest of the bullets are like...
View ArticleGrab graphic layer option by item name
Hello,I can easily acess a graphic's layer option by using the following: var doc = app.activeDocument.allGraphics;doc[0].graphicLayerOptions.graphicLayers.itemByName( "Orange").currentVisibility =...
View ArticleRe: Grab graphic layer option by item name
Hi, name in layers palette is always a reference to a page item.Assuming only one image / graphic in it you can access it by var test = app.activeDocument.pageItems.itemByName("Bee").graphics[0];
View ArticleRe: insert or replace last content
whoo.. well that is a bit more complicated. For each result you have to test first if the next paragraph bulletsAndNumberingListType is not ListType.BULLET_LIST. if so, myResult[i].changeGrep();...
View ArticleRe: insert or replace last content
Thanks Vam,, Could you help me to select, the last content of the paragraph. as it tried above... but the problem is ,,, is replacing the last text if there is no paragraphs after bullet and numbering...
View ArticleRe: insert or replace last content
ah.. could you restate that, please? I don't understand.
View ArticleCan i keep the same format in popup-message? [CS6-jsx]
Sometimes i need to have 2 or more lined alert message, but it appears not very beautiful.Is it fate? Can i keep the line 2 with the same format as line 1? Thanks.
View ArticleRe: Can i keep the same format in popup-message? [CS6-jsx]
Start with a blank first line. alert("\nText in line 1\nnext in line 2"); Or, as is intended, use the first line for a title: alert("Title for my List\nText in line 1\nnext in line 2"); Dave
View ArticleRe: Can i keep the same format in popup-message? [CS6-jsx]
can you share the code you use for that? On Windows, using plain alert("line1\nline2") i get this:
View ArticleRe: insert or replace last content
Sorry Vam for the confusion... this is what i mentioned.... for(n=0; n< myResults.length;n++){var fnd = myResults[n].paragraphs.lastItem().lines.lastItem();...
View ArticleRe: Can i keep the same format in popup-message? [CS6-jsx]
Oh, that's a good point, the output here is platform dependent because the alert system uses OS services. So, you see this auto-titling only on Macs. Dave
View ArticleRe: Search and Replace Character Styles
Just wondering if you might be able to help me, i need to do the same thing as the OP but with paragraph styles, what would i need to change?
View ArticleRe: Can i keep the same format in popup-message? [CS6-jsx]
guess 1-0 for macs again, still like windows better.
View ArticleRe: about paragraph style?
Hey there, i used that first script you added to do what it was meant to and it worked a treat, so thank you, but i wanted to ask what i would have to do to add extra styles to change in the same...
View ArticleRe: insert or replace last content
there are multiple problems with your code. For one, what if you don't have any punctuation at the end of the list? per your example:• vamitul; • vamitul; • vamitul ///...
View Article