1

如何根据页面标题在 Adob​​e 表单中设置图像的可见性。每个页面的页面标题会有所不同,根据页面标题的值设置图像的可见性。

data.#pageSet[0].Page1.AUSTRALIAN_LOGO::initialize - (FormCalc, client)
if( it_title.data.flag.rawValue == 'X' ) then
$.presence = "hidden";
endif

data.#pageSet[0].Page1.GLOBAL_LOGO::initialize - (FormCalc, client)
$.presence = "hidden";

if 条件不起作用,但没有 if 条件的条件起作用 语法是否正确?

4

1 回答 1

0

尝试这样的事情:

var flag = this.boundItem(xfa.event.newText)

if (flag eq "X")

 then AUSTRALIAN_LOGO.presence = "visible"

 else AUSTRALIAN_LOGO.presence = "hidden"

endif

在您的徽标退出事件中。并且不要忘记将该表单设置为dynamic

于 2019-06-21T00:08:06.197 回答