I did the falling snow tutorial. and when ever I tested it said that there was script in this movie that was making Flash run slowly, then asked me if I wanted to abadon the script.
I thought I had mistyped something. So to be sure I started over and copy and pasted all the script this time and still the same problem. I downloaded his finised fla file and it worked fine. Any suggestions?
system
September 23, 2004, 12:30pm
2
Sounds like you have a ‘forever loop’ somewhere in your swf. Pay specific attention to the looping parts of your scripts.
system
September 23, 2004, 1:00pm
3
Arekaine:
I did the falling snow tutorial. and when ever I tested it said that there was script in this movie that was making Flash run slowly, then asked me if I wanted to abadon the script.
I thought I had mistyped something. So to be sure I started over and copy and pasted all the script this time and still the same problem. I downloaded his finised fla file and it worked fine. Any suggestions?
Hi
Can we look at your code?? if not really a problem
aShIsH
system
September 24, 2004, 7:21am
4
No prob. This is the code that is in the one little snow flake
onClipEvent (load) {
//variables
width = 300;
height = 200;
//random x,y, and alpha
this._xscale = this._yscale=50+Math.random()100;
this._alpha = 20+Math.random()50;
//random x and y for flakes
this._x = -width+Math.random() (3 width);
this._y = -10+Math.random()*height;
//speed and trigonometric value
i = 1+Math.random()*2;
k = -Math.PI+Math.random()Math.PI;
rad = 0;
}
onClipEvent (enterFrame) {
// horizontal movement
rad += (k/180)Math.PI;
xmovement = _root._xmouse;
this._x -= Math.cos(rad)+(xmovement-(width/2))/50;
// vertical movement
this._y += i;
// remove clips when they misbehave (overstep boundaries)
if (this._x>(width+50)) {
this._x = -45;
this._y = Math.random()height 2;
}
if (this._x<-50) {
this._x = width+45;
this._y = Math.random()height 2;
}
if (this._y>=height) {
this._y = -50;
this._x = -width+Math.random() (3 width);
}
}
I understand about 30% of this script. But I don’t see any anything that would make it mess up the computer. But any help would be appreciated
system
September 24, 2004, 10:59pm
5
Still need some help with this please
system
September 25, 2004, 12:18am
6
Possibly your computer isn’t powerful enough :h:
system
September 25, 2004, 8:25am
7
I thought that too. But when I downloaded the source file from the tutorial, It worked fine.