29/09/2005, 20:52
|
| | | Fecha de Ingreso: marzo-2005 Ubicación: Peru
Mensajes: 481
Antigüedad: 19 años, 8 meses Puntos: 4 | |
este es el codigo q llama al txt externo
stop();
System.useCodepage = true;
noticias = new LoadVars();
noticias.load("flas_mx/losetar.txt");
noticias.onLoad = function() {
losetar = noticias.news;
play();
};
un tip's para colocar hacer un txt dinamico invisible
stop();
subir.onRollOver = subir.onRelease=function () {
i = 0;
this.onEnterFrame = function() {
if (i%2 == 0) {
losetar.scroll = losetar.scroll-1;
}
i++;
};
};
bajar.onRollOver = bajar.onRelease=function () {
j = 0;
this.onEnterFrame = function() {
if (j%2 == 0) {
losetar.scroll = losetar.scroll+1;
}
j++;
};
};
subir.onRollOut = bajar.onRollOut=function () {
delete this.onEnterFrame;
};
subir.usehandCursor = false;
bajar.useHandCursor = false;
****
y esto esta en el boton
on (release) {
unloadMovie("conswf");
conswf.loadMovie("Fabrica0.swf");
}
*** |