WoW:API ToggleSpellBook: Difference between revisions
Jump to navigation
Jump to search
m (catfix, Replaced: {{framexml → <br>{{framexml) |
mNo edit summary |
||
| Line 25: | Line 25: | ||
: Shows the Spellbook. Equivalent to pressing 'P'. Note that if you do not have any pet spells, passing in "pet" will do nothing. | : Shows the Spellbook. Equivalent to pressing 'P'. Note that if you do not have any pet spells, passing in "pet" will do nothing. | ||
: If you want to open the spellbook using Lua, don't use this, use <code>ToggleFrame(SpellBookFrame)</code> instead. | |||
Revision as of 08:20, 1 June 2010
This function is implemented in Lua here FrameXML/SpellBookFrame.lua.
ToggleSpellBook(bookType);
Shows/Hides the Spellbook.
Parameters
Arguments
- bookType
- string containing which spellbook to open. Valid choices are "spell", "pet", "general", or any spec name (e.g. "assasination", "fire", etc). Only "spell" and "pet" will open the full spellbook (with all the tabs to click on), the rest will open only that tab (with no tabs to click on).
Returns
- nil
Example
ToggleSpellBook("spell");
Details
- Shows the Spellbook. Equivalent to pressing 'P'. Note that if you do not have any pet spells, passing in "pet" will do nothing.
- If you want to open the spellbook using Lua, don't use this, use
ToggleFrame(SpellBookFrame)instead.