Alrit, problem. I remember having this before sometime but don’t remember how to solve it anymore. When my IE loads the html page with the swf, it loads the file as a whole and then starts playing the preload after IE loads the entire movie. How can I solve that? Is it the preloader problem?
*Originally posted by kode *
**See the code in the Frame Actions of the layer called Init. **
Ick, can’t find it.
[AS]/***Author: Ilyas USAL (pom)
Title: The Matrix has you…
Date: 06/06/2003
***/
// To make it run smoother
_quality = “HIGH”;
/*** Functions ***/
// fade out and stop when _alpha inferior to 35 - no parameters
function fadeOut(){
this._alpha -= 5;
if (this._alpha < 45) delete this.onEnterFrame;
}
// fade out and remove clip when _alpha inferior to 10 - no parameters
function fadeToBlack(){
this._alpha -= 5;
if (this._alpha < 10){
delete this.onEnterFrame;
this.removeMovieClip();
}
}
// Create a new clip with a letter in it
// x: _x position ; y: _y position ; size: size of the letter
MovieClip.prototype.createLetter = function (x,y,size){
// Create and position the new clip
var mc = this.createEmptyMovieClip(“letter”+this.dep,this.dep++);
mc._x = x;
mc._y = y;
// Create a new TextField in the clip
mc.createTextField(“t”,0,0,0,size,size);
// Choose a random letter
var myChar = Math.round(Math.random()*87)+36;
mc.t.text = chr(myChar);
// Create the TextFormat, format the text and embed the font
var tf = new TextFormat();
tf.size = size;
tf.font = “Courier New”;
tf.selectable = false;
tf.color = “0x85ABC2”;
mc.t.setTextFormat(tf);
mc.t.embedFonts = true;
// Fade the letter until its _alpha = 35
mc.onEnterFrame = fadeOut;
}
// Create a trail of letters
function createTrail(){
// Create new clip and position it randomly
var clip = this.createEmptyMovieClip(“trail”+i,i++);
clip._x = Math.round(random(Stage.width)/10)*10;
clip._y = clip.y = -10;
// Choose a random size for the letters, and set the spacing
var size = random(10)+15;
clip.spacing = size + 2;
// onEnterFrame, create a new letter that will wade out.
// if we’re at the bottom of the screen, fade out the whole trail
clip.onEnterFrame = function(){
this.y += this.spacing;
this.createLetter(0,this.y,size);
if (this.y > Stage.height) this.onEnterFrame = fadeToBlack;
}
}
// Create a new trail every 100 milliseconds
setInterval(this,“createTrail”,100);
[/AS]
I remember having this before sometime but don’t remember how to solve it anymore. When my IE loads the html page with the swf, it loads the file as a whole and then starts playing the preload after IE loads the entire movie. How can I solve that? Is it the preloader problem?
So once I get some graphics inside it, the preload should load correctly? But I don’t really think thats the problem though. In my matrix movie currently, there is actual graphics in later scenes, but just not shown yet because still in beta stage.