Re: Modification Needed to Jongware's CopyCutter
Hi Jarek, Sorry to dig this up again! The script is working great but if I try to execute it without extending the bottom of the text frame down, I get an error message. For example; If execute the...
View ArticleRe: ScriptUI: Are there ways to mimic a treeview node doubleclick?
Andreas, Nodes can be used for double-click without any problem. That is to say, you check if the tree has been double-clicked, then you check what in the trees was clicked. Something like this:...
View ArticleReplace table row cell[1] text with cell[0]
Hi Forum, Thanks for your support so far. I have come up with new request, please anyone there to quench by thirst; actually i want to replace, cell[1] of the every rows of every table with cell[0] of...
View Article[JS][CS5/6] XML image href filename character encoding?
I've got an XML file that I'm importing with an XSLT transformation and one of the items transformed is to create an image element using the value in the name element like so <xsl:template...
View ArticleMicrosoft excel import settings.
Hi Forum, I need a help to select "Show Import Options" while placing excel files using Script. and then setting: tableFormatting = TableFormattingOptions.excelFormattedTable; I can't find the...
View ArticleRe: Replace table row cell[1] text with cell[0]
@rajnikids – do you mean you want to change the contents (=unformatted text) of every column[1] of every table to the corresponding contents of column[0] of the particular table? Does formatting of...
View ArticleNaming PDF using para.style applied
Hi Forum! Could any body tweak on this script.please. while runnig this script, i could able to export PDF. The pdf naming will be the contents inside the document on everypage, on which paragraphStyle...
View ArticleRe: Replace table row cell[1] text with cell[0]
Hellow Laubender, Superb and very technical approach of duplicating the columns contents. Very surprised to see your reply after a long time... thanks so much for your explanations, have litereated me...
View ArticleRe: Overridden master item not positioning correctly
UPDATE 6/16My operator showed me another thing that's been happening with the particular file / project, and I think its related to the items coming of the master incorrectly. On the master pages, on a...
View ArticleRe: Microsoft excel import settings.
Hi Dhinak, The documentation for properties/methods can be found here http://jongware.mit.edu/idcs6js/ You can search for other versions of CS documentation if you are not using CS6. Here is an example...
View Articlehelp with a grep string needed
hi... a colleague of mine has asked a question and i must admit grep is not something i dabble in much. can someone please help? the question is: The requirement is to find and select from the last EN...
View ArticleRe: help with a grep string needed
Hello lilia! If you need to select everything AFTER the last EN-Dash, your solution is correct, but a bit redundat. you can loose either the lookbehind or the class: "(?<=–).+?$" or "[^–]+?$" You...
View ArticleRe: Overridden master item not positioning correctly
Hello Ken. Those problems can be caused by a lot of things. First, try turning on or off the "Layout Adjustment" option. It worked for me sometimes. Second, try exporting the file as IDML and opening...
View ArticleRe: help with a grep string needed
lol i will when i have something to dabble with. the solution needs to include the en dash so it can be styled.it needs to select from and inlcuding: – (en dash) and all text to and including the...
View ArticleRe: help with a grep string needed
that works from the 1st en dash in the paragraph, it needs to style from the LAST en dash.thanks for helping so far
View ArticleRe: help with a grep string needed
true.. just tested it.. so:–[^–]+\r (it will select the end of paragraph also)
View ArticleRe: help with a grep string needed
yes im testing as youre giving them to me. the latest "–[^–]+\r" doesnt seem to do anything.
View ArticleRe: ScriptUI: Are there ways to mimic a treeview node doubleclick?
Thanks Peter, you are perfectly right! I must have looked at the node (listitem) only, when I checked for an onDoubleClick event on objects by reflection, since it's obviously there, when I check the...
View ArticleRe: help with a grep string needed
i should really learn to test what i post .. sorry: –[^–]+?\r
View Article