Form instructions with bullets and lines
Hello!
I am using Acrobat Pro 2020 and have a form field where the instructions for that field are the following:
Describe the approach to ensure all issues:
• Are identified and documented in issue tracker or log
• Are prioritized
• Are assigned specific owners
• Are given next steps and the due dates documented
• Have ownership clearly communicated to those responsible for action items
• Are reviewed regularly (e.g., daily for complex projects and at least weekly for simple projects)
I was using for the other instructions:
// Custom Format script for text field
if (!event.value) {
event.value = "Instructional text goes here";
event.target.display = display.noPrint;
} else {
event.target.display = display.visible;
}But these instructions have formatting and I need it to at least show up as separate lines, but ideally with bullets or even - or a number before the text. Is this at all possible?
Thanks!