0

I created a dynamic form in Adobe LiveCycle. I have buttons inside my content to add zones dynamically.

The problem is I would like to hide these buttons when the form is printed. I can do this with the Visible (Screen Only) option, but objects still occupies space in the form layout. Is there a solution to completely remove objects on printing (make them invisible without occupying space).

Thank you!

4

1 回答 1

0

您可以使用 prePrint 事件将它们从布局中删除。还有 postPrint 事件将它们放回原处。假设您使用的是流动布局,则对象不会占用任何空间。

你只需要使用

this.presence = "hidden";

隐藏按钮(在按钮的 prePrint 事件上)。

this.presence = "visible";

显示按钮(在 postPrint 事件上)

于 2014-05-16T15:17:14.123 回答