Hello Flashcoders,

in a recent project i made use of the blur filter on a container clip
that is used all over the project with differing content, but over the
project it sometimes blurs and sometimes won't with no obvious
regularity (i.e. the content of the container is varying while the
filter refuses to work). I traced my filter function if it is applied,
traced if it internally caches the container clip as Bitmap, which it
both does...
so for nowi switched the d*rn thing off and used something else instead.
Did someone else experienced similar or related problems with filters?
Any hint on where to look for solutions will be greatly appreciated!!!!

Thanks in advance and heres the filter sniplet:

//Filter einrichten
import flash.filters.BlurFilter;
function filter_on() {
        my_filter = new BlurFilter(4, 4, 2);
        myFilters = content_mc.filters;
        myFilters.push(my_filter);
        _root.content_mc.filters = myFilters;
        debug.text = "content_mc.cacheAsBitmap:
"+content_mc.cacheAsBitmap;
        clearInterval(filterInt);
}

I call filter_on(); from some other function that triggers a menu (while
the menue is _visible, content_mc should be blurred...)

Cheers, Thomas
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to