[SOLVED] How to unglow the outerglow?

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: Klaus, FourthWorld, heatherlaine, kevinmiller

Post Reply
redfield
Posts: 95
Joined: Thu Apr 04, 2019 1:41 pm

[SOLVED] How to unglow the outerglow?

Post by redfield »

Hi everybody,
I'm using the outerglow effect with

Code: Select all

set the outerglow["color"] of graphic myPic to "green"
set the outerglow["size"] of graphic myPic to 15
which works fine. But I can't revert the effect. I tried

Code: Select all

set the outerglow["color"] of graphic myPic to empty
set the outerglow["size"] of graphic myPic to empty
and

Code: Select all

set the outerglow of graphic myPic to false
and

Code: Select all

set the disabled of outerglow of graphic myPic to false
but nothing happens, the outerglow remains :( .
Last edited by redfield on Tue Jul 14, 2020 4:41 pm, edited 1 time in total.
Klaus
Posts: 14325
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: How to unglow the outerglow?

Post by Klaus »

Hi redfield,

almost! :-)

Code: Select all

set the outerglow of graphic myPic to EMPTY
Best

Klaus
redfield
Posts: 95
Joined: Thu Apr 04, 2019 1:41 pm

Re: [SOLVED] How to unglow the outerglow?

Post by redfield »

:?

Thanks Klaus, that works!
Post Reply