Nov 21, 2009

[fl]snow Effect - Simple Snow Efect Script

free web hosting
Open Discussion & Free Web Hosting > Computers & Tech > Designing > Graphics Design

[fl]snow Effect - Simple Snow Efect Script

allstars
Here is a simple snow script that i will show you. Its pretty nice smile.gif.
Let's get started.
1.Draw a snow flake. (Using circle tool)
2.Select it and conert it to a symbol ( Ctrl+F8 ). Press movie clip, but don't click "ok" yet. Where it says "Linkage" click on export for action script.
3.For identifier put in, "flake".
4.Than put in following action script:

CODE
amount = 100;
mWidth = Stage.width;
mHeight = Stage.height;
for (var i = 0; i<amount; i++) {
thisFlake = this.attachMovie("flake", "flake"+i, i);
with (thisFlake) {
_x = Math.random()*mWidth;
_y = Math.random()*mHeight;
_xscale = _yscale=_alpha=40+Math.random()*60;
}
thisFlake.yspeed = Math.random()*2+ .1;
thisFlake.increment = -0.025+Math.random()*0.05;
thisFlake.onEnterFrame = function() {
this.radians += this.increment;
this._y += this.yspeed;
this._x += Math.sin(this.radians);
if (this._y>=mHeight) {
this._y = -10;
this._x = -10+Math.random()*mWidth;
}
      if (this._x>=mWidth || this._x<=0) {
this._y = -10;
this._x = -10+Math.random()*mWidth;
}
}
}


The code is very simple. I don't think it's any need to explain.
You can change the number of snowflakes by modifying :

CODE
amount = 100;


Hope it helped,
Cheers!

 

 

 


Comment/Reply (w/o sign-up)

yordan
Thanks a lot for this script.
You first posted this in our tutorial section. Your own text is a little bit short, it can't be accepted as a tutorial, it's far below the 500 words thereshold. That's why I moved your topic here.
Regards
Yordan

Comment/Reply (w/o sign-up)

FirefoxRocks
Is this to do with Dreamweaver? Photoshop? Fireworks? or what? It looked like JavaScript at first, but with all the _ characters, I'm not sure what it is. Please post what program this relates to when posting a "tutorial". That would help people follow the steps much easier wink.gif

Comment/Reply (w/o sign-up)

Darasen
QUOTE
4.Than put in following action script:


Action Script is the Scripting language used in Adobe Flash.

Comment/Reply (w/o sign-up)

CheckProgs
Wow, thanks. I'm going to use this for a Flash based comic I'm creating. I wish there was some sort of "Reputation", on these forums.

Comment/Reply (w/o sign-up)


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)


See Also,

*SIMILAR VIDEOS*
Searching Video's for , fl, snow, effect, simple, snow, efect, script
advertisement



[fl]snow Effect - Simple Snow Efect Script

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com