< Futurebasic < Language < Reference
KILL APPLEEVENT
Syntax
KILL APPLEEVENT eventType&, eventClass&
Revised
May, 2001 (Release 5)
Description
Once established, an Apple Event remains in effect for the life of your program. This includes event handlers that you create as well as event handlers that are created by the runtime. One example might be the apple event that opens a document. Its event type is _"core"
and its class is _"odoc"
. If you wanted to override these established settings you would begin by removing the old version.
<code><b>REM</b> _coreEventType = _core"<b>REM</b> _kAEOpenDocuments = _odoc"</code> <code><b>KILL APPLEEVENT</b> _kRequiredEventClass,_kAEOpenDocuments</code>
Now you are ready to establish a new vector.
<code><b>ON APPLEEVENT</b>(_kRequiredEventClass,_kAEOpenDocuments) ¬ <b> FN</b> myODocHandler</code>
Example:
INSERT IMAGE HERE!!!!
<img src="res/cd.gif" alt="" width="20" height="19" border="0">
CD Example: AppleEvents Folder
See Also
SENDAPPLEEVENT; HANDLEEVENTS; ON APPLEEVENT; GETPROCESSINFO; APPLEEVENTMESSAGE$
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.