hello all,
just wondering if could lend me a hand..
I really need a countdown timer for "startgame" secene on my project
how easy is it to do this? id like it to countdown from 60seconds as soon as you enter that page..
is this possible?
Matt
hello all,
just wondering if could lend me a hand..
I really need a countdown timer for "startgame" secene on my project
how easy is it to do this? id like it to countdown from 60seconds as soon as you enter that page..
is this possible?
Matt
Matt java help needed...
Hi,
Code:/* Count Down Timer T. Norman http://ntdesigns.net */ function countDownTimer(minute, tX, tY) { _root.createEmptyMovieClip("countDown", 10); cCenterX = tX; cCenterY = tY; _root.countDown.counter._x = cCenterX; _root.countDown.counter._x = cCenterY; _root.countDown.createTextField("myTextField", 1, cCenterX, cCenterY, 30, 20); _root.countDown.myTextField.background = true; _root.countDown.myTextField.autoSize = "center"; _root.countDown.myTextField.border = true; _root.countDown.myTextField.backgroundColor = 0x00FFCC; minute = minute; seconds = 59; myCountDown = function () { seconds--; }; countInterval = setInterval(myCountDown, 1000); this.onEnterFrame = function() { if (seconds<10) { _root.countDown.myTextField.text = minute-1+":"+"0"+seconds; } else { _root.countDown.myTextField.text = minute-1+":"+seconds; } if (seconds === 0) { clearInterval(countInterval); seconds = "0"; minuteDelay = setInterval(minuteChangeDelay, 1000); } if (_root.countDown.myTextField.text == "0:00") { delete this.onEnterFrame; _root.countDown.myTextField.text = "Time Up!"; } }; minuteChangeDelay = function () { minute--; seconds = 59; countInterval = setInterval(myCountDown, 1000); clearInterval(minuteDelay); }; } //Usage..... functionName(minutes,x position,y position) countDownTimer(1, 400, 200);
A mind once stretched by a new idea never regains its original dimensions.
- Oliver Wendell Holmes
There are currently 1 users browsing this thread. (0 members and 1 guests)
Create Speaking Characters for your website and Flash movies. 15 Day Free Trial |
|
|
Bollywood Actress |
Web Hosting Provider |
Bookmarks