I am beginner in LiveCode, I have so many groups in my card, I have to find out the name of nested group. When I click a particular group it must display name of the group and other groups inside that group. Is it possible

Thanks
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on mouseUp
put the owner of me
end mouseUp
Code: Select all
function CheckAllGroups pNumcard --•• pNumCard = num of cd
put the short name of cd pNumcard into tNameCD
put the num of groups of cd pNumcard into tNbGr
if tNbGr = 0 then
put tNameCD & cr into tLesGr
else
repeat with i =1 to tNbGr
put the short id of group i of cd pNumcard into tGrID
put the backgroundbehavior of group id tGrID into tBB
put the short name of group id tGrID into tNameGr
put the owner of group id tGrID into tOwner
put tNameCD & "," & tNameGr & "," & tBB & "," & tGrID & "," & tOwner & cr after tLesGr
end repeat
end if
delete char -1 of tLesGr
return tLesGr
end CheckAllGroups
2. If you are a beginner and lost oversight over your objects on a card, you should start thinking if you are really on the right track!?macera wrote:I am beginner in LiveCode, I have so many groups in my card, I have to find out the name of nested group.