Hallo Marki,
»» function ResetText() {
> var h_container = document.getElementById("hr");
> var m_container = document.getElementById("min");
> var s_container = document.getElementById("sec");
>
> _AnzElm.style.color = _BodyElm.style.color;
> _AnzElm.style.textDecoration = 'none';
>
> if (!isNaN(parseInt(h_container.value))) {
> Sekunden = parseInt(h_container.value)*3600;
> } else {
> alert("Ungültige Stundenangabe!");
> return;
> }
> if (!isNaN(parseInt(m_container.value))) {
> Sekunden += parseInt(m_container.value)*60;
> } else {
> alert("Ungültige Minutenangabe!");
> return;
> }
> if (!isNaN(parseInt(s_container.value))) {
> Sekunden += parseInt(s_container.value);
> } else {
> alert("Ungültige Sekundenangabe!");
> return;
> }
> _starttime = 0;
> _pausetime=0;
> _currentSeconds = Sekunden;
> SetCountdownText(Sekunden);
> }
Diese Funktion liest die Werte für Stunden, Minuten und Sekunden aus Formularfeldern und berechnet daraus die Count-Down-Sekunden. Ändere sie mal in
function ResetText() {
_currentSeconds = 1234;
SetCountdownText(_currentSeconds);
}
Wenn das läuft, kannst du statt "1234" dann hier beliebige Werte, auch aus einem Array, nehmen.
Gruß, Jürgen