"the effective visibility"
Chipp Walters
chipp at chipp.com
Sat Aug 9 06:11:31 EDT 2008
Thanks Eric,
Here's what I ended up with:
function altEffectiveVisible pLongControlName
if not the vis of pLongControlName then return false
replace "group" with cr & "group" in pLongControlName
filter pLongControlName with "group*"
repeat for each line L in pLongControlName
put offset(" of",L) into tEnd
put char 1 to tEnd-1 of L into tGrpName
if the vis of tGrpName is false then return false
end repeat
return true
end altEffectiveVisible
Didn't know about the long owner...time to check it out!
Thanks :-)
More information about the use-livecode
mailing list