The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
54 views

PHP Generated date -> Javascript countdown

I'm making a site for an Informatics project of mine. For that I want to make: php script that outputs a date which is can be stored in a Database. Javascript counts down to that date. If it's ...
0
votes
3answers
47 views

Timer to count down in VB.Net 2010?

I'm trying to use a timer to count down from a specified time I choose with the time being separated into minutes and seconds using the format MM:SS and then stop when the time reaches 00:00. So far ...
1
vote
1answer
28 views

Track each minute in countdown timer

I want to show a toast message after completion of each minute.I am using the count down timer and show the timer in a text view.Please help me to sort out this problem.Following is my code. ...
0
votes
0answers
34 views

How can I make an interactive jQuery countdown

i am trying to find a way how to create an interactive jQuery countdown: I mean that the user must enter a value from which it value will decrease! Do you have any suggestions? thank you in ...
0
votes
0answers
15 views

Android Quiz Timer Issues

IMPLEMENTATION 1 ISSUE Doubt 1: I tried timer using progress bar. Its like say 5 seconds per question. However, the progress bar does display countdown values. My issue is after time gets ...
0
votes
1answer
42 views

how to show confirm box when refresh in countdown timer

have a goog day , i am facing some problem in the countdown timer <div style="font-weight: bold; float:right;" id="quiz-time-left"></div> <script type="text/javascript"> ...
0
votes
0answers
16 views

Timer on three TextView don't working corectly

