WoW:API GetTradeSkillSelectionIndex

From AddOn Studio
Revision as of 05:50, 4 January 2006 by WoWWiki>Muert
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