Hi
I'm having difficulties on changing SubformB.margin.bottomInset.
On SubformB::calculate I have this script:
if(this.SubformA.instanceManager.count == 1){
this.margin.bottomInset = "3.2mm";
}
else{
this.margin.bottomInset = "0mm";
}
console.println("** bottom: " + this.margin.bottomInset);
While I can see the println, with the correct values, the bottom margin doesn't change visually.
Any help on this?
Thanks