Hallo Leute,
vor 10 Jahren habe ich einmal eine Flash-Webseite machen lassen von nem Bekannten (der nicht mehr auffindbar ist). Berthold Stetter Photodesign Augsburg
Nun habe ich die Seite vergrössert, das war selbst mit meinen Kenntnissen kein Problem. Nur: Die Bilder werde nicht mehr geladen. Wahrscheinlich hapert es am Actionscript. Berthold Stetter Photodesign Augsburg
ZitatAlles anzeigen
stageBreite = 1200;
stageHoehe = 600;
phpPfad = "php/diverse.php";
methode = "POST";
ordner = "bilder/diverse/";
datei = "diverse";
format = ".jpg";
aktBild = 1;
alphaFaktor = 10;
infoText = "Bilderladevorgang fehlgeschlagen";
this.createEmptyMovieClip("slideshow", 1000);
info.selectable = false;
vl = new LoadVars();
vl.onLoad = function(erfolg) {
if (erfolg) {
if (this.photoanz != undefined) {
photoAnzahl = this.photoanz;
bildwh = this.wh.split("|");
for (a=1; a<=(photoAnzahl+1); a++) {
bildwh[a] = bildwh[a].split(",");
}
for (i=1; i<=photoAnzahl; i++) {
slideshow.createEmptyMovieClip("cont"+i, i);
slideshow['cont'+i].loadMovie(ordner+datei+i+format);
slideshow['cont'+i]._x = stageBreite/2-bildwh[i][0]/2;
slideshow['cont'+i]._y = stageHoehe/2-bildwh[i][1]/2;
slideshow['cont'+i]._alpha = 0;
}
slideshow['cont1']._alpha = 100;
btnL.onPress = function() {
btnL.enabled = false;
lastBild = aktBild;
aktBild--;
if (aktBild<1) {
aktBild = photoAnzahl;
}
slideshow.onEnterFrame = function() {
if (slideshow['cont'+lastBild]._alpha>0) {
slideshow['cont'+lastBild]._alpha -= alphaFaktor;
}
if (slideshow['cont'+aktBild]._alpha<100) {
slideshow['cont'+aktBild]._alpha += alphaFaktor;
} else {
delete slideshow.onEnterFrame;
btnL.enabled = true;
}
};
};
btnR.onPress = function() {
btnR.enabled = false;
lastBild = aktBild;
aktBild++;
if (aktBild>photoAnzahl) {
aktBild = 1;
}
slideshow.onEnterFrame = function() {
if (slideshow['cont'+lastBild]._alpha>0) {
slideshow['cont'+lastBild]._alpha -= alphaFaktor;
}
if (slideshow['cont'+aktBild]._alpha<100) {
slideshow['cont'+aktBild]._alpha += alphaFaktor;
} else {
delete slideshow.onEnterFrame;
btnR.enabled = true;
}
};
};
}
} else {
btnL._alpha = 0;
btnR._alpha = 0;
info.text = infoText;
}
};
vl.sendAndLoad(phpPfad, vl, methode);
Kann sich jemand mal den Fall ansehen und mir weiterhelfen. HAb keine Ahnung woran das liegen könnte!
Danke schon mal!:)
Gruß
Thomas