Roli189
Mitglied
Hallo!
Ich habe eine Frage zu diesem Script:
bilder_anzahl = 18;
sekunden_anzahl = 5;
Bildwechsel();
setInterval(Bildwechsel, 1000*sekunden_anzahl);
function Bildwechsel() {
if (akt_anzahl<bilder_anzahl) {
akt_anzahl++;
} else {
akt_anzahl = 1;
}
file = "pic"+akt_anzahl+".jpg";
galerie.b_bildwechsel = true;
}
galerie.onEnterFrame = function() {
this.lb = this.container_mc.getBytesLoaded();
this.tb = this.container_mc.getBytesTotal();
if (this.lb>=this.tb) {
if (this.container_mc._alpha<99 && this.fade_out == false) {
this.container_mc._alpha += 10;
}
if (this.container_mc._alpha>99 && this.b_bildwechsel == true) {
this.fade_out = true;
}
if (this.container_mc._alpha>0 && this.fade_out == true) {
this.container_mc._alpha -= 10;
}
if (this.container_mc._alpha<=0 && this.b_bildwechsel == true) {
this.container_mc._alpha = 0;
this.b_bildwechsel = false;
this.fade_out = false;
loadMovie(file, galerie.container_mc);
}
}
};
Ich möchte dieses Script so ändern das ich mit einem Button die Bilder selber vor/zurückschalten kann, aber ich komm einfach nicht drauf wie.
Wäre super wenn ihr mir sagen könntet wie ich das mache.
Tausen Dank
Roli
Ich habe eine Frage zu diesem Script:
bilder_anzahl = 18;
sekunden_anzahl = 5;
Bildwechsel();
setInterval(Bildwechsel, 1000*sekunden_anzahl);
function Bildwechsel() {
if (akt_anzahl<bilder_anzahl) {
akt_anzahl++;
} else {
akt_anzahl = 1;
}
file = "pic"+akt_anzahl+".jpg";
galerie.b_bildwechsel = true;
}
galerie.onEnterFrame = function() {
this.lb = this.container_mc.getBytesLoaded();
this.tb = this.container_mc.getBytesTotal();
if (this.lb>=this.tb) {
if (this.container_mc._alpha<99 && this.fade_out == false) {
this.container_mc._alpha += 10;
}
if (this.container_mc._alpha>99 && this.b_bildwechsel == true) {
this.fade_out = true;
}
if (this.container_mc._alpha>0 && this.fade_out == true) {
this.container_mc._alpha -= 10;
}
if (this.container_mc._alpha<=0 && this.b_bildwechsel == true) {
this.container_mc._alpha = 0;
this.b_bildwechsel = false;
this.fade_out = false;
loadMovie(file, galerie.container_mc);
}
}
};
Ich möchte dieses Script so ändern das ich mit einem Button die Bilder selber vor/zurückschalten kann, aber ich komm einfach nicht drauf wie.
Wäre super wenn ihr mir sagen könntet wie ich das mache.
Tausen Dank
Roli