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
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. Jason Merrill Bank of America Global Technology Operations Global Risk LLD

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

2008-06-20 Thread leolea
Oops! My bad, I typed too fast, but I do have the blurX and blurY values as parameter... On 20/06/08 18:05, Merrill, Jason [EMAIL PROTECTED] wrote: 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 -

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