check hide ?

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
link76
Posts: 99
Joined: Fri Nov 04, 2011 1:52 pm

check hide ?

Post by link76 » Tue Jun 19, 2012 10:04 am

hi,
how to check if an object is hidden?

Code: Select all

if group "MYGROUP" is hide then ....
thanks

Klaus
Posts: 14197
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: check hide ?

Post by Klaus » Tue Jun 19, 2012 10:06 am

Hi link76,

you are looking for the "visible" property!
...
if the visible group "MYGROUP" = false then...
...


Best

Klaus

shaosean
Posts: 906
Joined: Thu Nov 04, 2010 7:53 am

Re: check hide ?

Post by shaosean » Tue Jun 19, 2012 11:54 am

That should actually read:

Code: Select all

if (the visible of group "MYGROUP" = FALSE) then
He missed the word "of" in there, but that is just the way he rolls ;-)

Klaus
Posts: 14197
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: check hide ?

Post by Klaus » Tue Jun 19, 2012 12:14 pm

Yes, I missed the word "of" in here, but this is just the way I roll! 8)

Whatever that means!? :D

Post Reply