Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to cancel history in the forms?

New Here ,
Apr 26, 2019 Apr 26, 2019

dans les zones que l'on doit changer les réponses du formulaire précédent apparaisse même lorsque le formulaire est envoyé à une tierce personne mais cette personne ne doit pas avoir accès au réponse précédente comment faire pour que le dit formulaire ne garde rien en mémoire

in the areas that one must change the answers of the form previous answers appear even when the form is sent to a third person but this person should not have access to the previous answer how to do so that the said form does not keep anything in memory?

TOPICS
PDF forms
1.1K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
1 ACCEPTED SOLUTION
Community Expert ,
Apr 26, 2019 Apr 26, 2019

I actually sent it to myself to a different email address to test it and when I put my cursor on a blank field a bunch of previous answers show up

This is available only for your Acrobat, on your session on your computer.

Other users cannot see that.


Acrobate du PDF, InDesigner et Photoshopographe

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 26, 2019 Apr 26, 2019

It's probably the Auto Complete feature, but it should definitely not happen when you send the file to a third-person. Are you sure that's happening?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 26, 2019 Apr 26, 2019

I actually sent it to myself to a different email address to test it and when I put my cursor on a blank field a bunch of previous answers show up

De : try67 <forums_noreply@adobe.com>

Envoyé : 26 avril 2019 11:35

À : Josée Sicotte <jsicotte@carefreeboatsqc.ca>

Objet : How to cancel history in the forms?

How to cancel history in the forms?

created by try67 <https://forums.adobe.com/people/try67> in PDF Forms - View the full discussion <https://forums.adobe.com/message/11048010#11048010>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 26, 2019 Apr 26, 2019

But you opened it on the same computer?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 26, 2019 Apr 26, 2019

You’re right I just tried with my smart phone and its ok….thank you

De : try67 <forums_noreply@adobe.com>

Envoyé : 26 avril 2019 12:27

À : Josée Sicotte <jsicotte@carefreeboatsqc.ca>

Objet : How to cancel history in the forms?

How to cancel history in the forms?

created by try67 <https://forums.adobe.com/people/try67> in PDF Forms - View the full discussion <https://forums.adobe.com/message/11048094#11048094>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 26, 2019 Apr 26, 2019

I actually sent it to myself to a different email address to test it and when I put my cursor on a blank field a bunch of previous answers show up

This is available only for your Acrobat, on your session on your computer.

Other users cannot see that.


Acrobate du PDF, InDesigner et Photoshopographe
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Apr 27, 2019 Apr 27, 2019

A possibility to get rid of cached information would be to reset the form when it gets opened.

If it is a single-page form, it is very easy:

In the PageOpen Script, you add the following line of code:

     this.resetForm() ;

and that does it.

If it is a multiple page form, you have to make sure that the reset gets executed only once. For that, you create a document-level script containing just this line of code:

     var loaded = 1 ;

And in the Page Open event of the page at which the document opens, you add this:

     if (loaded > 0) {

     this.resetForm() ;

     loaded -- ;

     }

And that should do it.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 27, 2019 Apr 27, 2019
LATEST

I don't believe that's the issue. It had to do with the Auto Complete feature.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines