Hide and show a label or button
hi!
i'm doing form fill has 32 pages. since people scroll down go next page fields in want them see label or button says "important" or "don't forget" know have fill part well. want hide when click or put pointer on it. know how hide button properties: add action. however, whenever open document again, can't see label.
i appreciate if me
you set page action initial page shows of buttons. triggered again if user moves initial page , later navigates it.
you achieve same thing using document level javascript shows of buttons when document opened. simple as:
getfield("button1").display = display.noprint; // show button, make non-printing
getfield("button2").display = display.visible; // or make button visible , printable
// continue of rest of fields
but use actual button names you're using.
More discussions in JavaScript
adobe
Comments
Post a Comment