WoW:API GetLanguageByIndex: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 35: Line 35:


:;[[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
----
----
__NOTOC__
{{WoW API}}
{{Template:WoW API}}
[[Category:API Functions|GetLanguageByIndex]]
[[Category:API Chat Functions|GetLanguageByIndex]]
[[Category:API Communication Functions|GetLanguageByIndex]]

Revision as of 04:55, 4 January 2006

GetLanguageByIndex - Documentation by VelvetPaw

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

Template:WoW API