\n"; ?>
http://acrobatusers.com/forum/227/feed
enjavascript
http://acrobatusers.com/forum/javascript/javascript-10
<p>JavaScript is a prototype-based scripting language that is dynamic, weakly typed and has first-class functions. It is a multi-paradigm language, supporting object-oriented imperative, and functional programming styles.</p>
<div class="og_rss_groups"></div>JavaScripthttp://acrobatusers.com/forum/javascript/javascript-10#commentsFri, 16 Dec 2011 22:54:51 +0000KevinParmenter9954689 at http://acrobatusers.comCalculating totals returning error if any cell is empty.
http://acrobatusers.com/forum/javascript/calculating-totals-returning-error-if-any-cell-empty
<p>I am using a Custom Script to total a column of figures.</p>
<p>-------------------------------------------<br />
var f0=this.getField("txAmount0").value;<br />
var f1=this.getField("txAmount1").value;<br />
var f2=this.getField("txAmount2").value;<br />
var f3=this.getField("txAmount3").value;</p>
<p>event.value=f0 + f1 + f2 + f3;</p>
<p>if (event.value==0)<br />
event.value="";</p>
<p>----------------------------------------------</p>
<div class="og_rss_groups"></div><p><a href="http://acrobatusers.com/forum/javascript/calculating-totals-returning-error-if-any-cell-empty" target="_blank">read more</a></p>JavaScripthttp://acrobatusers.com/forum/javascript/calculating-totals-returning-error-if-any-cell-empty#commentsTue, 20 Dec 2011 23:31:07 +0000kazoom54720 at http://acrobatusers.comInstall Javascript Samples
http://acrobatusers.com/forum/javascript/install-javascript-samples
<p>When I run "Acrobat SDK Folder-level JavaScript Samples Installation Script" I get the error: "Error retrieving user JavaScript path". I have checked and this "path" is supposed to the installed during installation!.<br />
I'm running win 7 pro with Acrobat X.</p>
<div class="og_rss_groups"></div>JavaScripthttp://acrobatusers.com/forum/javascript/install-javascript-samples#commentsMon, 19 Dec 2011 02:23:51 +0000NorthForty54692 at http://acrobatusers.comChanging a text box based on a check box
http://acrobatusers.com/forum/javascript/changing-text-box-based-check-box
<p>Hello,<br />
I am trying to change a text box based on if a check box is checked, here's what I have in the calculate tab of the text box:</p>
<p>if (CheckBox53.rawValue == 1)<br />
{<br />
event.value = "Fail!";<br />
}<br />
else<br />
{<br />
event.value = "";<br />
}</p>
<p>This does not seem to work, does anyone have any ideas?</p>
<div class="og_rss_groups"></div>JavaScripthttp://acrobatusers.com/forum/javascript/changing-text-box-based-check-box#commentsMon, 19 Dec 2011 18:26:51 +0000mark4444az54701 at http://acrobatusers.comConditionnal date calculating
http://acrobatusers.com/forum/javascript/conditionnal-date-calculating
<p>I'm using Acrobat X Pro and looking for a date calculation script based on text fields.</p>
<div class="og_rss_groups"></div><p><a href="http://acrobatusers.com/forum/javascript/conditionnal-date-calculating" target="_blank">read more</a></p>JavaScripthttp://acrobatusers.com/forum/javascript/conditionnal-date-calculating#commentsThu, 08 Dec 2011 22:56:16 +0000The X54598 at http://acrobatusers.comAcrobat Fillable Form Text Field : to accept text in Capital Letters.
http://acrobatusers.com/forum/javascript/acrobat-fillable-form-text-field-accept-text-capital-letters
<div id="post-answered">
Answered
</div>
<div class="og_rss_groups"></div><p><a href="http://acrobatusers.com/forum/javascript/acrobat-fillable-form-text-field-accept-text-capital-letters" target="_blank">read more</a></p>JavaScripthttp://acrobatusers.com/forum/javascript/acrobat-fillable-form-text-field-accept-text-capital-letters#commentsFri, 14 Mar 2008 10:12:58 +0000pramod_kmr7336307 at http://acrobatusers.comNEW to Adobe. How to sum fields plus a static number?
http://acrobatusers.com/forum/javascript/new-adobe-how-sum-fields-plus-static-number
<div id="post-answered">
Answered
</div>
<p>I've built a simple PDF for gaming that calculates stats. However one number is a static "10" that must be added to 4 or 5 user input fields. I know how to add the fields, but I can't get the additional "10" that I need to show in the "Total" field.</p>
<p>I've never used Java and I don't know how to do this at all. Any help would be greatly appreciated. Sorry for such a "stupid" question.</p>
<div class="og_rss_groups"></div><p><a href="http://acrobatusers.com/forum/javascript/new-adobe-how-sum-fields-plus-static-number" target="_blank">read more</a></p>JavaScripthttp://acrobatusers.com/forum/javascript/new-adobe-how-sum-fields-plus-static-number#commentsSat, 17 Dec 2011 00:12:09 +0000akenefick54690 at http://acrobatusers.comPrevent user input
http://acrobatusers.com/forum/javascript/prevent-user-input
<p>Hi,</p>
<p>I use a text field which displays a pop-up menu on the mouse-down trigger to fill the field : this is OK.</p>
<p>Now, I need the user to not being able to delete nor to enter any character in the field, how can I prevent that ?</p>
<p>I guess that I need a custom keystroke script, so I tried it… but all my trials also prevent any input from the popup menu…</p>
<p>Can someone show me the right way?</p>
<div class="og_rss_groups"></div><p><a href="http://acrobatusers.com/forum/javascript/prevent-user-input" target="_blank">read more</a></p>JavaScripthttp://acrobatusers.com/forum/javascript/prevent-user-input#commentsFri, 16 Dec 2011 01:08:37 +0000Merlin54678 at http://acrobatusers.comHow to create dynamic web url links using getURL
http://acrobatusers.com/forum/javascript/how-create-dynamic-web-url-links-using-geturl
<div id="post-answered">
Answered
</div>
<p>Hello All,</p>
<p>I am hoping someone can help me with this. I am creating a script that searches for course codes and then creates a link to the registration page for each code found on a pdf document. The links are dynamic so I am passing the links in a string variable to the getURL method as follows.</p>
<p> if ( ckWord == CourseCode[k])<br />
{<br />
console.println(ckWord);</p>
<div class="og_rss_groups"></div><p><a href="http://acrobatusers.com/forum/javascript/how-create-dynamic-web-url-links-using-geturl" target="_blank">read more</a></p>JavaScripthttp://acrobatusers.com/forum/javascript/how-create-dynamic-web-url-links-using-geturl#commentsThu, 15 Dec 2011 14:53:10 +0000Thusi54669 at http://acrobatusers.comCopy then flatten previous page
http://acrobatusers.com/forum/javascript/copy-then-flatten-previous-page
<p>I don't know any javascript so if you can, please help me with a script.<br />
I need to make a button at the botom of the page, that does these things:<br />
- make a carbon copy of the page, after the existing one (just like Ctrl + drag in the Pages field) and then, flatten just that page, not the new copy that has been made.</p>
<div class="og_rss_groups"></div><p><a href="http://acrobatusers.com/forum/javascript/copy-then-flatten-previous-page" target="_blank">read more</a></p>JavaScripthttp://acrobatusers.com/forum/javascript/copy-then-flatten-previous-page#commentsWed, 14 Dec 2011 08:56:47 +0000buzzme54656 at http://acrobatusers.com