WoW:Events/V: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:


Note that using this event means that your addon can not be loaded on demand properly. It is better to use ADDON_LOADED and test for arg1 being the name of your addon.
Note that using this event means that your addon can not be loaded on demand properly. It is better to use ADDON_LOADED and test for arg1 being the name of your addon.
{{evt|VOICE_CHAT_ENABLED_UPDATE|Misc}}
Fired when you enable or disable voice chat.
{{evt|VOICE_LEFT_SESSION|Misc}}
{{evt|VOICE_PUSH_TO_TALK_START|Misc}}
Fired when you click the Push-To-Talk hotkey to activate voice chat
{{evt|VOICE_PUSH_TO_TALK_STOP|Misc}}
Fired when you release the Push-To-Talk hotkey
{{evt|VOICE_SESSIONS_UPDATE|Misc}}
{{evt|VOICE_START|Misc}}
Fired when someone starts using Voice Chat
; arg1 : The [[API_TYPE_UnitId|UnitId]] of the person who started talking


{{evt|VOICE_STATUS_UPDATE|Misc}}
{{evt|VOICE_STATUS_UPDATE|Misc}}
Fired when someone in your group or raid updates their voice status. Triggers extremely frequently.
{{evt|VOICE_STOP|Misc}}
Fired when someone stops using Voice Chat
; arg1 : The [[API_TYPE_UnitId|UnitId]] of the person who stopped talking

Revision as of 19:58, 27 September 2007

Event API


"VARIABLES_LOADED"
Category: System
 

Fired during the loading phase of the UI to indicate that the Saved Variables of all AddOns that will be loaded during the initial load (or reload) of the UI have have been read into memory from their files.

Note that using this event means that your addon can not be loaded on demand properly. It is better to use ADDON_LOADED and test for arg1 being the name of your addon.

"VOICE_CHAT_ENABLED_UPDATE"
Category: Misc
 

Fired when you enable or disable voice chat.

"VOICE_LEFT_SESSION"
Category: Misc
 
"VOICE_PUSH_TO_TALK_START"
Category: Misc
 

Fired when you click the Push-To-Talk hotkey to activate voice chat

"VOICE_PUSH_TO_TALK_STOP"
Category: Misc
 

Fired when you release the Push-To-Talk hotkey

"VOICE_SESSIONS_UPDATE"
Category: Misc
 
"VOICE_START"
Category: Misc
 

Fired when someone starts using Voice Chat

arg1
The UnitId of the person who started talking
"VOICE_STATUS_UPDATE"
Category: Misc
 

Fired when someone in your group or raid updates their voice status. Triggers extremely frequently.

"VOICE_STOP"
Category: Misc
 

Fired when someone stops using Voice Chat

arg1
The UnitId of the person who stopped talking