Formatting Placeholder text
Hello,
i make pdf form with placeholder text with the script:
// Custom Format script for text field
if (event.value === event.target.defaultValue) {
event.value = "Downsell Offer #2 or OTO Discount";
event.target.display = display.noPrint;
event.target.textColor = color.black;
event.target.textSize = 10;
event.target.textFont = "Helvetica-Oblique";
} else {
event.target.textFont = "Helvetica";
event.target.display = display.visible;
}

its worked perfectly, but the problem is i want the text in 3 line and "Payment Plan" in bold text (like on last picture). im searching all tutorial but i cant find it, could you help me?

Thanks
