Weiterleitung auf URL [MX]

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:

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;
	}
};
Dies ist das Intro, nun habe ich unten noch folgenden Code für die Weiterleitung hinzugefügt:

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");
	}
};
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
 
hi Alma

Ich denke mal, da stimmt was mit dem URL nicht.

Wenn getURL wirklich ausgeführt wird (bist Du sicher ?
füg doch mal ein trace unter getURL ein und schau ob
es ausgeführt wird)kanns nur am URL liegen.

Mit dem Rest des Codes hat es wohl kaum was zu tun.

G-skyla
 
Ich habe jetzt einmal als Link http://www.google.ch eingefügt. Dieser Link sollte ja eigentlich funktionieren.

Ich schicke Dir hier einmal die .swf Datei, da die .fla zu gross ist. Aber du siehst hier gut, welcher Effekt eintritt.

G-Alma
 

Anhänge

Wenn du dieses File ausführst, kommt zuerst das Intro und danach leitet es dich weiter auf Google?

Bei mir funktioniert dies nicht, er versucht bereits am Anfang auf Google weiterzuleiten...
 
Du hast recht, bei mir funktioniert es jetzt auch. Aber trotzdem noch eine Frage. Flash versucht jetzt ja ständig auf di Seite zu verbinden, kann man dies nicht verhindern?
 
Zurück