WoW:API GetTradeSkillSelectionIndex: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
({{wowapi}}, format)
m (Move page script moved page API GetTradeSkillSelectionIndex to API GetTradeSkillSelectionIndex without leaving a redirect)
 
(No difference)

Latest revision as of 04:46, 15 August 2023

WoW API < GetTradeSkillSelectionIndex

Returns the index of the currently selected trade skill.

local tradeSkillIndex = GetTradeSkillSelectionIndex();

Parameters[edit]

Returns[edit]

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

Example[edit]

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