This is FormCalc on the click event of a check box:if ($.rawValue==1)thenP1.subformelmo.presence="visible"else P1.subformelmo.presence="hidden"endifIn this example the subform on page 1 is hidden until the box is checked.
To control vertical alignment:Go to Window on the menu barCheck off Paragraph in the drop menuclick the paragraph tab on the new pallette that appears.Here you can push text to the top, bottom or center by clicking the appropriate icon
Try this:Add a footer to your page. Add two buttons (ADD & DELETE) to the footer.On the click event of the ADD button (javascript):form1.page1._body.addInstance(1);if (form1.page1._body.count > 1) { form1.page1.footer.deleteBtn.presence = "visible";}else { form1.page1.footer.deleteBtn.presenc...