Page 1 of 1

[SOLVED] How to unglow the outerglow?

Posted: Tue Jul 14, 2020 4:22 pm
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 :( .

Re: How to unglow the outerglow?

Posted: Tue Jul 14, 2020 4:29 pm
by Klaus
Hi redfield,

almost! :-)

Code: Select all

set the outerglow of graphic myPic to EMPTY
Best

Klaus

Re: [SOLVED] How to unglow the outerglow?

Posted: Tue Jul 14, 2020 4:42 pm
by redfield
:?

Thanks Klaus, that works!