There is a sub stack that provides the user the ability to enter data into the Main stack.
I need to coordinate a few check boxes between the 2 stacks.
In the sub stack when a checkbox is selected or deselected I want a corresponding checkbox on a card in the main stack to mirror it.
Code: Select all
repeat with n=1 to 6
--the fields are named odocs1 thru odocs6 on both cards
put odocs & n into tbtn
if the hilite of tbtn then
set the hilite of tbtn of cd "4" of stack"MainStack" to true
end if
end repeat
Tom