Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Blur?



can i make an image blur on flash?how?



FlashKit > Flash Help > Flash MX
Posted on: 03-23-2004, 07:17 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Blur Filter - Need To Blur Only The Objects At The Edge Of The Stage.
Hi everyone! I have created a slideshow which pulls in images with xml and then places them in a horizontal row in the middle of the stage. I have a previous and next button which cycles through the images.

I am trying to make the images blurry except for the one that is front and center on the screen. As you cycle through the images, they are blurry until they get to the center. How would I go about doing this?

I have imported the BlurFilter, but when I apply it to the imageholder mc, all of the images are blurry. How can I tell it to not blur the one currently in the center of the stage?

Thanks!

Blur Filter - Need To Blur Only The Objects At The Edge Of The Stage.
Hi everyone! I have created a slideshow which pulls in images with xml and then places them in a horizontal row in the middle of the stage. I have a previous and next button which moves this row of images left and right on the x axis.

I am trying to make the images blurry except for the one that is front and center on the screen. As you cycle through the images, they are blurry until they get to the center. How would I go about doing this?

I have imported the BlurFilter, but when I apply it to the imageholder mc, all of the images are blurry. How can I tell it to not blur the one currently in the center of the stage?

Blur
ok, i have a map of the world, and i wanted to know if there was any way i could make it fade in by amounts of pixels. ya know, like in enemy of the state and stuff, just like go from 2 pixels to 4 to 8 to 16 etc until full resolution? thanks if its even possible

Blur
i know this sounds stupid but please bear with me as I am trying to learn flash using a spanish version of the software and i speak english as a first language

i can not find how to blur objects can i do this in flash ? if anyone replies please state which menu any actions are located on as the literal translations of software commands rarely make much sense

thanks

Blur
import png to flash
Does anyone know how to blur an image with AS. Instead of having two images one blur and one not.

Blur
I'm wondering if there is a way to make a box that blur's what ever is in the layers below is, for example I want to make a box that will move down the flash window periodically and the box will blur whats behind it, and it has to blur everything including rollover buttons and animations

Blur In And Out
hey anybody know how to get the blur in and out affect of movie clips and bmaps...

an example

is a piano pelle's site

thnx

Blur
How do you blur a bitmap or object?
When i tried to blur it became a transition...
Can you blur a bit map or do you need to trace it?

Help With Blur
I do not even know if this is possible but you never know!

Is there any way to use a symbol on a layer to gradually blur other symbols on layers below it?

Example:

Layer 1: Gradual blur ( 0 - 100% blurred )
Layer 2: MC (movie clip contains x and y pan script and cannot allow a gradual blur to be applied to it)


Please help!
Redburn

Blur
hi i was wondering if any one knows how to create a simple roll over blur effect on a button, i found this

import flash.filters.BlurFilter;
MovieClip.prototype.flou=function(){
var f:BlurFilter=new BlurFilter(5,5,2);
this.filters=[f];
this.onEnterFrame=function(){
this.onRollOver=function(){
this.val=true;
}
this.onRollOut=function(){
this.val=false;
}
if(this.val){
f.blurX-=.2;
if(f.blurX<0) f.blurX=0;
f.blurY=f.blurX;
this.filters=[f];
}
else{
f.blurX+=.2;
if(f.blurX>5) f.blurX=5;
f.blurY=f.blurX;
this.filters=[f];
}

}
}


var liste:Array=["Events", "Acommodation", "Transport", "Restaurant", "Places of interest"]
for(var i:Number=0; i<5; i++){
var mc:Array=attachMovie("item", "item"+i, i);
mc._y=280;
mc._x=70+i*150;
mc.label.text=liste[i];
mc.flou();
}

but that does not work on my images, is there a way to edit the code that it will pick my movie clips or buttons with instance name that will have the blur roll off and on effect?

Help With BLUR
I'm trying to get a Depth of Field Effect, the closer the mouse is to the movie clip the less blur there is.

I've got proximity scale and a rollover blur but haven't been able to put them both together. Here they are hope some one can help with a Proximity_Blur.

PROXIMITY_SCALE

function proximity(circle) {
var x:Number = _root._xmouse;
var y:Number = _root._ymouse;
var cx:Number = circle._x;
var cy:Number = circle._y;
var prox:Number = Math.sqrt((x-cx)*(x-cx) + (y-cy)*(y-cy));
if(prox<100) {
circle._xscale = 200 - prox;
circle._yscale = circle._xscale;
}
else {
circle._xscale = 100;
circle._yscale = circle._xscale;
}
}
this.onEnterFrame = function() {
proximity(circle);
}

circle.onRollOver = dukes.onRollOver = magnum.onRollOver = function() {
this.swapDepths(_root.getNextHighestDepth());
}

Here is the ROLLOVER_BLUR

