Wikia

WoWWiki

UnregisterEventFromAllFrames

Talk1
98,553pages on
this wiki
This is a user-defined function that you can copy and paste into your addon. Replace <PREFIX> with your AddOn's prefix to avoid conflicts between different versions of these functions.

Globally unregister event.

Code

local function UnregisterEventFromAllFrames_helper(event, ...)
	for i=1,select('#', ...) do
		select(i, ...):UnregisterEvent(event)
	end
end

local function UnregisterEventFromAllFrames(event)
	UnregisterEventFromAllFrames_helper(event, GetFramesRegisteredForEvent(event))
end

Example

-- Globally unregister the event 'MERCHANT_SHOW'.
UnregisterEventFromAllFrames('MERCHANT_SHOW')
Advertisement | Your ad here

Photos

Add a Photo
62,203photos on this wiki
See all photos >

Recent Wiki Activity

See more >

Around Wikia's network

Random Wiki