Re: [Flashcoders] DropShadowFilter rendering issue: SOLVED

2007-08-24 Thread Alan MacDougall
Muzak wrote: AFAIK, both are "between 0 and 1". The default value for strength = 1, meaning 100% strength. If strength would take a value between 0 and 255 a default of 1 would make no sense at all (well at least not to me). Well, the docs are correct: you can set absurd strength values bec

Re: [Flashcoders] DropShadowFilter rendering issue: SOLVED

2007-08-24 Thread Muzak
From: "Paul Venton" <[EMAIL PROTECTED]> To: Sent: Friday, August 24, 2007 7:45 PM Subject: RE: [Flashcoders] DropShadowFilter rendering issue: SOLVED > According to the documentation, the alpha property accepts a value between 0 > and 1, and strength a value between 0 and

RE: [Flashcoders] DropShadowFilter rendering issue: SOLVED

2007-08-24 Thread Hal Leonard
st 24, 2007 10:29 AM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] DropShadowFilter rendering issue: SOLVED Hal Leonard wrote: > Yeah in CS3 that's the case - regardless of whether you are using AS2 or > AS3. But to my knowledge, in Flash 8, it is still 0 to 100. > &g

RE: [Flashcoders] DropShadowFilter rendering issue: SOLVED

2007-08-24 Thread Paul Venton
@chattyfig.figleaf.com Subject: Re: [Flashcoders] DropShadowFilter rendering issue: SOLVED The same goes for alpha. I see you have 75 as alpha value, should be 7.5. regards, Muzak - Original Message - From: "Alan MacDougall" <[EMAIL PROTECTED]> To: Sent: Friday, August

Re: [Flashcoders] DropShadowFilter rendering issue: SOLVED

2007-08-24 Thread Alan MacDougall
Hal Leonard wrote: Yeah in CS3 that's the case - regardless of whether you are using AS2 or AS3. But to my knowledge, in Flash 8, it is still 0 to 100. No, that was the problem: In the Flash 8 authoring environment, you set a 0-100 percentage. But in Actionscript 2.0, the DropShadowFilter.

Re: [Flashcoders] DropShadowFilter rendering issue: SOLVED

2007-08-24 Thread Muzak
The same goes for alpha. I see you have 75 as alpha value, should be 7.5. regards, Muzak - Original Message - From: "Alan MacDougall" <[EMAIL PROTECTED]> To: Sent: Friday, August 24, 2007 6:19 PM Subject: Re: [Flashcoders] DropShadowFilter rendering issue: SOLVED &

RE: [Flashcoders] DropShadowFilter rendering issue: SOLVED

2007-08-24 Thread Hal Leonard
AM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] DropShadowFilter rendering issue: SOLVED Alan MacDougall wrote: > After I create a clip with attachMovieClip, I attempt to write a > DropShadowFilter to it using the following code: > > var shadow:DropShadowFilter = new

Re: [Flashcoders] DropShadowFilter rendering issue: SOLVED

2007-08-24 Thread Alan MacDougall
Alan MacDougall wrote: After I create a clip with attachMovieClip, I attempt to write a DropShadowFilter to it using the following code: var shadow:DropShadowFilter = new DropShadowFilter( 5,// distance 45,// angle 0x66,