I have created a form in LiveCycle Designer 8 which has several text fields. I need to know what the Javascript or other function would be to highlight the field when the user tabs into that field. I know in Acrobat 8 Pro it is easy to do this, but I havent' figured it our in LiveCycle.
Copy and paste the below script to your text field, in your Script Editor>"Enter" function (set to Javascript language):var TextField = event.target;
var f = TextField.getField("form1[0].TextField[0]");
f.fillColor = color.yellow;
Test that in your PDF preview - when you click into the field, it should display yellow (or change to whatever color you want).