Unable to get rgb value from cmyk
Hi, I have been trying to get color values used in my InDesign document in both cmyk and rgb mode. I do so by converting the colorspace of each color in the document to rgb if its in cmyk and then...
View Article2 separate lines of text in DocumentWatermark.jsx
I'm trying to implement the above sample script in InDesign CS5.5, and I was wondering whether there was a way to have 2 lines of text. At present you just have one line -...
View ArticleRe: 2 separate lines of text in DocumentWatermark.jsx
@Mark – did you try to build your string of text with a newline character or a paragraph sign? myDocument.watermarkPreferences.watermarkText = "Confidential"+"\r"+"Not for redistribution"; I used the +...
View ArticleRe: Convert text to table…
@Mark – the chm files are *extremely good* searchable…The OMV on the other hand is not. Sometimes you get answers like: "Too many results found".Just annoying. I never looked back to the OMV since...
View ArticleRe: 2 separate lines of text in DocumentWatermark.jsx
Hi Uwe,Sorry but that hasn't worked. I had tried \n as well, but that didn't work either.
View ArticleRe: 2 separate lines of text in DocumentWatermark.jsx
@Mark – did not test my code, but will it now…The documentation for "watermarkText" simply says "string". What InDesign makes out of it is a "different" thing.The "\r" and "\n" are not accepted...
View ArticleRe: 2 separate lines of text in DocumentWatermark.jsx
Hi Uwe, No problem, thanks for trying. I did wonder if it's an Indesign interpretation of JavaScript problem. Mark
View ArticleRe: Is it possible to use the javascript document object model in eclipse?
If I understood correctly, so you want write ExtendScript in Eclipse instead of ExtendScrript toolkit and you want to get contextual autocomplete function (help system).Bad news - AFAIK I didn't find...
View ArticleRe: Is it possible to use the javascript document object model in eclipse?
An excellent idea, Vamitul! With the help of XSLT, Adobe's omv*.xml files -- the files that contain the ExtendScript Help text -- can be transformed into whatever format is handy. A couple of notes: 1....
View ArticleRe: 2 separate lines of text in DocumentWatermark.jsx
@Mark – you could only set the property "watermarkFontPointSize" to a small value to get all your info in… Uwe
View ArticleRe: 2 separate lines of text in DocumentWatermark.jsx
Hi Uwe,That's true. The original reason for asking was I was given a rather long pice of text to include as a watermark, and it looked better if I could split it up. Fudged it in Acrobat eventually,...
View ArticleRe: Is it possible to use the javascript document object model in eclipse?
I found out that you can include "user libraries" for the complete development environment or for particular projects in Eclipse. These "user libraries" are just *.jsx files that contain the class...
View ArticleRe: Is it possible to use the javascript document object model in eclipse?
i can mostly live without autocomplete (sometimes it actualy annoys me), yet i would still love to use a better tool than ESTK. Even better, i would love the chance to hook up Visual Studio, and use...
View ArticleRe: Is it possible to use the javascript document object model in eclipse?
d.stoeck wrote: I found out that you can include "user libraries" for the complete development environment or for particular projects in Eclipse. These "user libraries" are just *.jsx files that...
View ArticleRe: Is it possible to use the javascript document object model in eclipse?
Run ExtendScript fom Eclipse:http://www.pearltrees.com/#/N-f=1_6208032&N-fa=6208004&N-p=57856299&N- play=2&N-s=1_6208032&N-u=1_820306 String[] commands = new String[]{"cmd", "/c",...
View ArticleProblem with UTF filenames on Mac OS X
Hello,I found on really annoying problem. I save UTF encoding filename and load it with function getFiles() back, but the strings are unexpectedly NOT equal on OS X 10.8. EnteredManually = new...
View ArticleRe: Problem with UTF filenames on Mac OS X
The problem is that on Windows, č is encoded as a hex value, whereas on a Mac it's split into two characters. The only really secure way to avoid these problems is not to use accented characters in...
View ArticleRe: Problem with UTF filenames on Mac OS X
I thought that ExtendScript as high level programming language solve this low-level things instead of me. Stupid idea So I have to redesign whole file management in my project.It can by solved only:1)...
View ArticleRe: Problem with UTF filenames on Mac OS X
The question is what operating systems find acceptable. We all agree that accented characters should be usable on all platforms. But so long as that's not the case, you'd better not use them. Peter
View Article