View Single Post
11-26-22, 06:27 PM   #3
Walkerbo
A Cobalt Mageweaver
 
Walkerbo's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2010
Posts: 233
A little bit more progress.
I can now identify button elements;
Lua Code:
  1. for k, v in pairs(SettingsPanel.CategoryList.elementList) do
  2.     for a, b in pairs(v) do
  3.         if b == "SettingsCategoryListButtonTemplate" then
  4.             print(k, a, "This is a button")
  5.         end
  6.     end
  7. end

Still working on determining which button is the keybindings button.
__________________
"As someone once told me, frames are just special types of tables, and tables are special types of pointers."
Fizzlemizz
  Reply With Quote