Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
OK not sure if this is possible. I have a Container wit about 15+ List boxes and during normal viewing the container is hidden. What I want it to do is when you click the button I want the container to un-hide and be showing the first list box regardless of what it was saved on. I can not use a macro as my client's do not want to have macros's
I don't think that there is a method (action or macro) that can set which object to view on a single view container, which I assume is what you would like to do.
1) Set a variable: LET vHideShow=1;
2) add a button with as action expression (external variable): If(vHideShow=1,0,1)
3) In Presentatio, inside the "Conditional Show" write vHideShow=1
To my knowledge you have to save it with the first listbox marked. Can't show/hide a multibox?
I don't think that there is a method (action or macro) that can set which object to view on a single view container, which I assume is what you would like to do.