View Single Post
04-20-20, 12:16 AM   #4
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
Try using GetRegions:

Lua Code:
  1. local regions={scantip:GetRegions()}
  2. for i=1,#regions do
  3.     if regions[i].GetText and regions[i]:GetText() then
  4.         print(regions[i]:GetName(),":",regions[i]:GetText())
  5.     end
  6. end
  Reply With Quote