I am new to LiveCycle Designer and I'm not sure this is even possible. I want to create a form where you can click on the description of the item (text field) and that would like to a picture of the item. Any suggestions? I've tried the help and it's talking about scripting, which is not something I'm familiar with.
Thanks!
Hopefully this will work for you
Upload your image, and set your image field to "Invisible" in the object pane
Set your JavaScript to FormCalc
Click on the textfield and enter the following javascript as it would apply
If you want the image to appear as you rollover your mouse over the description with your mouse, enter the following javascipt at mouseEnter, or if you want the image to appear on click enter the following javascript on enter
Image1.presence="visible";
To make the image disappear when the mouse exits
enter the following javascript on mouseExit
Image1.presence="hidden";