Page 1 of 1

Graphics Bug

Posted: Fri May 23, 2014 10:50 am
by netdzynr
On OS X 7dp4, the "spread" property of InnerShadow and InnerGlow graphic effects operates in the wrong direction -- increasing the spread value causes the the glow effect to move outward, away from the center of the graphic, instead of moving inward toward the center.

The "size" setting of both effects was fixed a ways back and works correctly.

Re: Graphics Bug

Posted: Fri May 23, 2014 11:05 am
by benjibeaumont
Hi Scott,

Thanks for this. I've reported it as a bug here:

http://quality.runrev.com/show_bug.cgi?id=12483

It looks like in the rush to fix other bugs we introduced this. Should be an easy fix and sorted today.

Warm regards,

Ben

Re: Graphics Bug

Posted: Fri May 23, 2014 4:02 pm
by capellan
Just for curiosity,
How could I change the color of innerGlow and outerglow?

I have not found a way to change this, so it's always black.

Re: Graphics Bug

Posted: Fri May 23, 2014 4:10 pm
by LCNeil
Hi Capellan,

The properties of the various graphics effects are stored as arrays. If you wish to change the color of the "outer glow" of a button your would have to use something like the following-

Code: Select all

set the outerGlow[color] of button "myButton" to blue
Kind Regards,


Neil Roger
--
RunRev Support Team ~ http://www.runrev.com
——

Re: Graphics Bug

Posted: Fri May 23, 2014 5:27 pm
by Simon
Hi Capellan,
I got hit by this one as well.
Not sure if it's the same problem as you are having but just clicking the tick box is not enough (odd UI) you have to highlight the line (click the words) to get the color selection to come up.

Simon

Re: Graphics Bug

Posted: Fri May 23, 2014 7:01 pm
by capellan
Simon wrote: Not sure if it's the same problem as you are having but just clicking the tick box is not enough (odd UI) you have to highlight the line (click the words) to get the color selection to come up.
Oh. This works!
Many Thanks.

:D

Re: Graphics Bug

Posted: Tue Sep 22, 2015 6:48 pm
by goharika
Hi I need to know how you are removing grafic effect.
For example I am checking statement and if it is right I am setting outer glow, and want to remove this effect in else statement. How?

Re: Graphics Bug

Posted: Tue Sep 22, 2015 7:23 pm
by bn
Hi goharika,

welcome to the forum

try

Code: Select all

 set the outerglow of grc "myName" to empty
Kind regards
Bernd

Re: Graphics Bug

Posted: Tue Sep 22, 2015 7:24 pm
by netdzynr
goharika wrote:Hi I need to know how you are removing grafic effect.
For example I am checking statement and if it is right I am setting outer glow, and want to remove this effect in else statement. How?
set the outerGlow of graphic 1 to empty

Re: Graphics Bug

Posted: Wed Sep 23, 2015 1:03 pm
by Klaus
LCNeil wrote:

Code: Select all

set the outerGlow[color] of button "myButton" to blue
Hmmm. the engine is less forgiving with every new release, so we better use the official syntax:

Code: Select all

set the outerGlow["color"] of button "myButton" to blue
8)