View Single Post
03/17/20, 02:12 PM   #8
fallenstd
Join Date: Mar 2020
Posts: 6
Originally Posted by Rhyono View Post
For navigating the libraries, you can view the category Libraries or tell us specific functionality you may be looking for.

If you're doing a combat/location/data sharing based addon, you'd definitely want to look into existing libraries.

For creating a settings menu, LibAddonMenu. For custom right click menus, LibCustomMenu. For outputting to chat, LibChatMessage.
Nice, thanks a ton, this is a great summary of stuff I will need.

I am actually going to finish the tutorials first, and the onto my project.
Already discovered that declaring the control as local from string that I would otherwise use to call it does not seem to work. unless I am missing something
Code:
local UiW= NewAddonWindow
UiW.SetValue(x) -- doesnt work
NewAddonWindow.SetValue(x) -- does work
Or I am missing something.
  Reply With Quote