August 1999
Intermediate to advanced
1488 pages
72h 53m
English
layer.releaseEvents(event)
The releaseEvents() method of the Layer object specifies that the layer object should no longer capture events of the specified type.
Listing 7.348 is an example of how the releaseEvents() method is used. When the FOCUS event is captured, it is handled by the handle() method. Once this is done, executing the event is released using the releaseEvents() method.
<html> <head> <title> Using the releaseEvents method of the Layer object</title> </head> <body> <script language="JavaScript"> <!-- Hide // sets up the document to capture FOCUS events document.captureEvents(Event.FOCUS); // function ... |
Read now
Unlock full access