These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Why does Show/Hide takes so long?

ROSFR11
Registered: Dec 23 2009
Posts: 27
Answered

Hello,

Can someone tell me why Show/hide takes so long. I am using this script with (FormCalc (Client)) on mouseEnter event:

if (Dropdown1.rawValue == "Autre") then
P1.presence = "visible";
Else
P1.presence = "invisible";
Endif

Can I make it faster?

Thanks a lot

radzmar
Expert
Registered: Nov 3 2008
Posts: 1202
I would use the script in the layout:ready event of the form object that should be hidden/visible:

if (Dropdown1.rawValue == "Autre") then$.presence = "visible";else$.presence = "invisible";endif

radzmar
LoveCycle Blog
Documents you need:
LiveCycle Designer ES2 Docs

ROSFR11
Registered: Dec 23 2009
Posts: 27
Thanks Radzmar, It works perfectly!