Widget API: GameTooltip:SetSpell

From AddOn Studio
Revision as of 05:37, 13 October 2010 by WoWWiki>DrDoom (Note for cata)
Jump to navigation Jump to search

Widget API ← GameTooltip < SetSpell

Shows the tooltip for the specified spell.

GameTooltip:SetSpell(spellId, bookType);
Arguments
(spellId, spellbookTabNum)
spellId
Number - the id of the spell on the tab
bookType
String - Either BOOKTYPE_SPELL ("spell") or BOOKTYPE_PET ("pet").
Returns
unknown

Examples

GameTooltip:SetSpell(46, BOOKTYPE_SPELL)

Details

  • Find the spellId as follows:
local i = 1
while true do
   local spell, rank = GetSpellName(i, BOOKTYPE_SPELL)
   if (not spell) then
      break
   end
   if (rank) then
      spell = spell.." ("..rank..")"
   end
   DEFAULT_CHAT_FRAME:AddMessage(i..": "..spell)
   i = i + 1
end

Notes

This has been renamed to SetSpellBookItem in patch 4.0.1