0
votes
1answer
27 views

How can I create new graphic objects automatically by using Timer in JFrame?

Hi my program is similar to a tetris game, in the quality that it tries to create new 'shapes' that float upward every few seconds. My goal is to create alot of new objects that will continue to ...
1
vote
2answers
50 views

Android: The application has stopped unexpectedly

Ok, I am trying to set up a image slideshow that updates automatically after a certain pause. I tried to implement it by using a Handler and then the timer class. But it doesn't work. Please help me ...
0
votes
1answer
27 views

How to keep the KeyListeners active while switching between JFrames

I have made a pacman game and I wanted to display a JFrame as a bootload to the game itself. So Iv'e made a class launcher.java extends JFrame containing a single JPanel to present the image of the ...
-4
votes
1answer
61 views

Null Pointer - Timer + Array of objects [closed]

I have discovered were the error was, was declaring the array as laneCar[] in one part of my code and laneCars[] elsewhere which was causing null pointer errors.
0
votes
1answer
66 views

Java StopWatch timer won't stop

I got a StopWatch class, I want to implement the Lap function When the Run/Stop button is pressed, a timer begins counting on the display. If the Run/Stop button is pressed again, the timer stops. ...
0
votes
2answers
39 views

How can i start a timer like call log duration when activity start?

Let the question is i want to start a timer which is initialize when the activity is brought to front. I have a text view and i want to display a time start with 00:00 and increase in every tick. How ...
1
vote
3answers
49 views

Java - Error on use of Timer

So I have googled some minutes how to use the timer and found some helpfull threads here. But when I want to use the suggested code Eclipse shows me always an error. int delay = 1000; //milliseconds ...
-1
votes
1answer
74 views

Android: java.lang.runtimeexception unable to instantiate activity componentinfo nullpointerexception

I'm trying to get a timer to work, starting and stopping on button click events. I seem to be nullpointer referencing somewhere but i can't find the problem in my code. It would be really great if ...
2
votes
1answer
39 views

My scanner/terminal window stops functioning after one repeat

I am currently working on a tower defense project on gridworld (not sure if that is significant). I have a timer that calls a method (TowerPlacer) from my main class to receive user text input via ...
1
vote
1answer
33 views

How can I initialize a repaint timer from a static context?

After some reading I am back to trying to make these drawings move. Where I am having difficulty is that the timer is never started - when I try to run the initGame method it tells me I can't ...
0
votes
2answers
51 views

JLabel not updating with timer [RESOLVED]

I have searched all over the internet trying to find how to make an automatic updating clock gui program with no luck. I have tried many different methods, ending with the same results. I am using the ...
0
votes
0answers
21 views

Running functions on a timer while allowing mouse actions

so I am working on a little hobby project, and basically I want to be able to click a button and have a function run every 30 seconds, but also be able to click another button and have it cancel the ...
0
votes
0answers
39 views

Breaking a Java Timer loop [closed]

So the code in general scans the whole screen for a color (tan). Once the color is found the Timer is started. The timer scans a smaller part of the screen and finds red and waits until the color is ...
0
votes
1answer
45 views

Swing Timer FastForward button

I am trying to get a simple fast forward button to work. My understanding is initializing a timer as such timer = new Timer(setspeed, listener); sets the delay between timer events to the int ...
0
votes
1answer
43 views

how to add Timer in GUI

how are you guys I've searched about Timer and how it's working in java I found this easy way which is making for loop then add this commend Thread.sleep(1000); this commend will make the loop ...
1
vote
3answers
36 views

Is it possible to make a graphics object final for internal loop?

It seems like if my graphics object were final, as the error says it should be that I would never be able to change it. I have been reading about assigning variables to final variables before using ...
1
vote
1answer
72 views

Create a count up timer in java (seconds and milliseconds only)

