Hi Michael,For this function, you'd have to use the fillColor properties
script in JS see: Adobe LiveCycle ES4 * fillColor I'd be happy to help
you further: https://www.fiverr.com/share/yj5Pe Best,Camilo
One methods is:- Click in the JS Code window on the oRegularizare
object- In the editor in Design view navigate to the suprNimp field you
are trying to reference- Hold CTRL and Click on the suprNimp field This
will automatically populate in the relative object path for
suprNimpAnother method is to click on suprNimp directly and on the JS
window click on all events and the path should appear on all the
possible events, just disregard the event name at the end.I prefer the
reference:this.resolveNo...
Hello,I'm sort of new to livecycle and I'm trying to have a form that
references subform instances in a different page and I've tried for
hours to resolve with no avail.This is the code that I'm using:lessee =
"";for (var i = 1 ; i < 7; i++) {var lesseeno =
Checklist.Fields.Lessees.resolveNode("spLessee[" + i.toString() +
"]").Lessee; var firstname = lesseeno.FirstName.rawValue != null ?
lesseeno.FirstName.rawValue : ""; var middle = lesseeno.Middle.rawValue
!= null ? lesseeno.Middle.rawValue : ...