externe swf

Hi,

am Anfang der Funktion "stepImg" findest Du folgenden Code:
Code:
	current += o;
	if (current>amt) {
		current = 1;
	}
	if (current<1) {
		current = 1;
	}
	np = current+o;
	if (np>amt) {
		np = 1;
	}
	if (np<1) {
		np = 1;
	}
Ändere diese Zeilen so ab:
Code:
	current += o;
	if (current>amt) {
		current -= o;
		return;
	}
	if (current<1) {
		current -= o;
		return;
	}

Gruß
.
 
Zurück