I'm doing a count up timer in java. I found the following example: Creating a Count Up timer to Break in java, and that's working fine. But I want to show the time in the format "mm:ss:SSS", because I ...
0
votes
1answer
35 views

Java Timers with jSliders

I have a question on timers with Sliders in java. My code essentially is a GUI with a moving animation panel in the center. This animation panel, which is in a separate class than the other classes ...
4
votes
3answers
74 views

Java Pong - timer thread sleep still runs function

I'm making pong in java If the ball goes out of bounds, pause is set to true: if (ball.getX() <= 0) { score2++; pause = true; } if (ball.getX() >= ...
0
votes
1answer
73 views

Java Timer synchronize with GUI

I'm trying to do an incremental display of a Component because it takes too much time to make all the calculations. So i don't want to freeze the graphic interface i'd like to display my image ( a ...
0
votes
2answers
54 views

If the color on the screen equals a certain color, Java

Part of my program needs to see if the color at a certain point on the screen equals a certain color then preform an action. I can not figure out how to constantly check the point on the screen to see ...
1
vote
3answers
50 views

My java class Updater don't update

I would like to know where is the problem in this class, I'm making a class that every n seconds make something, but it appear to do it only 1 time. this is the class import java.util.Timer; import ...
1
vote
3answers
70 views

Threading/Timing in Java, what's the best for consistent results? [closed]

Okay, so I am in the process of creating a platformer game, not necessarily designed for gravity manipulation or jumps, but I need to use some sort of timing mechanism. Up until this point when ...
0
votes
3answers
37 views

Run task after 10 seconds, unless user presses button

In my Android app, I want to schedule a task to run in 10 seconds, unless the user presses a specific button. What is the best way to do this? Should I use a java.util.Timer, ...
0
votes
1answer
56 views

Getting a Timer to do things at irregular intervals in java

I am trying to write a program that will fire of several events at specified yet irregular intervals. I looked at the java.util Timer class and the javax.swing Timer class, but neither of them have ...
2
votes
1answer
42 views

Increasing speed of Timer in Java

I'm making a game with Java and I'm currently using Timers for all my animations and game controls. But I'm having trouble choosing the right way to increase the speed of a Timer. My game is supposed ...
1
vote
0answers
56 views

Displaying subtitles in java [closed]

I am trying to write a java program for displaying the subtitles of a movie in a window. What do you think the best way is for showing the text in a timely manner? I am thinking of using a timer of ...
3
votes
1answer
81 views

How is Java Timer implemented by the computer?

The articles on the site related to Timer talk about how to use Timer to program. I ask a different question. How does Java perform Timer method? Since it is said to avoid time-consuming work by not ...
1
vote
2answers
25 views

Using less Timers

It doesn't really lag that much in my game but I know that I could reduce a lot of lag in my game by having less Timer's running. The game have multiple Timer's because it have one Timer that updates ...
0
votes
1answer
31 views

java stop a timer in a task

