WoW:API GetLanguageByIndex: Difference between revisions
Jump to navigation
Jump to search
GetLanguageByIndex - Documentation by VelvetPaw
No edit summary |
(upgraded deprecated template) |
||
Line 1: | Line 1: | ||
{{wowapi}} | |||
<center>'''GetLanguageByIndex''' - ''Documentation by VelvetPaw''</center> | <center>'''GetLanguageByIndex''' - ''Documentation by VelvetPaw''</center> | ||
Line 35: | Line 36: | ||
:;[[API ScrollingMessageFrame AddMessage|ScrollingMessageFrame:AddMessage("text",r,g,b,id)]] : Valid Frame names:<br>DEFAULT_CHAT_FRAME<br>ChatFrame1 - ChatFrame7 | :;[[API ScrollingMessageFrame AddMessage|ScrollingMessageFrame:AddMessage("text",r,g,b,id)]] : Valid Frame names:<br>DEFAULT_CHAT_FRAME<br>ChatFrame1 - ChatFrame7 | ||
Revision as of 17:29, 6 January 2007
← WoW API < GetLanguageByIndex
Returns the language specified by the index that your character can speak.
Language = GetLanguageByIndex(index)
Parameters
Arguments
- index
- index
- Numeric - The index starting at 1.
Returns
- Language
- Language
- String - Returns the language specified by the index that your character can speak.
Example
for x=1, GetNumLaguages() do DEFAULT_CHAT_FRAME:AddMessage(GetLanguageByIndex(x)) end
Info
for .. do
- Look for the 'for .. do' block at the Reference Manual.
GetNumLaguages()
- GetNumLaguages() - Returns the number of languages your character can speak (I guess Blizzard's programmers mistyped that function name).
DEFAULT_CHAT_FRAME:AddMessage("text",r,g,b)
- ScrollingMessageFrame:AddMessage("text",r,g,b,id)
- Valid Frame names:
DEFAULT_CHAT_FRAME
ChatFrame1 - ChatFrame7