Hallo stehe Grad hier mit meinem counter und leider weiß ich nicht wie ich es schaffe das wen der counter runter auf 00000 oder ins -126345 gecountet hat, das ich diese dann abfrage und erst dann was ausführe Z.b
der counter schaut so aus, siehe Anmbesten Anhang.
Ich dachte mir ich stelle diese anfrage hier?
PHP
onClipEvent(load) {
//Create and set initial countdown varibles
var start = getTimer();
this.hoursleft = _root.hours;
this.minutesleft = _root.minutes;
this.secondsleft = _root.seconds;
click = new Sound();
click.attachSound("air");
}
onClipEvent (enterFrame) {
//Countdown script
elapsed = getTimer() - start;
if (elapsed < 1000) {
continue
} else {
click.start();
start = getTimer();
elapsed -= 1000;
this.secondsleft -= 1;
if (this.secondsleft < 0) {
this.secondsleft += 60;
this.minutesleft -= 1;
}
if (this.minutesleft < 0) {
this.minutesleft += 60;
this.hoursleft -= 1;
}
if (this.hoursleft < 0) {
this.hoursleft += 24;
}if (this.secondsleft < 0 && this.minutesleft < 0 && this.hoursleft < 0) {
countdown = -1;
}else{
countdown = +1;
}
}
}
Alles anzeigen
Aber jergend wie s klapt es nicht.
Mfg seby