Folienpräsentations problem !

root_alpha

Erfahrenes Mitglied
Hallo,
Sitze hier an einer Folienpräsentation und habe ein Intervall problem.
Folgendes Script soll den Intervall starten;

var id = setInterval(Bildwechsel, 1000);
function Bildwechsel() {
_root.presentation.gotoNextSlide();
trace (_root.presentation.currentSlide._name+' '+_root.presentation.parentSlide.nextSlide._name);
clearInterval(id);
}

Leider startet der Intervall nicht :(

Wo habe ich den da den Fehler, hat jemand von Euch einen Tip für mich?
 
Hi, problem hat sich erledigt.

Script schaut dann so aus;
PHP:
var id = setInterval(Bildwechsel, 1000);
function Bildwechsel() {
 _root.presentation.currentSlide.gotoNextSlide();
 trace(_root.presentation.currentSlide._name+' '+_root.presentation.currentSlide.nextSlide._name);
 //clearInterval(id);
}
 
Zurück