Sample code to get the size of groups in corona :
for i=1, group.numChildren do local child = group[i] local description = (child.isVisible and "visible") or "not visible" print( "child["..i.."] is " .. description ) end
Comments
Post a Comment