Web Developer's Virtual Library: Encyclopedia of Web Design Tutorials, Articles and Discussions


WDVL Newsletter

Active Server Pages
JSP/Java Servlets
Microsoft SQL Server
Daily Backup
Dedicated Servers
Streaming Audio/Video
24-hour Support    

jobs.webdeveloper.com

Hiermenus


e-commerce
Partner With Us















Developer Channel
FlashKit.com
JavaScript.com
JavaScriptSource
Developer Jobs
ScriptSearch
StreamingMediaWorld
Web Developer's Journal
Web Developer's Virtual Library
WebDeveloper.com
Webreference
Web Hosts
XMLfiles.com

internet.com
IT
Developer
Internet News
Small Business
Personal Technology

Search internet.com
Advertise
Corporate Info
Newsletters
Tech Jobs
E-mail Offers


Event Modifiers

  • Finally, the event's modifier field is used to tell what the state of the keyboard modifiers are when a mouse or key event occurs. The modifier's field may include any of the masks shown in the following table.

Event Mask Description
SHIFT_MASK the shift key is held down.
CTRL_MASK the control key is held down.
META_MASK the meta key is held down or the third mouse button is pressed.
ALT_MASK the alt key is held down.

  • As an example, if you want to know the state of the shift key when the mouse button is pressed, you can check the modifier's field as follows:

public boolean handleEvent(Event event)
{
if (event.id == Event.MOUSE_DOWN)
  {
  if ((event.modifiers & Event.SHIFT_MASK) > 0)
   System.out.println("Shift is down during press");
  else
   System.out.println("Shift is up during press");
  }
 return super.handleEvent(event);
  }

Additional Resources:

Event Objects
Table of Contents
Exercise Eight


Up to => Home / Authoring / Scripting / Tutorial




Jupiter Online Media: internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and Jupiter Online Media

Jupitermedia Corporate Info


Legal Notices, Licensing, & Permissions, Privacy Policy.

Web Hosting | Newsletters | Tech Jobs | Shopping | E-mail Offers