;

PDA

Click to See Complete Forum and Search --> : Bluring with actionscript in koolmoves? Possible?


xzerox_xzerox
11-26-2006, 02:54 PM
Hi

I love the flash 8 effects in koolmoves :) But there is a little hatch!

I have this movie with a movieclip named backgroound. If i want the background to blur if i press a button i cant do it without actionscripting. But when i try use a blur actionscript on my movieclip it does not work in koolmoves? What have i done wrong?

See attachments for movie!

Thanks in advance!

blanius
11-26-2006, 08:50 PM
try
on(release){
myBlur = new flash.filters.BlurFilter(50,50,1);
circle_mc.filters=[myBlur]
}

I asked something similar a while back
http://board.flashkit.com/board/showthread.php?t=692988

xzerox_xzerox
11-27-2006, 03:34 PM
on(release){
myBlur = new flash.filters.BlurFilter(50,50,1);
circle_mc.filters=[myBlur]
}

did not work... checking out the thred you've linked

blanius
11-27-2006, 04:18 PM
That was copied right out of a working test...

Make sure you are exporting as Flash 8 in the export settings or it won't work.

xzerox_xzerox
11-28-2006, 05:06 PM
thanks works nice :D