alert This appears to be a flash file, you cannot see a preview because flash player is no longer supoorted in browsers, but you can still download the file to study it's source code.
You can open/play the swf file with Flash Player exe
user adrianTNT
adrianTNT (32)

Color Blend Rain

The clips are duplicated on stage and an "add" color blend is added, a random speed, a blur and that is it.
This file is 3KB, source is 30KB.
You can add / remove clips by modifying one number in the root.
The code contains around 30 ActionScript 2.0 lines.

9898 downloads, 48761 views

color blend rain flash animation colors colorful


Download (7.55 KB)

Comments

You need to login to post a comment.

user adrianTNT
the listing author adrianTNT (admin) 12 months ago

Testing

user adrianTNT
the listing author adrianTNT (admin) 13 years ago

You are welcome. I am glad you like it.
Over 8500 downloads :D

user sumitinspark
sumitinspark 13 years ago

Thanx man!

user maxhenrry
maxhenrry 14 years ago

me encanta .... :)

user webpoetry
webpoetry 14 years ago

thanks

user adrianTNT
the listing author adrianTNT (admin) 14 years ago

Hi WebPoetry, I don't know what you mean by "title backgrund" but is ok to use it in projects for you or for your clients as long as it is not redistributed multiple times (like templates are).

user webpoetry
webpoetry 14 years ago

hypnotic. great!
You care if I used like a title background??

user jcgveg
jcgveg 15 years ago

very beautiful

user adrianTNT
the listing author adrianTNT (admin) 15 years ago

Thanks.

user alkaucil
alkaucil 15 years ago

all your stuff is great!

user adrianTNT
the listing author adrianTNT (admin) 15 years ago

Kito11, I probably forgot to reply...
No, sorry, but thanks.

user kito11
kito11 15 years ago

Awesome job adrian !!!
Are you searching a job in luxembourg by chance ?
if you search call me ;)

user minamiyuki
minamiyuki 15 years ago

Absolutely cool!! Like vista-aurora!!
Fav it

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

Hello Chokdi, I am glad you like it, unfortunely, I am very busy managing these sites and I do not have time for these customizations, you need exact directions there and that takes some time. I recommend that you ask in a forum like kirupa.com/forum/ about how to customize the flash files.
Good luck.

user chokdi
chokdi 16 years ago

Hey, that's an amazing work...
and well i of course have a question, i'd rather have the balls not moving, but rather having their glow changing (and if possible, but looks hard, the colours changing too...).
Would you also have an idea of the layerstyle to put to have a siilar rendering on a white bg?
thanks for your help, and bravo again!
cheers

user shreeprasad
shreeprasad 16 years ago

Beautiful.

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

Yes, that is notmal, because of the "add" layer style.

user Marto
Marto 16 years ago

adrian, what happens when am uasing a white bg ?? everything seems to dissapear!!

user RubenBristian
RubenBristian 16 years ago

this file rocks :))

user kelvin4000
kelvin4000 16 years ago

Sick, nice work!

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

Try to:
- create an empty clip like "rain"
- place your mask over this clip
- modify code so that the lights are created inside the "rain" clip: _root.attachMovie changed to: _root.rain.attachMovie, there are probably more locations to edit, wherever it referrrs to "ball"

user darrenwool
darrenwool 16 years ago

Great code Adrian, But I'm trying to mask it, so i is contained in a box. But it goes down the whole screen. I tried your code "_root.attachMovie('ball', 'ball'+counter, counter-999999999999);" to change the depth, but it still stays on top. Any Ideas?

user chukumekso
chukumekso 16 years ago

amazing! keep up.

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

The reason it appears in top is that clips are placed at a higher "depth", the depthh is set in this line:
_root.attachMovie('ball', 'ball'+counter, counter);
it is the last one ("counter"), try changing it with this line:

_root.attachMovie('ball', 'ball'+counter, counter-999999999999);

user rodes
rodes 16 years ago

How can we make to put a movie clip over this animation?
Because when i put a movie clip over this layer in the timeline he appears behind this animation

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

Yes, free for use in most non-commercial things, let me know how you plan to use it and I can give you a bettera nswer.

user Marto
Marto 16 years ago

hey adrian, is this for free?

user gayanpathirana
gayanpathirana 16 years ago

It's very nice.. yar..... One of ther best i saw.... something diferent... do more....
..... Gayan......

user webreake
webreake 16 years ago

thanks, i just wanted because i remember seen something interesting in that code

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

Webreake, I think you are refering to a file that a user posted before this one, I had to remove it because it was too similar to another one at flashden, then I made some simlar experiments and I created this one.

user webreake
webreake 16 years ago

