este codigo me crea un borde al subirlo al internet cual puede ser el problema por favor ayuda
Stage.scaleMode = "noScale";
// --
sonidoScroll = new Sound();
sonidoScroll.attachSound("sonido");
sonidoScroll.setVolume(50);
// --
this.createEmptyMovieClip("loop", this.getNextHighestDepth());
// --
stopScroll = function () { sonidoScroll.stop();delete loop.onEnterFrame;this.texto.textColor = 0x000000;suena = undefined;};
// --
startScroll = function (texto, direccion) { loop.onEnterFrame = function() {if (texto.scroll == texto.maxscroll && direccion == 1 || texto.scroll == 1 && direccion<1) {sonidoScroll.stop();} else {if (!suena) {sonidoScroll.start(0, 999);suena = true;}}texto.scroll += direccion;};};
// --
item_txt.wordWrap = true;
item_txt.multiline = true;
item_txt.text = "Cargando texto ...";
//miloadVars = new LoadVars();
//miloadVars.onLoad = function(succes) {
//if (succes) {
///item_txt.text = miloadVars.texto;
//} else {
//item_txt.text = "Error";
//}
//};
//miloadVars.load("texto.txt");
// --
subir_btn.onRollOver = function() {
this.texto.textColor = 0xff0000;
startScroll(item_txt, 1);
};
bajar_btn.onRollOver = function() {
this.texto.textColor = 0xff0000;
startScroll(item_txt, -1);
};
// --
subir_btn.onRollOut = bajar_btn.onRollOut=stopScroll;