View Single Post
10-14-05, 07:00 PM   #4
Thirsterhall
A Deviate Faerie Dragon
AddOn Author - Click to view addons
Join Date: Feb 2005
Posts: 14
The Structure Panal basicly can't handle Ace addons. When using Ace fuctions are defined as
Code:
function Addon:Dosomthing()
end
In the structure panel these get listed as
Addon:Addon()

Also I can't handle tables very well at all. For exampel the following
Code:
local Mytable={}

Mytable.Defaults = {
	count = 0,
}
Gets listed in the structure panel as
local Mytable
Mytable

It should be something like
local Mytable
+Mytable.Defaults
- count
  Reply With Quote