Is it possible to access the AceDB of an addon from another addon? I want to get the AceDB for KeepItCool for a quick FuBar interface so I can see everything from FuBar. Thank you for the help.
I'm sure you could do it. All you would need to do is define the Get() method to "get" things out of KeepItCools DB. That is, unless, Ace doesn't allow that...
I will see how it goes. It might end up being easier to just copy everything into a FuBar addon and just add the FuBar-centric items to it. Going to see how it goes this week.
Both AddOn and blah are local, and neither will be addressable by a global name. AddOn will be able to be referenced from Ace itself, but blah is unaccessible by ANYTHING except the functions and methods within the same chunk as AddOn
EDIT:
Can you access the locals of another addon?
edit: smiking.. smiking
edit2: i said smoking
Are you smoking crack?
do
local f = "Frank"
end
f is local.
local AddOn = AceAddon:new{}
local blah = true
Both AddOn and blah are local, and neither will be addressable by a global name. AddOn will be able to be referenced from Ace itself, but blah is unaccessible by ANYTHING except the functions and methods within the same chunk as AddOn
Anyway, I decided today to start making KIC FuBar-compatible. Yay. Finally.
EDIT: *Yaaaawn* But not today... Probably tomorrow.