WoW:API GetTradeSkillSelectionIndex

From AddOn Studio
Revision as of 22:19, 6 January 2005 by WoWWiki>Goldark
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
GetTradeSkillSelectionIndex -Documentation by Goldark-

Returns the index of the currently selected trade skill.

local tradeSkillIndex = GetTradeSkillSelectionIndex();

Arguments
none

Returns
Number tradeSkillIndex
tradeSkillIndex
The index of the currently selected trade skill, or 0 if none selected.

Example
if ( GetTradeSkillSelectionIndex() > 1 ) then
  TradeSkillFrame_SetSelection(GetTradeSkillSelectionIndex());
else
  if ( GetNumTradeSkills() > 0 ) then
    TradeSkillFrame_SetSelection(GetFirstTradeSkill());
  end;
end;



Template:WoW API