WoW API: GetNumMacroIcons
Jump to navigation
Jump to search
Returns the number of possible macro icons.
numIcons = GetNumMacroIcons();
Parameters[edit]
Returns[edit]
- numIcons
- Integer - Number of available macro icons.
Example[edit]
local numIcons = GetNumMacroIcons() for i=1,numIcons do DEFAULT_CHAT_FRAME:AddMessage(string.format("Icon %d: %s",i,GetMacroIconInfo(i))); end
Result[edit]
Outputs the IDs and texture names for all available macro icons to the default chat frame.
Notes[edit]
This function must be called before using GetMacroIconInfo(index) to retrieve texture information.