Salut nic0llas,
Là je ne sais pas si j'aurai le temps de faire un tuto....
Voici une bréve explication, ce n'est pas trés compliqué :
1) Dessine un petit point blanc que tu comvertis en MC nommé "snow" (sur la frame1)
Puis tu le sélectionne et tu lui ajoute ce code :
[cit]onClipEvent (load) {
movieWidth = 300;
movieHeight = 150;
i = 1+Math.random()*2;
k = -Math.PI+Math.random()*Math.PI;
this._xscale = this._yscale=50+Math.random()*100;
this._alpha = 75+Math.random()*100;
this._x = -10+Math.random()*movieWidth;
this._y = -10+Math.random()*movieHeight;
}
onClipEvent (enterFrame) {
rad += (k/180)*Math.PI;
this._x -= Math.cos(rad);
this._y += i;
if (this._y>=movieHeight) {
this._y = -5;
}
if ((this._x>=movieWidth) || (this._x<=0)) {
this._x = -10+Math.random()*movieWidth;
this._y = -5;
}
}
[/cit]
2) Tu crées maintenant un nouveau calque et tu place cette boucle sur la premiere frame :
[cit]for (k=0; k<50; k++) {
duplicateMovieClip(_root.snow, "snow"+k, k);
}[/cit]
Et la neige devrait tomber

Bon courage