text: ________________________________________
________________________________________
________________________________________
________________________________________
(i.e. a multiline text field with EACH line underlined). This way, if I want to use a hard copy of the form, there is still some definition to the text field. I have used the following command
text:
Code: Select all
\textField[\Ff{\FfMultiline}\S{U}]{ID}{width}{height}
<Blank>
text: <Blank>
<Blank>
________________________________________
where only the last line of the text field is underlined.
Does anyone have any ideas on how I can get EACH line underlined? Someone from another forum (http://www.acrotex.net/forum/showthread.php?tid=86) suggested I use a background image with the appropriate lines and then place it behind the text field. This sounded good in theory, but I have not been able to figure out how to implement this idea. The following is code what I came up with to make the background image (which uses the package eso-pic):
Code: Select all
\usepackage{eso-pic}
\usepackage{forloop}
%->> usage: \BackgroundPic{<width>}{<number of lines>}
\newcommand\BackgroundPic[2]{
\AddToShipoutPicture*{
\put (0,0){
\parbox[b][#2\baselineskip]{#1}{%
\forloop{ct}{1}{\value{ct} < #2} { \noindent\_\hrulefill\\ }
}
}
}
}
Any ideas?
Thanks!