Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9165307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T14:52:45+00:00 2026-06-17T14:52:45+00:00

I am working on a web application that needs to be active on the

  • 0

I am working on a web application that needs to be active on the monitor sometimes for hours without anyone touch the computer.

The problem is that some computers have their screen saver, or worse – sleep mode while their inactive.

I’m trying to think of a way to bypass it. I searched for java applets or maybe a flash file that does only that. I found nothing, unfortunately.

I’m sorry for the too general question but I’m pretty helpless with this subject

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T14:52:47+00:00Added an answer on June 17, 2026 at 2:52 pm

    I’ve written the Java applet for you. It will move the mouse cursor one pixel to the right and back every 59 seconds, effectively preventing the screen saver from kicking in.

    Note that because of security restrictions this applet will need to be signed and granted the createRobot permission to work on the client, otherwise it will fail to initialize the Robot class. But that’s a problem outside this question’s scope.

    import java.applet.Applet;
    import java.awt.*;
    import java.util.Timer;
    import java.util.TimerTask;
    
    /**
     * Moves the mouse cursor once in a minute to prevent the screen saver from
     * kicking in.
     */
    public class ScreenSaverDisablerApplet extends Applet {
    
        private static final int PERIOD = 59;
        private Timer screenSaverDisabler;
    
        @Override
        public void start() {
            screenSaverDisabler = new Timer();
            screenSaverDisabler.scheduleAtFixedRate(new TimerTask() {
                Robot r = null;
                {
                    try {
                        r = new Robot();
                    } catch (AWTException headlessEnvironmentException) {
                        screenSaverDisabler.cancel();
                    }
                }
                @Override
                public void run() {
                    Point loc = MouseInfo.getPointerInfo().getLocation();
                    r.mouseMove(loc.x + 1, loc.y);
                    r.mouseMove(loc.x, loc.y);
                }
            }, 0, PERIOD*1000);
        }
    
        @Override
        public void stop() {
            screenSaverDisabler.cancel();
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on an application that needs to get the source of a web
i m working on a web application that reads files from some where and
I am working on a Web application that needs to send XML to a
I currently am working on a web application that needs to collect data from
I am working on a web forms application that needs to support multiple languages
I'm working on a web application that needs to frequently poll the server database
i am currently working on a web application that needs to accept video uploaded
I'm working on an web application that needs a demo/example version, so that potential
I'm working on an in-house project management web based application that needs to support
Hi i am working on web service application in android.i need a class that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.