View Single Post
11-27-22, 10:23 PM   #4
Walkerbo
A Cobalt Mageweaver
 
Walkerbo's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2010
Posts: 233
A little closer to an answer;
Lua Code:
  1. for k, v in pairs(SettingsPanel.CategoryList.elementList) do
  2.    for a, b in pairs(v) do      
  3.       if k == 7 then            
  4.          if a == "data" then          
  5.             for q, w in pairs(b) do
  6.                if q == "category" then
  7.                   if w:GetName() == "Keybindings" then
  8.                      print("keybindins button found")  
  9.                   end
  10.                end
  11.             end        
  12.          end
  13.       end
  14.    end
  15. end

I would believe that
Lua Code:
  1. w:Click("RightButton")
would work but it no longer does as w is a table.
__________________
"As someone once told me, frames are just special types of tables, and tables are special types of pointers."
Fizzlemizz

Last edited by Walkerbo : 11-27-22 at 10:28 PM.
  Reply With Quote