LuaSlinger»Dump Action Bar Slots

Dump Action Bar Slots

Dump out what's in each action bar slot

Description: This script tells you what is on each of your action bars, this is helpful when using some of the other scripts in the LuaSlinger library. How to use: bind to key or execute on demand

 -- Dump out whats in each action bar slot
 for i=1, 120, 1 do 
   text = GetActionText(i)
   if (not text) then 
     text = GetActionTexture(i)
   end
   if (not text) then 
     text = ''
   end
   DEFAULT_CHAT_FRAME:AddMessage(i..' :: '..text) 
 end