Image visibility help

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
uweuan
Posts: 3
Joined: Sun Apr 21, 2013 8:38 pm

Image visibility help

Post by uweuan » Sun Apr 21, 2013 8:48 pm

Hi,

I'm having a bit of an issue with something I'm doing. I have created an image which I have made invisible since I created it. I wish to know how to see the image again. [Name: fb_gif ID: 1006]

I'm a complete noob, so try to keep it as simple as possible.

Thanks.

Dixie
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 1336
Joined: Sun Jul 12, 2009 10:53 am

Re: Image visibility help

Post by Dixie » Sun Apr 21, 2013 8:51 pm

uweuan...

In the IDE go to the 'View' menu and choose 'Show Invisible Objects'... or enter

Code: Select all

set the visible of image id 1006 to true
in the message box and hit return...:-)

Dixie

sturgis
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 1685
Joined: Sat Feb 28, 2009 11:49 pm

Re: Image visibility help

Post by sturgis » Sun Apr 21, 2013 8:51 pm

If you execute the following in the message box it should make it show up again.

Code: Select all

set the visible of image "fb_gif" to true
Or you can open the application browser, locate the control and put a check back into the "visible" column.

Post Reply