Problem faced(Pls help me…)
Scene=Scene 1, Layer=Layer 1, Frame=1: Line 1: Clip events are permitted only for movie clip instances
onClipEvent (load) {
Scene=Scene 1, Layer=Layer 1, Frame=1: Line 1: Statement must appear within on/onClipEvent handler
for (k=0; k<100; k++) {
Actions for frame
onClipEvent (load) {
//specifies the size of the movie stage
movieWidth = 800;
movieHeight = 600;
//variables that will modify the falling snow
i = 1+Math.random()*2;
k = -Math.PI+Math.random()*Math.PI;
//giving each snowflake unique characteristics
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;
}
Actions for snow
for (k=0; k<100; k++) {
duplicateMovieClip(this.snow, “snow”+k, k);
}