Wikia

WoWWiki

Changes: Event API

Edit

Back to page

 
Line 1: Line 1:
 
{{wowapievent}}{{tocright}}
 
{{wowapievent}}{{tocright}}
From a UI perspective, [[Events]] in WoW are messages sent by the WoW client to the UI Frames (via frame script handlers), mostly in reaction to things occurring in the game world. See the [[#Event Index|Event API Index] links below for event reference.
+
From a UI perspective, [[Events]] in WoW are messages sent by the WoW client to the UI Frames (via frame script handlers), mostly in reaction to things occurring in the game world. See the [[#Event Index|Event API Index]] links below for event reference.
   
 
== Reference ==
 
== Reference ==

Latest revision as of 20:59, September 25, 2012

From a UI perspective, Events in WoW are messages sent by the WoW client to the UI Frames (via frame script handlers), mostly in reaction to things occurring in the game world. See the Event API Index links below for event reference.

Reference Edit

Guides Edit

Summary Edit

The World of Warcraft interface is entirely event driven: all interface code is invoked in response to an event (or OnUpdate "events"). All script execution must be completed before a frame is rendered; therefore, event processing code that takes too long or contains an infinite loop will freeze the client.

You can register your Frame-derived widget to receive an event using the frame:RegisterEvent("eventName") function. When the events occur, they will be delivered to the OnEvent script handler, which can be set using frame:SetScript("OnEvent", handlerFunc). To unregister an event, use frame:UnregisterEvent("eventName").

Event Index Edit

Around Wikia's network

Random Wiki