Expand my Community achievements bar.

filling in hidden fields?

Avatar

Level 2

Hi,

   I have a form in which there are 4 square image fields in which hide if an image isn't attached. The formcalc change* event is as follows:

if

(picture3.rawValue == "1")

then

form1.page2.change.picture3.presence

= "visible"

else

form1.page2.change.picture3.presence

= "hidden"

Endif

It works and that isn't the problem. My question here is well if i don't attach images to the last 2 squares on the bottom (square 3,4), theres a big empty space on the form when printed, which later connects to the next page far down the page; is there a way to have the text fields under my images to fill in space of the hidden empty image fields of 3&4?? The 4 image squares format is

|1  2|

|3  4|

Thanks,

-Daniel

2 Replies

Avatar

Level 10

Hi Daniel,

You are using the correct option for the presence method. "hidden" will hide the object from the user and free up the space for other objects to move up BUT only if the container is set to a Flowed subform.

See the example here: http://assure.ly/h7whb8.

Hope that helps,

Niall