If it possible to make timer (custom dialog) with one CountDownTimer (this is my first steps with CountDownTimer) on three TextView (hours, minutes, seconds). Three NumberPickers (another custom ...
0
votes
0answers
16 views

Difficult UI task, rotating View

I am searching for ideas on how to implement a UI feature. Let me know if I don't explain this clear. I want to have a rotating "timer". I want to have a black background initially, to about 6/7 of ...
0
votes
1answer
27 views

Is there a way to force onFinish from CountDownTimer?

Is there a method or an attribute that allows the CountDownTimer to become 0 and force the onFinish() method? Imagine this: a pass and play game has a timer and a "Pass" button. Once the player does ...
0
votes
1answer
101 views

Implementing a Count down timer using Service in the background

What I want to do in my app: 1. When the user opens the app, he will be able to see an already running countdown timer. So in that case I want to show the countdown numbers in a textview that will ...
0
votes
1answer
158 views

ASP.net Javascript Countdown clock timer for each row of a gridview

Using Asp.net 4.0/C# SQL 2008 I have a page with a gridview on it. I need a countdown clock in the format HH:MM:SS that will count backwards until it reach the expiration date. My code is properly ...
1
vote
1answer
40 views

Alarm clock with timer?

I am trying to develop my own countdown alarm app on android. I have some questions: How do I create an alarm with a fixed time (50 minutes) so that when I press the start button, it automatically ...
0
votes
0answers
19 views

Consecutive CountDownTimers in Android app

I'm instantiating one CountDownTimer after another. At the end of each timer, I'm playing a WAV file. I need to play sound2 after sound1 and so on. The problem is that they don't play in the right ...
0
votes
3answers
76 views

Media Player Error (-19,0) on CountdownTimer [closed]

I've created a program which is repeatedly call the media player every onTick method on CountdownTimer Media Player Class public class Buzzer extends Activity{ private MediaPlayer mp; private ...
0
votes
2answers
124 views

SetTimeout javascript countdown Timer with delay

hi i am confused with the below code JSfiddle link for(var i=6;i>=0;i--) { setTimeout((function(i) { ...
0
votes
0answers
20 views

CountdownTimer tik issue after cancelling and start again in android

i have countdown timer with this code: CountDownTimer CountdownTimer = new CountDownTimer(30000, 1000) { public void onTick(long millisUntilFinished) { txttime.setText( ...
0
votes
0answers
8 views

Adobe timezoneoffset

Hi everyone i am making a countdown in flash i have this code and i am pulling my hair out because i cant tell why this wont work, note im not that good in flash var today:Date = new Date(); var ...
0
votes
0answers
52 views

Unlock screen appears after some delay

In my application, at the end I display a congratulation screen for 15 seconds which is a new activity containing a single image, then screen becomes black and then device gets locked. Now ...
0
votes
1answer
77 views

How to add a countdown timer of 3…2…1…GO in Android?

I am currently developing a stopwatch but I dont understand how can I add a countdown timer to it which has animations.. It should be triggered at the click of Start Button of the stopwatch and at the ...
0
votes
0answers
48 views

vertical progress bar made from image javascript

I am attempting recreate a progress bar from a classic video game (Comix Zone). This particular progress bar was made from an image and it progressed vertically. You can see how the progress bar ...
0
votes
2answers
68 views

Running many Asynctask on timer(countdowntimer)

I have created a CountDownTimer like this public class MyCountDownTimer extends CountDownTimer { public MyCountDownTimer(long startTime, long interval) { super(startTime, interval); ...
-2
votes
1answer
46 views

jquery timer plugin paused when my window is inactive/ another tab is opened [closed]

I need a count down timer in my website.. It need to be closed when timer reaches to 00:00 either the user is in the same Tab or in another Tab. But The JQuery Timer am using is Pausing when user ...
0
votes
0answers
53 views

How to start count down timer in new activity which gets open when a start button is pressed in a different activity.?

for example we have two activities say start and play. there is a start button in start activity when start button is pressed it should open up new activity play and start count down timer for 30 ...
-1
votes
2answers
65 views

How can I show a String for a certain seconds [closed]

I got a question. How can I show a string for only a certain time , and then the the textview changes the string. Hope you can help me.
1
vote
0answers
18 views

Figuring when CountDownTimer is finished?

I have a question regarding Android's CountDownTimer. I was playing around with some of the methods like onStart and onFinish and I noticed that they're void functions. What I have in my code is that ...
0
votes
0answers
35 views

Creating Timer Countdown android

I am trying to create app on which timer countdown trigger on button click and stop automatically after particular if statements gets true...What i need is time taken by user which started from ...
0
votes
3answers
51 views

how to change the the margin value with a count down?

Would anyone be able to help me with this? Here is what I have now http://jsfiddle.net/fergu0516/GAVDA/ var leave = 200; if(leave > 0) { CounterTimer(); ...
-1
votes
1answer
87 views

How to set countdown timer for playing song by using streaming in android

I am trying to set count down timer for streaming song from url.Countdown timer is Working, but when data is not buffered because of slow internet speed the countdown timer is not stopped. If anyone ...
0
votes
3answers
133 views

C++ noob: I need help creating a simple timer function

I'm a C++ beginner. I'm searching for a way to may a simple timer function for a very simple console game (class assignment). Hopefully a preexisting function from a common library? Please keep it ...
-1
votes
1answer
41 views

Can't create handler with CountDownTimer class

I am working a schoolproject where we are making a bomberman game. There are 2 bombermans on the playfield, the User and the AI. When the user places a bomb and walks off it, the bomb flashes and ...
-2
votes
1answer
73 views

Countdown timer in php? [closed]

I am a newbie to PHP. I want to add an countdown timer to my webpage. Can someone please explain how can it be done? Is there any function to do it? I was thinking of using AJAX, But is there any ...
2
votes
2answers
197 views

Animated GIF Freezes in WebView while timer is running

I have a WebView with an animated gif loaded in it. I also have a countdown timer and when it's up it loads a different animated gif. When the timer is running the gif doesn't animated. What is the ...
0
votes
1answer
54 views

Countdowntimer Textview

I created this app and now I wanted to use a textview to show the seconds until the other activity starts but I don't know how,I created a txtview inside the countdowntimer but its never shown ...
-1
votes
2answers
245 views

How to convert JavaScript functions to jQuery for a countdown timer on load of a page

I have the following code for a countdown timer. I need to convert the JavaScript portion to jQuery. The countdown timer starts on page load. How can I do that, as I have to load the diffTime function ...
0
votes
3answers
42 views

How do I create a CountDownTimer that persist after configuration change

Say, if I want the CountDownTimer to update some UI elements when it has finished, but there is a configuration change in the middle of the countdown, forcing the activity to be recreated. public ...
0
votes
1answer
32 views

CounDownTimer how to set it for counting 2 times?

I'm doing an app which will use CountDownTimer I would like to use 1 countdowntimer for 2 count downs. If the time finishes, then a new time starts immediately, and so on. For now I have something ...
0
votes
1answer
142 views

How to create a “30 second countdown timer”? [duplicate]

How do I write a simple countdown timer in either android? For android, assume there is a textedit field called timerdisplay that will display a countdown from 30 seconds to 0
1
vote
2answers
261 views

time coutdown in corona sdk

Im trying to create a timer countdown in Corona SDK using Lua. I am quiet new to coding so I have never set one up. Any ideas how I would go about doing this. Here is what I have so far infoBar = ...
0
votes
0answers
35 views

how to create countdown timer to display only business days?

code below is to create count down timer, which will calculate all days rather than business days!! amount = dateFuture.getTime() - dateNow.getTime(); if(amount < 0) { ...
0
votes
0answers
85 views

create countdown timer to display number of BUSINESS DAYS, hrs, min, secs, between specific timeline(dates)

Code is available to display all days between specified time gap. amount = dateFuture.getTime() - dateNow.getTime(); if(amount < 0) { ...
0
votes
1answer
27 views

How to get the values from the formatted string?

I have an app which counts down the time. I formatted a string like this: String.format("%02d:%02d:%02d", hour, min, sec); It will be for example 01:42:12. I would like to know how to do this in ...
0
votes
6answers
103 views

Intent doesn't work

as you gues I have a problem... I have this code in my Islem.java class public void myFinish(){ Intent i = new Intent(); i.setClassName(this, SaveScore.class); startActivity(i); } if ...
0
votes
3answers
1k views

Javascript JQuery countdown timer

I'm trying to create a simple countdown timer to a date/time. I currently only have the following days to go script which is working fine: <div id="countdown"> today = new Date(); BigDay = ...
0
votes
1answer
499 views

i want Countdown timer in HH:MM:SS format in android

am trying to develop countdown timer in android. In this example am entering number of minutes as a parameter which shows in countdown timer Problem is that suppose am entering minute say 65, then ...
0
votes
1answer
251 views

JQuery countdown after refresh

Hi guys I've created a jQuery countdown but I want it to stay counting even if I refresh the page, here it is the source code: function JBCountDown(settings) { var glob = settings; function deg(deg) ...
0
votes
0answers
74 views

Ball Movement Smoothness first Seconds

The Timer is counting and the ball is moving on the screen. The ball is stuck middle of the process for initial 10 seconds. For Timer, I used TimerHandler. Each seconds a Text object is created and ...
-2
votes
3answers
153 views

FindViewById is undefined?

Hi I am having trouble defining findViewById in my function. Below is my function: if(test.mStartedWalking == false){ TextView myText = (TextView) findViewById (R.id.myText); ...
0
votes
2answers
73 views

where do i place NaN code?

Here is a new question. I want to make my Nan say "this is not a number" if nothing or text is entered. I know the physical code but I dont know where to put it or if I must make a function. Where ...
0
votes
0answers
113 views

unable to restart AsyncTask and countdown timer

I am using AsyncTask with countdown timer to count 5 to 0. And i am trying to stop count down and restart count down again but problem is count down is working in AsyncTaks.... I dont ...
0
votes
0answers
107 views

.PHP activated when countdown timer runs out?

So I have a countdown timer that shows a link when the time runs out... I am not too good in javascript so need some help on this... Is there a way, that instead of a link, I can allow a .php file to ...

1 2 3 4 5