import flash.filters.BlurFilter;
var gf:BlurFilter = new BlurFilter(20,20,3);
s.filters = [gf];
s.onRollOver = function() {
this.onEnterFrame = function() {
if (gf.blurX > 1) {
gf.blurX--;
gf.blurY--;
} else {
delete this.onEnterFrame;
}
this.filters = [gf];
};
};
s.onRollOut = function() {
this.onEnterFrame = function() {
this.filters = [gf];
if (gf.blurX < 20) {
gf.blurX++;
gf.blurY++;
} else {
delete this.onEnterFrame;
}
};
};

Blur
Hey how could i do a motion blur effect on say a ball moving from one position, to another then another.

Blur Like This?
hi, how does someone achieve the blur affect that is seen by the labtop and cd drive located here: http://www.flashloaded.com/flashcomp.../example1.html ?

Is This Blur Possible? - AS3
I would like to put 2 identical mc's on top of each other... the bottom one bright red... and the top one black... and blur the one on top in such a manner that it does not let the red one be seen.... (blured from it's edge out... instead of on the middle)

Is that possible? like specifying where the blur should start (like how you can specify in some programs if the border is in the middle, exterior, or interior of a box)

AS: Blur
Hi guys!

How can I make effect like at the attached picture?
This picture will be my website background picture and it's going to be random picked from the picture list.
Line in the middle should be there, also after stage.resize. I've played around with blur filters, but with no luck.

[F1] Help me please...

How Do I Blur Something?
Ok, all I want is in the middle of this movie im making, i want to have my little logo blur so it looks cool right as the music gets fast.... any help on bluring an object would be much appreciated. My first guess is to just do it in photoshop, but if ya got a better way let me know, thanxorz.

Blur 'Take Off'
Hi,
http://www.blur.co.uk
How do they make the text appear as the blob traveles over it??
Is it motion paths or something??
I am pretty new to flash and have used it to create basic things..... i just thought that it looked very snazzy the way the text did that.
Can anyone tell me what it needs.
I guess some sort of mask is over a white background and as the square travels in a motion tween it keeps the masked area unmasked?? Just a guess
Cheers anyone

www.spano.co.uk
The way web design should be

Blur Out, Blur In
Aye up shockers,

Anyone know of some neat code for motion blurring something in then out over time?

eg: blur out for 2 secs then blur back in for 2.

I have tried to do it with an onEnterFrame check but it runs a little ropey...

neb

How Do They Do This Blur
Last edited by artgod : 2006-05-04 at 13:04.
























The site -

http://www.shaveeverywhere.com

Great site but how do they blur when you go back to the main menu. It will blur no matter when you pause to go to the menu.

I've done blurs before, but not to the fly like this... its making my brain itch. Is there a screen filter in 8 I dont know about?

Thanks - AG -

Blur Effect
Blur effect....

Blur Effect
Can anyone tell me how they do the blur effect? like having a text fly across the screen and have it blurred for that second? I hope this makes sense...

Eric

Scripted Blur
Scripted blur!!

Do you know if there is a way of scripting blurred motion for animations. I've seen the effect on the web and don't think it's a series of animated bitmaps?

Anybody know if such a script exsist's?

Thanks in advance

Nick

Blur Effect
hello...
check this site http://www.01-la.com/
the blur effect for the text is very nice...
if i'm not wrong it could be created by using script in Flash 5....
anyone can help me how to make the blur effect?

Motion Blur
is there any tutorials on how do create a motion blur...
thanx
bfly03

Image Blur
Does anyone know if or how to create blur on an image in flash?

Thankyou!

Luke

How Can I Do Motion Blur?
hey all
how can i do motion blur
a blur that goes from blur to shape
you know the one like.... ATI's 9700 flash page

from blur txt to shape
or blur pic to shape
how can i do that?
thanks

Fading Blur
If you look at this site http://www.westonfl.org/ you can see a really cool fade affect, and kinda blur effect on the pickture on the front page. I was wondering if anyone knew any tutorials that i can read to help me find out how to do that, or mabey you can explain it. It's kinda hard to explain what i want, if you look at it see how it gets blurry and you can see text then it gets not blurry and the text comes back. Also you can see some kind of box kinda holding the text. Does anyone know where i can read up on how to do that?

Thanks!

Blur In Flash
good day members
i am using flash 5
can flash do blur for jpg,,, png,,,bitmap

thanks for you help

The Blur Effect
Kia Ora,

Does everyone create the separate frames in photoshop and then import them to MX to make the animated blur effect or is it something else? I love to advance a bit but don't have access to many resources.
My email is maioha.hotere@twoa.ac.nz if anyone has some advanced tutorials.

CHUR!

MAIOHA

=- How To Do The Blur Effect -0
How do you create this effect.

