View Single Post
02-11-09, 08:58 PM   #4
Sythalin
Curse staff
 
Sythalin's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2006
Posts: 680
Now with editboxes:

Code:
local e = CreateFrame("EditBox", "CFM_EditBox1", CFM_Config)
e:SetWidth(100)
e:SetHeight(25)
e:SetMaxLetters(20)
e:SetPoint("TOPLEFT")
e:SetBackdrop({
  bgFile="",
  edgeFile="Interface\\Tooltips\\UI-Tooltip-Border",
  tile="true",
  tileSize= 32,
  edgeSize=16,
  insets = {left=5, right=5, top=5, bottom=5}
  })
e:SetText("EditBox Test")
Frame appears, no text inside. When attempting to type something into it, just a small blinker.
  Reply With Quote