Hi All
Could you let me know if it is possible to hide all groups and fields within a stack by clicking a button? Is it a simple one line of code for this?
Thanks
Daniel
hide groups
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: hide groups
bsouthuk...
Oops... I didn't read your post very well... the above would hide the groups on just one card. To hide all the groups within a stack then you would have to loop through all the cards..
be well
Dixie
Code: Select all
repeat with count = 1 to the number of groups of this card
set the vis of group count of this card to false
end repeat
Code: Select all
repeat with count = 1 to the number of cards of this stack
put the number of groups of card count into groupCount
repeat with count2 = 1 to groupCount
set the vis of group count2 of card count to false
end repeat
end repeat
Dixie