alma
Erfahrenes Mitglied
Hallo Zusammen
Ich habe ein kleineres oder grösseres Problem. Ich habe ein Intro erstellt und möchte nun, dass man am Ende dieses Intros automatisch auf die Homepage weitergeleitet wird.
Ich habe dies einmal mit einem getURL versucht, dies führte bei mir jedoch nicht zum gewünschten Erfolg, denn dies bewirkte, dass Flash am Schluss des Intros ständig versuchte die Seite aufzubauen und dabei jedoch nie weiterging.
Hier der Code meines Intros:
Dies ist das Intro, nun habe ich unten noch folgenden Code für die Weiterleitung hinzugefügt:
Und mit diesem Code hat es dann den gesagten Effekt gegeben.
Kann mir irgendjemand sagen, wie ich dieses Problem lösen könnte?
Ich danke bereits jetzt für jede Antwort.
Alma
Ich habe ein kleineres oder grösseres Problem. Ich habe ein Intro erstellt und möchte nun, dass man am Ende dieses Intros automatisch auf die Homepage weitergeleitet wird.
Ich habe dies einmal mit einem getURL versucht, dies führte bei mir jedoch nicht zum gewünschten Erfolg, denn dies bewirkte, dass Flash am Schluss des Intros ständig versuchte die Seite aufzubauen und dabei jedoch nie weiterging.
Hier der Code meines Intros:
PHP:
pegasus = new Sound();
pegasus.attachSound("intro2");
pegasus.start(0);
logo.onEnterFrame = function() {
if ((_root.logo2._y<350) && (this._x<550)) {
this._x += 17;
this._y += 12;
}
if ((this._x>200) && (_root.logo2._y<450)) {
_root.logo2._y += 17;
_root.logo2._x -= 20;
}
if ((_root.logo2._x<350)) {
_root.logo3._y -= 16;
}
if ((_root.logo3._y<250)) {
_root.logo4._x -= 35;
_root.logo4._y -= 5;
}
if ((_root.logo4._x<250)) {
_root.logo5._x += 40;
}
};
PHP:
pegasus = new Sound();
pegasus.attachSound("intro2");
pegasus.start(0);
logo.onEnterFrame = function() {
if ((_root.logo2._y<350) && (this._x<550)) {
this._x += 17;
this._y += 12;
}
if ((this._x>200) && (_root.logo2._y<450)) {
_root.logo2._y += 17;
_root.logo2._x -= 20;
}
if ((_root.logo2._x<350)) {
_root.logo3._y -= 16;
}
if ((_root.logo3._y<250)) {
_root.logo4._x -= 35;
_root.logo4._y -= 5;
}
if ((_root.logo4._x<250)) {
_root.logo5._x += 40;
}
if ((_root.logo5._x=600)) {
getURL("modul.php?text=index2","_self");
}
};
Kann mir irgendjemand sagen, wie ich dieses Problem lösen könnte?
Ich danke bereits jetzt für jede Antwort.
Alma