You have an image that is blurred. However there is a verticle stripe that moves left to right then right to left. When is passes over the image that section becomes clear. Once it leaves it is blurred again.

sorta like this http://www.s1m0ne.com

thanks
n

just click on trailer or downloads

Blur A Pic Via Flash
Can I put a layer or a mask over a picture and make it look blurry?

Blur Effect
Hi,

no, i'm not talking about anti-aliased text or something.

Here's the description:

1. i have a document,
2. onMouseOver it blurrs,
3. when you move the mouse toward the center there is less and less blur and
and when you reach the center itself, the blur is gone,
3. Simple.

What I would like to know is, is this possible to do only with imported
pictures (and then going from one to another as the mouse moves in) or is
there any other usable method?

thank you, matej

Blur With Actionscript It's Possible Y/n
it' true what' s the script for that!!!! please

Blur Effect -0 =-
You have an image that is blurred. However there is a verticle stripe that moves left to right then right to left. When is passes over the image that section becomes clear. Once it leaves it is blurred again.

sorta like this http://www.s1m0ne.com

thanks
n

just click on trailer or downloads



this was explained to me a while ago but i didnt bother going through witht the effect (changed my mine about it) and forgot how to do it, now i need it again

sorry for the inconvience

Blur Effect
Is the a simple actinscript to blur images

for creating an hover effect on thumbs

:-)

PAUK

Text Blur
What is the best way to add this effect to make text streak accross the screen and then stop without using swish?

Blur Effects
Hey, I've seen all these blur-type effects in a lot of flash movies, even banners...does anyone know how you do that? Make something look blurred for a sec? It's hard to descibe...well, if anyone has ever seen Thomas Lee's "Chipmunk Gangsta rap" movie(it's on newgrounds), he uses the blur effect a lot...just wondering if anyone knows how to do that. Thanks.

Email me if you know how: Kittiesister@hotmail.com

Create Blur...
I want to make buttons that when the mouse is not over them they are a blur but when you roll over them they become clear. I really want to know how can you make text/objects to be blurred in Flash...

Thanks for any help!

Blur Image
Hi

can anybody tell me how to do a cool blur image effect on flash.
and text as well

Blur Font's On A Mac (not PC)
Hi,

I'm having a problem with my website. The website is Auto resize
(100%100). When viewed on a 17" or larger the text appears oke..
But any smaller and it's to much blurred.

I've read a lot about pixel fonts & the problem with normal fonts,
that get blurred. I replaced the font for _sans. But as far as I understand you can't use Auto resize with pixel fonts ? When I try to resize the window the text jumps out of its border..

1. I really don't want to stop using auto resize
2. I want to have sharp small fonts. ( movie size is less important)

the site is http://www.ideko.nl

// On the "home" page it's the text in the most right box

I temporary stopped using Auto Resize, and using _sans looks good
on a PC but not on a MAC..

result : http://www.ideko.nl/test1.html

// On the "home" page it's the text in the most right box, it's sharp
now, but I can't use auto resize

Can somebody.. anybody help me to get this site running with Auto resize and sharp small font's on PC & MAc ??

Thanx already.. !!

Laurens
The Netherlands

Movie Blur?
I have created a graphic from 40 jpeg pictures (at 12kb ea roughly) for a slide show with a mp3 background, which I am hoping to motion tween at 25ftp for the duration of the music.
All calculations and frames in correct place but when I Export the movie and go to play it....it plays but all the graphics are blurred???
Please help this newbie

NightBreed

Actionscript Blur
how can you make a blur mask in just a little space over a photo, just with actionscript?

Blur Affect
How do you get that blur affect, which looks like a brief flash in the pictures. Sites normally use it as movements..From one picture to the other or with fonts... http://www.sonypictures.com/movies/u...rld/index.html .. this is one of the sites I see it on .. under button "Enter the Underworld"

Blur Effect
I have seen alot of this as of late, either using type or 3d graphics, some artists are pulling off some nice blur effects in flash. They way I am thinking to do it is, with a "shiat load" of layers, etc. opacitys. It has been a bit since I have touched the software, is there a new method to the madness? tutorial links etc? Much appreciated

Bests

Chap

Blur And Image
how do i make an image blur

Blur An Image?
Does anyone know the best way to start an image(say of a landscape) blurred, and then unblur the image so it's clear(normal? Like the way you can fade an image in using alpha levels. I would appreciate it if anyone has wanted to do this and knows the best way

thanks

Blur Effect
Can anybody let me know how the use the picture blurring effect?

Leroy

Blur Effect
Do anyone knows how to make blur effect in flash 5? I hear that i need photoshop to do it, but do anyone know a simple program other than photoshop or those huge program? I just want to create blur effect only, thanks!

Copyright © 2005-08 www.BigResource.com, All rights reserved