[Flashcoders] FP9/AS3 : What could prevent filters from working ?

2008-06-20 Thread leolea
Hi, I have a mc that I'm trying to blur, and it just doesn't. Actually no filter works, at all. I'm apply the filter simply like that: var b:BlurFilter = new BlurFilter() mymc.filters = [b]; The MC is a section container that has many other children MCs. They are loading JPGs,

Re: [Flashcoders] FP9/AS3 : What could prevent filters from working ?

2008-06-20 Thread Ian Thomas
The only thing I can think of is this, from the AS2 docs: A filter is not applied if the resulting image exceeds 2880 pixels in width or height. If, for example, you zoom in on a large movie clip with a filter applied, the filter is turned off if the resulting image exceeds the limit of 2880

Re: [Flashcoders] FP9/AS3 : What could prevent filters from working ?

2008-06-20 Thread Ian Thomas
Or even AS3 docs. :-) I seem to having problems differentiating between AS3 and AS2 today... Ian On Fri, Jun 20, 2008 at 10:28 PM, Ian Thomas [EMAIL PROTECTED] wrote: The only thing I can think of is this, from the AS2 docs: A filter is not applied if the resulting image exceeds 2880 pixels

RE: [Flashcoders] FP9/AS3 : What could prevent filters from working ?

2008-06-20 Thread Merrill, Jason
] [mailto:[EMAIL PROTECTED] On Behalf Of leolea Sent: Friday, June 20, 2008 5:12 PM To: Flash Coders List Subject: [Flashcoders] FP9/AS3 : What could prevent filters from working ? Hi, I have a mc that I'm trying to blur, and it just doesn't. Actually no filter works, at all. I'm apply

Re: [Flashcoders] FP9/AS3 : What could prevent filters from working ?

2008-06-20 Thread leolea
] FP9/AS3 : What could prevent filters from working ? Hi, I have a mc that I'm trying to blur, and it just doesn't. Actually no filter works, at all. I'm apply the filter simply like that: var b:BlurFilter = new BlurFilter() mymc.filters = [b]; The MC is a section container

Re: [Flashcoders] FP9/AS3 : What could prevent filters from working ?

2008-06-20 Thread Rich Shupe
Its been a while since I have done one, but don't blur filters require some parameters? I didn't think you could do a generic one as you did - new BlurFilter() and not say how much it blurs, what the opacity is, etc. No, the default parameters are used when none are supplied. However, the

Re: [Flashcoders] FP9/AS3 : What could prevent filters from working ?

2008-06-20 Thread leolea
Oh man, seriously, thank you so much. It was exactly the cause of my problem... I had a scrolling menu that was larger than 2880... It's masked, but still... it's what prevented the filter to work. Isn't that limitation a bit... sucky ? Oh, well... thanks again! On 20/06/08 17:28, Ian