OK, I have an addon that fills a Table for Fubar. This works very well. Now what I would like to do is to use it without Fubar because I want Fubar to be optional with my addon.
I have a FillTablet() function that I use like this with Fubar:
function MyAddon:OnTooltipUpdate()
self:FillTablet()
end
Is there any ways for me to use that to fill a standalone table and also add a close button somewhere?
I tried:
function MyAddon:PrintReport()
tablet:Register(Minimap,
'children', function()
AllPlayed:FillTablet()
end
)
--tablet:Detach(Minimap)
tablet:Open(Minimap)
tablet:Refresh(Minimap)
end
This doesn't work. The tablet:Detach works if Fubar is loaded.
I have a FillTablet() function that I use like this with Fubar:
Is there any ways for me to use that to fill a standalone table and also add a close button somewhere?
I tried:
This doesn't work. The tablet:Detach works if Fubar is loaded.
Anyone can give me some advice?
Thanks in advance.
Anyone can give me a hint?