Highlighting Fillable Sections in Adobe Experience Manager PDF Form
Hi community members,
I'm working on a PDF form in Adobe Experience Manager. Currently, I can highlight the entire object border when it's empty using code and subsequent output.
function highlightField(field) {
field.borderColor = "255,0,0"; // Set border color to red
}
However, I'd like to focus on highlighting just the user-fillable part, like in the example below.

Any suggestions on code adjustments would be appreciated!

