Avatar

Level 10

Okay,

I think I have a better handle on it now.

For the address fields you could use a prePint script:

if (this.rawValue == "" || this.rawValue == null)

{

     this.presence = "hidden";

}

And then on the postPrint event:

this.presence = "visible"; 

Not sure how you are removing the combs, but a similar prePrint/postPrint approach should work.

Niall