Skip navigation

Login or Register to find out more about try67
Gilad D (try67) has no profile image available
Name:
Gilad D (try67)
Status Level:
My URL:
http://try67.blogspot.com/

Recent Activity

Gilad D (try67) replied to folder level javascript.

"Yeah, the function definition doesn't look right.. It should be something like this:   SaveXml = app.trustedFunction(function() {     app."

in JavaScript 15 replies
52 minutes ago
Gilad D (try67) replied to executing saveAs function in adobe reader.

"Since app.fromPDFConverters is empty in Reader, the answer is no, it's not possible."

in JavaScript 4 replies
2 hours ago
Gilad D (try67) replied to Trusted function not reffered in PDF file - Adobe reader.

"Does the file have Save Rights applied to it? Which version of Reader is used? Does the alert show?"

in Adobe Reader 6 replies
4 hours ago
Gilad D (try67) replied to Substitution for "Named Destinations"

"Yes, this functionality can be duplicated using JS, but it feels like re-inventing the wheel a bit... Have you tried using Save As (not just"

in JavaScript 1 replies
5 hours ago
Gilad D (try67) replied to how to create dynamic hidden subforms in lifecycle

"You should ask in the LiveCycle Designer forum."

in LiveCycle Designer 2 replies
6 hours ago
Gilad D (try67) replied to Send to Back in XPro

"There's no such thing in Acrobat. What you can try to do is set the fill color as Transparent."

in Creating, Editing & Exporting PDFs 1 replies
6 hours ago
Gilad D (try67) replied to How to make a TOC link to comments?

"This might be possible to do with a script, but since it is a very customized task I don't think you'll find any code samples that will hel"

in Creating, Editing & Exporting PDFs 2 replies
6 hours ago
Gilad D (try67) replied to URLs & Links In Comments Not Clickable?

"You can't. Comments contain only plain text, with some basic formatting options."

in Collaboration & Commenting 1 replies
15 hours ago
Gilad D (try67) replied to subtract and divide in a single custom calc script

"Remove the part that multiplies it by 100 from the code...   The thousands separator can be set via the Format tab."

in JavaScript 7 replies
16 hours ago
Gilad D (try67) replied to When combining multiple PDF's, the field properties change

"Possibly because you have other fields with the same name in one of the other files you're combining..."

in Creating, Editing & Exporting PDFs 4 replies
17 hours ago
Gilad D (try67) replied to subtract and divide in a single custom calc script

"That's because you need to divide the new salary by the old one, not the other way around. I believe this code should work correctly:   va"

in JavaScript 7 replies
17 hours ago
Gilad D (try67) replied to Question to Adobe: Ruling out non-Adobe viewers via Acrobat Javascript

"Not really, but I also don't use many non-Adobe PDF apps... You can try to contact Foxit support and ask if they have such a document availa"

in JavaScript 41 replies
17 hours ago
Gilad D (try67) replied to Question to Adobe: Ruling out non-Adobe viewers via Acrobat Javascript

"That's an Acrobat JavaScript Reference Guide. Other PDF applications are not forced to follow it..."

in JavaScript 41 replies
17 hours ago
Gilad D (try67) replied to subtract and divide in a single custom calc script

"Is this the calculation script for Pay4? If so, what kind of value should it have? The percentage rise between the old and the new salaries?"

in JavaScript 7 replies
17 hours ago
Gilad D (try67) replied to Acrobat Pro 9.5.5 - Multiple Page Template question

"You just need to duplicate the code you have (assuming it works):   var expTplt1 = getTemplate("Client1"); expTplt1.spawn(numPages,true,f"

in JavaScript 2 replies
17 hours ago
Gilad D (try67) replied to Question to Adobe: Ruling out non-Adobe viewers via Acrobat Javascript

"But the script has no way of knowing that..."

in JavaScript 41 replies
20 hours ago
Gilad D (try67) replied to Question to Adobe: Ruling out non-Adobe viewers via Acrobat Javascript

"That's no good. The fact that it doesn't do anything isn't detectable. You can only find that out if there's some kind of indicator, like a"

in JavaScript 41 replies
20 hours ago
Gilad D (try67) replied to Question to Adobe: Ruling out non-Adobe viewers via Acrobat Javascript

"What do you mean, it doesn't support it? Does it throw an error? Does it always keep the value as true, even if you set it to false? If no"

in JavaScript 41 replies
20 hours ago
Gilad D (try67) replied to can Acrobat XI Pro track changes?

"No. Acrobat is not a text editor and has no such features as "Track Changes".   You could run a Document Compare on both files, though. It"

in Creating, Editing & Exporting PDFs 2 replies
20 hours ago
Gilad D (try67) replied to How to toggle highlight fields?

"Not really. You can use the same script I gave you for the reset button to set the fill color of the fields in the WillPrint event... but y"

in JavaScript 18 replies
21 hours ago
Gilad D (try67) replied to Need to detect length of text and fire script if it's 16, 20, or 36 chars long

"But if the user enters the value by hand and they want to enter 36 characters your script will fire 3 times... Once when they reach 16, aga"

in Forms 6 replies
21 hours ago
Gilad D (try67) replied to Need to detect length of text and fire script if it's 16, 20, or 36 chars long

"Use the Validate action. "event.value.length" will return the length of the text entered by the user."

in Forms 6 replies
21 hours ago
Gilad D (try67) replied to How to toggle highlight fields?

"var fields = ["CardNumber", "ExpDate", "SecurityCode", "TotalAmount"]; for (var i in fields) {      this.getField(fields[i]).fillColor = c"

in JavaScript 18 replies
21 hours ago
Gilad D (try67) replied to How to toggle highlight fields?

"You can create your own reset function that changes the fill color of those fields and add a Reset button to your field that will call it."

in JavaScript 18 replies
22 hours ago
Gilad D (try67) replied to How to toggle highlight fields?

"You have to apply it to all the fields for it to work properly."

in JavaScript 18 replies
22 hours ago