Hm, i cant understand what i have to do to set the frame to special width or heigh or write a text in it. Or what is the different from Frame, BlizOptionsGroup, Container, Widget,...
I think i need a beginner guide.
I can set the title...
local frame = LibStub("AceGUI-3.0"):Create("Frame")
frame:SetTitle("Test")
But when i create a frame like this i has a titlefield and a close button ... Is this possible to have a blank frame?
local tf = LibStub("AceGUI-3.0"):Create("Frame")
tf:SetWidth(200)
tf:SetHeight(200)
local tl = LibStub("AceGUI-3.0"):Create("Label")
tl:SetText("Anfangstext")
local ti = LibStub("AceGUI-3.0"):Create("Icon")
ti:SetHeight(50)
ti:SetWidth(50)
tf:AddChild(tl)
tf:AddChild(ti)
I think its not - if you want blank frame then use lua widgets directly http://www.wowpedia.org/Widget_API and use some templates from default code (or make graphic for this yourself)
i found in "AceGUI for Ace 3.x" this code to create a frame.
Ok, but i do not understand what i have do to set name, width, height, etc?
mfg
Dragaron
if that dosn't help a whole lot, try looking at the Ace3.lua file included with the standalone Ace3 zip
I think i need a beginner guide.
I can set the title...
...but not the position?
mfg
But when i create a frame like this i has a titlefield and a close button ... Is this possible to have a blank frame?
mfg
http://www.wowace.com/addons/ace3/pages/ace-gui-3-0-widgets/
and especially
http://www.wowace.com/addons/ace3/pages/ace-gui-3-0-tutorial/
should get you started. After that, opening any of the widget or container source files is very educational.