PDA

View Full Version : Strange Noise when importing an FLV file with Alpha Channel



The.Dispatcher
May 14th, 2009, 10:47 AM
Hi Guys,

I have a strange issue with the FLV files i imported to my site.
These FLVs were imported with Alpha channels.
In my site there is a button, that when its pressed for each FLV it starts playing.

The Problem is after its been playing for awhile there is a strange Noise at the background that starts appearing slowly. (Please see attached file).

The only code i have on each FLV is for transparety and a Loop (Plaese see below):

Anyone knows maybe what is this thing? i never saw this before.

Thanks For your help

onClipEvent (load) {
this._alpha = 0;
this.dir = -1;
}
onClipEvent (enterFrame) {
if (Math.round(this._alpha) == 0 || Math.round(this._alpha) == 100) {
this.dir *= -1;// change the direction of the fade
}
this._alpha += 5*this.dir;

}

on (complete) {
this.autoRewind = true;
this.play();
}

The.Dispatcher
May 18th, 2009, 05:26 AM
NoOne had this issue?