In Java, I am using the following code for a Timer: Timer timer = new Timer("WeatherUpdate"); MyTask t = new MyTask(); timer.schedule(t, 10000, 10000); class MyTask extends TimerTask { public ...
0
votes
2answers
49 views

Gradually speeding a sprite

I'm trying to make the sprite speed-up gradually on button press and not to move constant speed only. Also set a max-speed limit. I hope you understand what i mean. timer = new Timer(5, this); ...
1
vote
3answers
104 views

Timer inside while loop

How would I go about implementing a timer inside a while loop like so in Java? while (game not ended) { //do something (wait 5 seconds) } Would it be something like so?: (java.util.Timer) int ...
0
votes
1answer
32 views

how to stop a process when another is running java android

i am doing an app in android that connecting with servers and downloading some chunks. now i want to have another one process doing other job. here is my code class RemindTask extends TimerTask { ...
1
vote
1answer
97 views

Java tetris- how do I change timer interval for one piece drop, then revert back?

I have a question on how I can change the interval of a single timer throughout the life of a program: global variables Timer and interval initially set at runtime: interval = 800; timer(); ...
1
vote
1answer
58 views

Game server turn timer

I'm making a Java multi-player turn-based game and I want to limit the time that each player have to make their move, the game is composed of game sessions or rooms and each room have 4 players. The ...
-1
votes
0answers
35 views

I am triying to make a whack-a-mole but i can't get the moles to hide [closed]

I am making a whack-a-mole game for my school project in netbeans. I can get the moles to appear randomly in 9 spaces. However, I can't make them disappear or appear for about 1 second on screen so ...
0
votes
1answer
34 views

Java TimerTask <identifier> expected

Why does java keep giving me this error? I have read multiple ways to use timer and all have given me expected error I have been trying to get this for a while now. private class ...
1
vote
1answer
61 views

Pause a simple timer

In Java how would I pause a simple timer? This may be a bit of newbie question - I'm new to a lot of this. I have a simple pomodoro timer using Thread.sleep( MILLISECONDS ) , which runs repeatedly ...
0
votes
2answers
49 views

Java Timer Speeds Up Every Execution

Every time my timer is run, the code executed inside the timer is run faster. Why is this happening? This code essentially moves a label (holding an image) across the frame. Every run, the images ...
0
votes
0answers
27 views

Timer doesn't show in jframe (NetBeans)

After I add a timer (Netbeans) to a JFrame, i can't see any graphic element added. In the source code I can see the line: "private org.netbeans.examples.lib.timerbean.Timer timer1;" but I ...
0
votes
1answer
42 views

Using Swing Timer to delay task

I am using Swing Timer to delay my task for a specific period of time. This time interval is decided by the user. In my GUI, I have a SpinnerDateModel to accept the time at which the task has to be ...
1
vote
2answers
58 views

Will this cause memory leak?

Will this code causes a memory leak? When will the garbage collector be activated? Is it when the timer finishes? or GC will be called even though the timer is still running? public static ...
0
votes
1answer
28 views

perform task at a user defined time

I need to get a time from the user and schedule my task at that particular time. For getting the time from the user, I displayed the current system time in a JTextField so that the user can edit it ...
0
votes
2answers
30 views

Creating the Timer which will invoke a method every XXXXms

I would like to create an object which will invoke method called loadNextImage every let's say 1000ms. I can do it by creating a new Thread which will sleep for 1000 then call this method but I do not ...
0
votes
1answer
38 views

Start a route on suspend state and scheduling the resume

I need the following behaviour for some Camel routes: a route must start in active state, but must also be suspended if the current time is between X AM and Y PM. All the routes start with a timer in ...
0
votes
1answer
58 views

Using a counter inside a java.util.Timer in Android Activity causes app to crash

I'd like to accomplish something which I would think to be simple, but is turning out to be a hassle. I have a loading screen with a picture, and I'd like for it to fade in and out as the application ...
1
vote
0answers
31 views

Non-stable MIDI timing clock output

I'm trying to make a sequencer that will act as master clock for other devices. I've managed to get the sync timer up and running and controlling a DAW with it. However, the tempo is very unstable ...
0
votes
0answers
47 views

Reload JFrame with JLabel

I have a Jframe which contains a JLabel which I use to display an image as the background of the Jframe. The path to that image is a JavaBean that is changing constantly, this is controlled by an ...
0
votes
5answers
111 views

Making a program run for 5 minutes

So I wanted to try out something for a bit with the Timer and TimerTask classes. I was able to get a line of code to execute after 30 seconds elapsed. What I've been trying to do now is to get this ...
0
votes
2answers
35 views

IndexOutOfBoundsException with Timer in Java

I have a problem which hopefully requires a simple obvious solution I can't seem figure out. Ok, so I'm playing around with Fibonacci Sequence: I want to prompt the user to enter an Integer. Then it ...

1 2 3 4 5 19