API GetTradeSkillSelectionIndex
Talk0
98,517pages on
this wiki
this wiki
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;