View Single Post
08-08-14, 07:52 AM   #12
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2008
Posts: 1,740
If you still have the issue you can run a poll on all stance/petbar frames.

Lua Code:
  1. local frames = {PetBarFrame,StanceBarFrame}
  2.  
  3. local function CheckForTextures(f)
  4.   for _, child in pairs({ f:GetChildren() }) do
  5.     CheckForTextures(child)
  6.   end
  7.   for _, region in pairs({ f:GetRegions() }) do
  8.     if region:GetObjectType() == "Texture" then
  9.       print("region",region:GetName(),region:GetTexture())
  10.     end  
  11.   end
  12. end
  13.  
  14. for k, v in pairs(frames) do
  15.   CheckForTextures(v)
  16. end
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)

Last edited by zork : 08-08-14 at 08:08 AM.