Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

LiveCycle 8 Checkboxes

Avatar

Former Community Member
I did this in an old version of Acrobat where I had a checkbox reference data from a user inputted area of the form. For example, I want an order form where a "Ship To is Same As Bill To" checkbox would copy data from the information the user submitted and input it under a different area.



Any help on How-To would be great...
1 Reply

Avatar

Level 7
You can check the value of check box with:



if(CheckBox1.rawValue == 1)....



then you just need to add your code to copy or clear the address fields as necessary.