WoW:API GetNumMacroIcons: Difference between revisions
Jump to navigation
Jump to search
('i' is inherently local already, don't confuse the reader) |
m (Move page script moved page API GetNumMacroIcons to API GetNumMacroIcons without leaving a redirect) |
(No difference)
| |
Latest revision as of 04:46, 15 August 2023
Returns the number of possible macro icons.
numIcons = GetNumMacroIcons();
Parameters
Returns
- numIcons
- Integer - Number of available macro icons.
Example
local numIcons = GetNumMacroIcons()
for i=1,numIcons do
DEFAULT_CHAT_FRAME:AddMessage(string.format("Icon %d: %s",i,GetMacroIconInfo(i)));
end
Result
Outputs the IDs and texture names for all available macro icons to the default chat frame.
Notes
This function must be called before using GetMacroIconInfo(index) to retrieve texture information.