View Single Post
12-05-10, 07:59 PM   #2
Ailae
A Rage Talon Dragon Guard
 
Ailae's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2007
Posts: 318
Code:
local b = CreateFrame("Button", "MyButton", UIParent, "UIPanelButtonTemplate")
b:SetSize(80 ,22) -- width, height
b:SetText("Button!")
b:SetPoint("CENTER")
b:SetScript("OnClick", function()
    print("I'm in your buttonz")
end)
This gives you the most basic interface-button, like "Okay" and "Cancel" that you see in the interface options.
__________________
Oh, the simulated horror!
  Reply With Quote