View Single Post
10-10-19, 03:21 AM   #3
kurapica.igas
A Chromatic Dragonspawn
Join Date: Aug 2011
Posts: 152
Try table.insert(UISpecialFrames, "AzeriteEssenceUI"), I can't make sure if it would cause the taint, you can give it a try, it's the shortest way.

I prefer to use the secure button, but it's a little hard to explain.

Lua Code:
  1. /run LoadAddOn("Blizzard_AzeriteEssenceUI");local u = AzeriteEssenceUI;u:ClearAllPoints();u:SetPoint("CENTER", 0, 0);u[u:IsShown() and "Hide" or "Show"](u);if not u.alreadyins then u.alreadyins = true tinsert(UISpecialFrames, "AzeriteEssenceUI") end

Just for short. Well, a full version

Lua Code:
  1. /run LoadAddOn("Blizzard_AzeriteEssenceUI");
  2. /run local u = AzeriteEssenceUI;if not u.alreadyins then u.alreadyins = true tinsert(UISpecialFrames, "AzeriteEssenceUI") u:ClearAllPoints() u:SetPoint("CENTER", 0, 0); end
  3. /run local u = AzeriteEssenceUI;u[u:IsShown() and "Hide" or "Show"](u)
  Reply With Quote