View Single Post
05-01-20, 01:49 PM   #2
Vrul
A Scalebane Royal Guard
 
Vrul's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2007
Posts: 404
Those are FontStrings, try:
Code:
for index = 1, 12 do
    local spellButtonName = "SpellButton" .. index
    print(spellButtonName)
    print(_G[spellButtonName].SpellName:GetText())
    print(_G[spellButtonName].SpellSubName:GetText())
end
  Reply With Quote