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

Is there a way?

bobyettah
Registered: Dec 19 2006
Posts: 8

Hi
I have Acrobat Professional 8.1.2. I am using Live Cycle Designer 8. I need to come up with a way to use drop down menus, linked to .jpg images. Let's say menu 1, line 3 is linked to .jpg image 23. Only image 23 is visible when line 3 in menu 1 is selected. All the images need to be embedded in the document. There will be approximately 5 menus and approximately 40 images. Menu 1 would work the same as menu2,3,4 and 5. I am not a Java Script person. If any one reading this has any ideas or help, please let me know.
Thank you all
bob yettah

My Product Information:
Acrobat Pro 8.1.2, Windows
beachbumbali11
Registered: Mar 5 2008
Posts: 74
Not sure by what you mean by selected as in a mouse over state or something like that?
If you set up a check box to toggele visiblitly of line three or just the image then this might help

if (checkbox1.rawValue == 1)///1 equals the value of on
{
subform.presence = "visible";
}
else if (checkbox1.rawValue == 0)///0 equals the value of off
{
subform.presence = "invisible";
}
bobyettah
Registered: Dec 19 2006
Posts: 8
I must admit that I do not understand your posting. I have not worked at all with the program yet. At this point I just looking to see if I want to do is possible. Thank You