does the file "blend of color" has been removed ?

user EagleVision
EagleVision 16 years ago

That is gread adrian! :)

user red.eye
red.eye 16 years ago

what a nice effect!!!

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

You are welcome :)

user popljubo
popljubo 16 years ago

Hey Adrian,
I'm in a big trouble because of your work ;)
...my intention was to use it just for
NewYear banner of the timisoara national theater website.
you make the people from TM theater so happy
and now they just wont gave up.
So, shame on you!
& thanks again

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

// Complete new code to make the lights go up would be:

attachMovie(random(6),"content",1);
this._x = random(Stage.width)-(this._width/2);
this._y = random(Stage.height)-(this._height/2)-St age.height-200;
//
this._xscale = random(190)+50;
this._yscale = this._xscale;
//
this.blendMode = "add";
this.blurX = 100;
this.blurY = 100;
//
ball_speed = random(7)+3;
//
onEnterFrame = function () {
this._y -= ball_speed;
if ( _y < 0-this._height) {
this._y = Stage.height
}
};
// add some blur effects
var some_filters:Array = this.filters;
// blur x, y , quality
blur_power = random(10)+5;
var my_blur = new flash.filters.BlurFilter(20, 20, 1);
this.filters = [my_blur];
//
import flash.filters.GlowFilter;
var mc:MovieClip = createGlowFilterRectangle("GlowFilterBlu rX");
mc.onRelease = function() {
var filter:GlowFilter = this.filters[0];
filter.blurX = 20;
this.filters = new Array(filter);
};

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

TheOcharis: to change speed you need to edit this inside clip "ball":
ball_speed = random(7)+3;
The above will have a random speed between 3 and 10.

To make it move in a different direction, up for example, change these:

line 3:
this._y = random(Stage.height)-(this._height/2)-St age.height-200;
change to:
this._y = Stage.height

line 15:
this._y += ball_speed;
change to:
this._y -= ball_speed;

line16:
if (_y>Stage.height) {
change to:
if (_y<0-this._height) {

and line 17:
this._y = random(Stage.height)-(this._height/2)-St age.height-this._height;
change to:
this._y = Stage.height

user theocharis
theocharis 16 years ago

Really beautiful effect!
Can it be made slower, or float in a different direction?

user underlinewords
underlinewords 16 years ago

impressive... very fantastic!

user criss
criss 16 years ago

thanks for all
criss

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

Sure Popljubo, use it.

user popljubo
popljubo 16 years ago

Hello, adrianTNT
Love your work!
I'm new in Flash & AS ...
[Like jmorales] I'm designing a website & want your file ColorBlendRain for the NewYear Banner of the website; [tntimisoara.com]
Do I have your permition to do that?

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

Sure Jmoralesan, go ahead.

user jmoralesan
jmoralesan 16 years ago

Hello, my name is Sebastian Morales and I'm designing a website for a e-zine, your file color blen rain is excellent and I want this for the intro of the website, can i Use this with your respective credit?

user webreake
webreake 16 years ago

nothing really i just mention it because it will be cool all the files be free to use commercially :p
i made my own variation of "blend of colours" using also "Particle Attractor" you can see it in my website

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

@Webreake: It is "free" to use unless you plan to sell it or include it in a ... template you sell. Even the second situation is acceptable, just let me know if you have something specific in mind.

user webreake
webreake 16 years ago

AdrianTNT the license says "This file is for personal, free, non-commercial use." so it is not free to use or the license file is wrong ?

freeware apps to create screensavers:
flashsaver.org/en/
instantstorm.com/features/

user wt008
wt008 16 years ago

"adrianTNT: Looks like we can keep this file online after all :)"

;-) Nice follow-up, good example.

user clipdepelicula
clipdepelicula 16 years ago

nice

user earthquake
earthquake 16 years ago

very cool man

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

Thanks for the feedback. Looks like we can keep this file online after all :)

user first
first 16 years ago

BEAUTIFUL! Love it! Keep up the great work!!

user ecipher
ecipher 16 years ago

Excellent Idea!

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

I just remembered, for the ones that do not know, at axialis.com/ssp/ there is a screensaver producer that allows you to create screen savers from flash files like this one. The screen saver producer is 30 days trial version.

user Tof
Tof 16 years ago

Very nice! My gears are turning as to what I can make with this. I'll try to think of something.

user jing1
jing1 16 years ago

nice but wouldnt know what 2 use it for

user adrianTNT
the listing author adrianTNT (admin) 16 years ago

Webreake, it is* free to use :)

user webreake
webreake 16 years ago

nice but too bad is not free to use

show all 59 comments