Adobe Reader does not display borderstyle=U Textfields
Clash 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
pdftex hyperref forms
add a comment |Â
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
pdftex hyperref forms
add a comment |Â
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
pdftex hyperref forms
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
pdftex hyperref forms
asked 2 hours ago
MPW
324
324
add a comment |Â
add a comment |Â
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
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
add a comment |Â
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
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
add a comment |Â
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
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
add a comment |Â
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
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
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
add a comment |Â
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
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password