I have an fla that is loading 2 external swf’s (both are fairly small in size, as they are just text effects , about 16k each)
The code is applied to 2 emptymc’s I made & placed on the stage for containers.
(although I since learned that these could be generated with script as well)
I also have some code on my first frame that is set to randomly move some cloud images I have on the stage.
The movie was playing ok, but loading slow - there are many images and this is going to be a VERY large file I have accepted that.
So, I made a new first scene and put a preloader on it.
Now, when I control +enter to preview the movie, I get this error:
(screen shot attached below)
A script in this movie is causing the Flash Player to run slowly. If it continues to run, your computer may become unresponsive. Do you want to abort the script?
If I pick yes, the movie will play but no random cloud movement and no loading of the external swf’s.
I know it would be so much easier if I could attach my fla but it is much too big.
Well…there must be something wrong with your codes and stuff, and the only way we can find out is look at your fla :-\ Unless you know which part it is and can just post the code or something…
Okay-
Here is the first scene of the movie called preloader
First frame has code:
<hr>
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent100;
this.loadText = Math.round(getPercent100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}
<hr>
Second frame has this code:
<hr>
this.gotoAndPlay(1);
<hr>
And third frame of this scene has this code:
<hr>
gotoAndPlay(“scene1”,1);
<hr>
Then I have a scene 1 with this code on frame 1:
(I am using the createEmptyMovieClip command instead of the actual empty mc’s on the stage- as mentioned in my first post- and there are also 3 cloud symbols with this code directly on them:
onClipEvent(enterFrame){
move();
}
<hr>
function getdistance(x,x1) {
var run;
run = x1-x;
return (_root.hyp(run));
}
function hyp(a, b) {
return (Math.sqrt(aa+bb));
}
MovieClip.prototype.reset = function() {
//specify the width and height of the movie
width = 1024;
height = 300;
//-------------------
var dist, norm;
this.x = this._x;
this.speed = Math.random()*4+1;
this.targx = Math.random()*width;
dist = _root.getdistance(this.x,this.targx);
norm = this.speed/dist;
this.diffx = (this.targx-this.x)*norm;
};
MovieClip.prototype.move = function() {
if (_root.getdistance(this.x,this.targx)>this.speed) {
this.x += this.diffx;
} else {
this.x = this.targx;
if (!this.t) {
this.t = getTimer();
}
if (getTimer()-this.t>1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
};
This was my second attempt to get this file to work, so I was only trying to load one external swf (welcometo.swf) instead of 2. But still same problem.