Adobe Reader does not display borderstyle=U Textfields

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
1
down vote

favorite












In relation to this question, I just discovered, that the official Adobe Reader doesn't display TextFields, which have the flag borderstyle=U set.



Minimal example:



documentclassarticle
usepackage[hidelinks]hyperref

begindocument

beginForm
TextField[width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]\
endForm

enddocument


Display as expected in evince, not at all in Adobe Reader (Windows 10).



Any ideas?



PS: Exact version is Adobe Acrobat Reader DC Version 2018.009.20044.
PPS: Also tested in Adobe Acrobat Pro DC Version 2015.006.30033










share|improve this question

























    up vote
    1
    down vote

    favorite












    In relation to this question, I just discovered, that the official Adobe Reader doesn't display TextFields, which have the flag borderstyle=U set.



    Minimal example:



    documentclassarticle
    usepackage[hidelinks]hyperref

    begindocument

    beginForm
    TextField[width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]\
    endForm

    enddocument


    Display as expected in evince, not at all in Adobe Reader (Windows 10).



    Any ideas?



    PS: Exact version is Adobe Acrobat Reader DC Version 2018.009.20044.
    PPS: Also tested in Adobe Acrobat Pro DC Version 2015.006.30033










    share|improve this question























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      In relation to this question, I just discovered, that the official Adobe Reader doesn't display TextFields, which have the flag borderstyle=U set.



      Minimal example:



      documentclassarticle
      usepackage[hidelinks]hyperref

      begindocument

      beginForm
      TextField[width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]\
      endForm

      enddocument


      Display as expected in evince, not at all in Adobe Reader (Windows 10).



      Any ideas?



      PS: Exact version is Adobe Acrobat Reader DC Version 2018.009.20044.
      PPS: Also tested in Adobe Acrobat Pro DC Version 2015.006.30033










      share|improve this question













      In relation to this question, I just discovered, that the official Adobe Reader doesn't display TextFields, which have the flag borderstyle=U set.



      Minimal example:



      documentclassarticle
      usepackage[hidelinks]hyperref

      begindocument

      beginForm
      TextField[width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]\
      endForm

      enddocument


      Display as expected in evince, not at all in Adobe Reader (Windows 10).



      Any ideas?



      PS: Exact version is Adobe Acrobat Reader DC Version 2018.009.20044.
      PPS: Also tested in Adobe Acrobat Pro DC Version 2015.006.30033







      pdftex hyperref forms






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 2 hours ago









      MPW

      324




      324




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          3
          down vote



          accepted










          The problem is not caused by the borderstyle, it is the empty field name. A text field without name is dropped by Adobe Reader, so you either have to use



          documentclassarticle
          usepackage[hidelinks]hyperref

          begindocument

          beginForm
          TextField[width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]Some name\% <-- Insert a nice name here, it will be printed next to the field
          endForm
          enddocument


          or, if you do not want the fieldname to be shown next to the field, use the name= option:



          documentclassarticle
          usepackage[hidelinks]hyperref

          begindocument

          beginForm
          TextField[name=SOME_UNIQUE_NAME,width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]\
          endForm

          enddocument





          share|improve this answer




















          • Thanks. The solution with setting a name is really convenient. It works except in ”Preview“ on MacOS 10.9.5. I haven't had a chance to test more recent MacOS versions yet.
            – MPW
            19 mins ago











          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "85"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f454740%2fadobe-reader-does-not-display-borderstyle-u-textfields%23new-answer', 'question_page');

          );

          Post as a guest






























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          3
          down vote



          accepted










          The problem is not caused by the borderstyle, it is the empty field name. A text field without name is dropped by Adobe Reader, so you either have to use



          documentclassarticle
          usepackage[hidelinks]hyperref

          begindocument

          beginForm
          TextField[width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]Some name\% <-- Insert a nice name here, it will be printed next to the field
          endForm
          enddocument


          or, if you do not want the fieldname to be shown next to the field, use the name= option:



          documentclassarticle
          usepackage[hidelinks]hyperref

          begindocument

          beginForm
          TextField[name=SOME_UNIQUE_NAME,width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]\
          endForm

          enddocument





          share|improve this answer




















          • Thanks. The solution with setting a name is really convenient. It works except in ”Preview“ on MacOS 10.9.5. I haven't had a chance to test more recent MacOS versions yet.
            – MPW
            19 mins ago















          up vote
          3
          down vote



          accepted










          The problem is not caused by the borderstyle, it is the empty field name. A text field without name is dropped by Adobe Reader, so you either have to use



          documentclassarticle
          usepackage[hidelinks]hyperref

          begindocument

          beginForm
          TextField[width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]Some name\% <-- Insert a nice name here, it will be printed next to the field
          endForm
          enddocument


          or, if you do not want the fieldname to be shown next to the field, use the name= option:



          documentclassarticle
          usepackage[hidelinks]hyperref

          begindocument

          beginForm
          TextField[name=SOME_UNIQUE_NAME,width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]\
          endForm

          enddocument





          share|improve this answer




















          • Thanks. The solution with setting a name is really convenient. It works except in ”Preview“ on MacOS 10.9.5. I haven't had a chance to test more recent MacOS versions yet.
            – MPW
            19 mins ago













          up vote
          3
          down vote



          accepted







          up vote
          3
          down vote



          accepted






          The problem is not caused by the borderstyle, it is the empty field name. A text field without name is dropped by Adobe Reader, so you either have to use



          documentclassarticle
          usepackage[hidelinks]hyperref

          begindocument

          beginForm
          TextField[width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]Some name\% <-- Insert a nice name here, it will be printed next to the field
          endForm
          enddocument


          or, if you do not want the fieldname to be shown next to the field, use the name= option:



          documentclassarticle
          usepackage[hidelinks]hyperref

          begindocument

          beginForm
          TextField[name=SOME_UNIQUE_NAME,width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]\
          endForm

          enddocument





          share|improve this answer












          The problem is not caused by the borderstyle, it is the empty field name. A text field without name is dropped by Adobe Reader, so you either have to use



          documentclassarticle
          usepackage[hidelinks]hyperref

          begindocument

          beginForm
          TextField[width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]Some name\% <-- Insert a nice name here, it will be printed next to the field
          endForm
          enddocument


          or, if you do not want the fieldname to be shown next to the field, use the name= option:



          documentclassarticle
          usepackage[hidelinks]hyperref

          begindocument

          beginForm
          TextField[name=SOME_UNIQUE_NAME,width=0.98linewidth,bordercolor=0 0 0,charsize=0pt,borderstyle=U]\
          endForm

          enddocument






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 1 hour ago









          Marcel Krüger

          10.7k11233




          10.7k11233











          • Thanks. The solution with setting a name is really convenient. It works except in ”Preview“ on MacOS 10.9.5. I haven't had a chance to test more recent MacOS versions yet.
            – MPW
            19 mins ago

















          • Thanks. The solution with setting a name is really convenient. It works except in ”Preview“ on MacOS 10.9.5. I haven't had a chance to test more recent MacOS versions yet.
            – MPW
            19 mins ago
















          Thanks. The solution with setting a name is really convenient. It works except in ”Preview“ on MacOS 10.9.5. I haven't had a chance to test more recent MacOS versions yet.
          – MPW
          19 mins ago





          Thanks. The solution with setting a name is really convenient. It works except in ”Preview“ on MacOS 10.9.5. I haven't had a chance to test more recent MacOS versions yet.
          – MPW
          19 mins ago


















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f454740%2fadobe-reader-does-not-display-borderstyle-u-textfields%23new-answer', 'question_page');

          );

          Post as a guest













































































          Comments

          Popular posts from this blog

          What does second last employer means? [closed]

          List of Gilmore Girls characters

          Confectionery