Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Advertisement

Fires if the bottom-left multi-action bar must appear to hold a new ability.

ACTIONBAR_SHOW_BOTTOMLEFT

Payload[]

None

Details[]

Example[]

-- prevent the MultiBarBottomLeft from appearing when the event fires
ActionBarController:UnregisterEvent("ACTIONBAR_SHOW_BOTTOMLEFT")

-- return the options to their previous state, for the next /reload
local frame = CreateFrame("Frame")
frame:RegisterEvent("ACTIONBAR_SHOW_BOTTOMLEFT")
frame:SetScript("OnEvent", function()
	local __, bottomRight, sideRight, sideLeft = GetActionBarToggles()
	SetActionBarToggles(false, bottomRight, sideRight, sideLeft)
end)

Patch changes[]

Warlords of Draenor Patch 6.0.2 (2014-10-14): Added.[1]

References[]

 
  1. ^ 2014-10-14, ActionBarController.lua, version 6.0.2.19033, near line 82, archived at Townlong-Yak
Advertisement