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 6344095
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T20:34:15+00:00 2026-05-24T20:34:15+00:00

I have a Java applet which displays an interactive map. By using the scroll

  • 0

I have a Java applet which displays an interactive map. By using the scroll wheel the user can zoom in/out of the map. Unfortunately the web browser (Firefox) also responds to the scroll events, and the applet ends up being scrolled off the visible page.

My question is, how can I prevent the browser from responding when the mouse is within the boundaries of the applet?

So far I’ve tried modifying my HTML to make the applet request focus

applet.focus()

I also tried adding a statement to my applet’s Java code like this

requestFocus();

But neither has resolved the problem.

I could add an specific zoom in/out control in the applet, or possibly restructure my web page to reduce the need for the web page to scroll, but it would be nice if the scroll wheel did the job of zooming the map only.

  • 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-05-24T20:34:17+00:00Added an answer on May 24, 2026 at 8:34 pm

    Use javascript and do something like this:

    var applet = document.getElementById("appletID");
    applet.mouseover = function(e) {
        document.body.onscroll = function(e) {
             e.preventDefault();
        }
    }
    
    applet.mouseout = function(e) {
        //replace with empty function
        document.body.onscroll = function(e) { }
    }
    

    not this is untested code. might be a couple typos

    EDIT like i said typos… I tested this and it works for sure:

    window.onload = function() {
    
    var applet = document.getElementById("header");
        applet.onmouseover = function(e) {
             window.onscroll = function(e) {
             //scroll where you want to be (the top)
               scroll(0,0) ;
             }
         }
    
        applet.onmouseout = function(e) {
              //replace with empty function
              window.onscroll = function(e) {}
        }
    
    };
    

    Using the scroll method is not as clean but preventDefault didn’t seem to work…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written a java applet which opens a JFrame (so when run in
We have a Java Applet built using AWT. This applet lets you select pictures
I have a java applet in which I have to display a large amount
I have a Java applet which doesn't need any special privileges to run (i.e,
i have a java applet application in which i use rich text area .
I have a question on the java applet.I've created a java applet,which is a
I'm accessing a java applet that is running on a website (which i can't
I have a Java applet embedded into a web page which generates a file
I have developed an applet java with Eclipse, which is included in MyPage.html. I
I have a Java Applet which is digitally signed. I need to be able

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.