Quantcast
Channel: Adobe Community: Message List - PDF Forms

Re: PDF text field to be flip horizontal

It is possible when you use a special font.

View Article


Image may be NSFW.
Clik here to view.

Re: Want round down all results

Something like this:How to round numbers using javascript in Adobe Acrobat Pro?

View Article


Re: Bouton dans Acrobat

Qu'appelez-vous "sélectionner" ?Avec ce script le bouton alterne entre les deux couleurs à chaque clic. Avez-vous un exemple ou une maquette à partager ?

View Article

copy entered field

In a form fillable form, is there a way to copy the same field to other locations in a multi page document without having them re-enter the same information

View Article

Re: form calculations don't work, calculation boxes grey'd out

Can you write your calculation in either Simplified Notation or JavaScript?

View Article


Re: Can't redact?

I noticed that docs with an eSign, can't redact. Anyone know why?

View Article

Re: Want round down all results

Thank you for your response. Your example is: 1.2 becomes 1.01.7 becomes 2.0 I want it to always round down: 1.2 becomes 1.01.7 becomes 1.0

View Article

Re: copy entered field

So sounds like you want to have for example, a "name" field on every page. The use enters their name once and it's automatically copied to all the "name" fields on the form?   If this is what you mean,...

View Article


Re: Want round down all results

use the Math.floor() function var a = 1.7;var b = Math.floor(a): Now b = 1.0

View Article


Re: Adobe Acrobat DC denies field calcualtion input / selection

Did you look in the console window for any reported errors?Here's a video on using it:https://www.pdfscripting.com/public/images/video/AcroJSIntro/AcroJSIntro_ConsoleWindow.cfm The first thing I would...

View Article

Re: PDF text field to be flip horizontal

The special font is a good idea, but it fails when I add to it.  As an example 1234 displays 4321 then adding + 1 = 5321.   Adding one adds to the most left digit.  Also 9321+1 = 0421

View Article

Re: Want round down all results

Yes, awesome. Now how do I incorporate my equation "(FIELD1 - 10) / 2" into that? Would it be the "a" variable? Like this?? var a = (FIELD1 - 10) / 2;var b = Math.floor(a): Again. I really appreciate...

View Article

Re: PDF text field to be flip horizontal

Since these aren't really decimal numbers but reversed digit strings you'd have to reverse, do arithmetic, reverse again.

View Article


Re: Want round down all results

If you want the final result to be rounded down, then yes, your code is correct. But if this is a calculation script, then it should be: event.value = Math.floor((FIELD1 - 10) / 2);

View Article

Re: PDF text field to be flip horizontal

As far as I can tell there are no properties or methods available in JavaScript, or basic field parameters that will flip either a field value or a page for printing.  But there are some options. 1....

View Article


How to Auto-populate pricing that allows custom pricing as well?

Hi, First, to say I know nothing about writing Javascript is an understatement so I apologize for my lack of knowledge and hope someone can help me out with this problem. I am using Adobe DC to create...

View Article

Re: How to Auto-populate pricing that allows custom pricing as well?

How does you calculate the total?

View Article


Re: Can't redact?

You can't change signed documents.

View Article

Image may be NSFW.
Clik here to view.

Re: Want round down all results

Now I'm confused. Do I use?event.value = Math.floor((FIELD1 - 10) / 2); or?var a = (FIELD1 - 10) / 2;var b = Math.floor(a): Neither of them seem to work for me. This is the error when I put it in the...

View Article

Re: Button and Javascript

Hi ... I think I need more help and/or suggestion to see how this can work ..If I am trying to link 3 events fields together, with the 3rd fields having information that will be auto-populated.Hope the...

View Article

Re: Want round down all results

Use ; not : at the end of the statement.

View Article


Re: Bouton dans Acrobat

Bonjour,Avec le script, et les options cochées, le bouton ne rechange pas de couleur de mon côté si l'on reclique dessus une deuxième fois.Je vais revérifier si j'ai pas fait une erreur. J'appelle le...

View Article


Re: Button and Javascript

You can use dropdown lists for this.

View Article

Image may be NSFW.
Clik here to view.

Re: Bouton dans Acrobat

Effectivement, la détection par les couleurs ne semble pas fonctionner. Alors j'ai fait autrement, en me basant sur le contenu de l'infobulle : // si l'infobulle contient 2 espaces if...

View Article

Re: Adobe fill and Sign: how to change add a signature

Thank you SO much for this! I was going crazy trying to make that stupid button work. Thank you again!!!

View Article


Re: How to Auto-populate pricing that allows custom pricing as well?

Good morning, Under the in the "Total Price" field properties, under Simplified Notations I have, (PriceEachRow1)*QuantityRow1 Note: I just went in and copied the script, and then deleted/closed it,...

View Article

Re: How to Auto-populate pricing that allows custom pricing as well?

I just sent the form to my phone which has an Adobe Acrobat app and while it worked on my desk top, when I select a product, iit keeps the last price and doesn't change it.

