Preloader/Script Error Problem

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.

:toad:

Copy and paste your script along with what frames and scene it is in.

V.

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(getPercent
100)+"%";
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.createEmptyMovieClip(“clip1”, 1);
clip1.loadMovie(“welcometo.swf”);
<hr>

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.

In the scence “scene1” label the first frame. e.g “Main”.

Then in your preloader scene in the 3rd frame use the frame label name to target that frame.

I dont encourage the use of scenes, they are more trouble than they are worth in my opinion.

Regards,
Viru.

well you think I would be better off not using scenes at all and just dropping the preloader into the same scene as my main movie?

Try labelling the frame first.

But thats how i do it. The first 2 frames of all my swf’s are for the preloader soley. I’ve never had a major preloader since. :slight_smile:

Regards,
V.

yes…best not to use any scenes in any swf at all :slight_smile:

Okay-

well thank you for all the friendly advice

~Jill

:thumb:

Your very welcome.

V.

Well I tried the frame label solution, still same error.
I moved my preloader into the same scene as the main movie and viola-
worked like a charm.

I will avoid scenes from now on! Thanks guys! :azn: