Files
wow-weakauras/Complete Projects/trash/Button
2024-08-24 22:43:07 +02:00

11 lines
301 B
Plaintext

local Button = CreateFrame("Button", "MyButton", UIParent, "UIPanelButtonTemplate")
Button:SetWidth(150)
Button:SetHeight(25)
Button:SetPoint("TOP")
Button:SetText("Dance")
Button:RegisterForClicks("AnyUp")
Button:SetScript("OnClick", function()
DoEmote("dance", UnitName("target"))
end )