View Article

Re: How to Auto-populate pricing that allows custom pricing as well?

Acrobat Reader for mobile devices doesn't support all features.

View Article

Re: How to Auto-populate pricing that allows custom pricing as well?

Thank you. Is there anything else I can do? The script without the check mark worked great on my phone it was only when I added the check box to disable the autopopulate that caused it not to work.

View Article



Image may be NSFW.
Clik here to view.

Re: Want round down all results

As Bernd points out, the ":" is the cause of the syntax error. In JavaScript, lines end with the semi-colon ";". But you have another issue. Where does "Field1" come from? I just assumed you were using...

View Article

Fillable Form with Signature and Adding Password Encryption After Filled....

I created a fillable PDF form that requires a digital signature. If I send this PDF out to someone who can fill it out with confidential information and have them sign it, is there any way that they...

View Article

Re: Fillable Form with Signature and Adding Password Encryption After Filled....

If digital certificates are used to sign the form the contents of the PDF are locked and any changes can be identified. This will also mean you need to collect the public certificate copy that was used...

View Article

Re: PDF text field to be flip horizontal

Since I can make this work with the digits going the proper direction.   I believe I just need to reverse the digits prior to utilizing the reverse font.   But I am not sure of a way to reverse the...

View Article


Re: Fillable Form with Signature and Adding Password Encryption After Filled....

Even if the signature doesn’t lock the file, setting a password must, by design, destroy the signature. One thing is clear: it is absolutely unacceptable that a medical form is emailed.  You must use a...

View Article

Re: PDF text field to be flip horizontal

https://medium.com/sonyamoisset/reverse-a-string-in-javascript-a18027b8e91c

View Article

Re: PDF text field to be flip horizontal

Your method for reversing works fine. var strData = "abcd";var strFlip = strData.split("").reverse().join(""); What problem are you having?

View Article


Re: PDF text field to be flip horizontal

Also, don't use the calculation script. Use the Format event script.

View Article


Calculate Max Score & Percentage

I'm trying to create a score sheet.  The maximum score for each item is 4.  Some lines could be not applicable to some people, so those lines will be empty.  I need a formula that will calculate the...

View Article

Re: PDF text field to be flip horizontal

Hi thanks,  I really appreciate the assistance.But where do these format event scripts exist?  Do I create a button and add an action on the mouse down to trigger a javascript?   if so I get TypeError:...

View Article

Re: PDF text field to be flip horizontal

You'll find the format event script on the "Format" tab of the text field where the string you want to Flip is displayed. Select the Custom Format option. Then you'll see the script areas.  In your...

View Article

Re: Button and Javascript

Hi Bernd,I have used checked-boxes for Field 1.How do I code the selection into the 2nd Field? How do I then code Field 3 to auto-populate based on Field 2? Thanks in advanced for helping!!

View Article


Re: Want round down all results

Awesome!!!!!!!!!!! That's it!!  Thank you so very much. Seems to be lots of work for such a simple thing. It's working perfectly. Thank you everyone for the help. Nic

View Article

Image may be NSFW.
Clik here to view.

Re: Want round down all results

This is probably a stupid question. Is there a list of such scripts? Simple functions with examples, that are used in Acrobat? Of would I need to actually learn the whole Javascript shabang? Like a...

View Article


Image may be NSFW.
Clik here to view.

Re: Want round down all results

The official Core JavaScript Reference is kept by Mozilla:JavaScript | MDN Much about JS on the web is about HTML JS. The core language is the same everywhere, but the application model is different....

View Article

Re: How to Auto-populate pricing that allows custom pricing as well?

You should be able to do this in the Mobile Reader. There are a number of possible problems. Basically, the script is doing something that is not supported. You need to figure out what that thing is....

View Article


Image may be NSFW.
Clik here to view.

Re: How to Auto-populate pricing that allows custom pricing as well?

After a quick test, I found that "valueAsString" does not seem to be supported on the Mobile Reader. Change it to "value".

View Article

Re: Want round down all results

Thank you very much for all the help and the referenced information. I've got some learning to do.

View Article

Image may be NSFW.
Clik here to view.

Re: How to Auto-populate pricing that allows custom pricing as well?

I just checked this forum before I was going off to sleep and saw that you had answered! I was so excited, I got back out of bed to try the solution.  It worked! ! If you think there is a better way to...

View Article

Image may be NSFW.
Clik here to view.

Re: Add an "Attach File" button to a PDF form.

Hi Try, thank you so much for clarifying 'refrying' a PDF which I was told was flattening during the training I received, which I now understand has not been good business practice.  I've had to to a...

View Article


Image may be NSFW.
Clik here to view.

Re: Calculate Max Score & Percentage

Yes, this can be done. The part of this is to name your fields to make the job easy. And the easiest way to do this is to use group naming, which means you prefix all the field names with a group name....

View Article



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>