WoW API: ChatFrame ResolveChannelName

From AddOn Studio
Jump to navigation Jump to search

WoW API < ChatFrame ResolveChannelName

//www.townlong-yak.com/framexml/live/ChatFrame.lua

ChatFrame_ResolveChannelName('communityChannel')

Resolves the internal community channel name into the short-name setup by the community admin


Parameters[edit]

Arguments[edit]

('communityChannel')
communityChannel
String - The name of the (community) channel to resolve.

Returns[edit]

'communityShortName - channelName'
string containing the community channel's short-name
if the input doesn't follow the community format, the input is returned back
if the community isn't found, ' - ' is returned
if the channelName is General, then only communityShortName is returned

Example[edit]

ChatFrame_ResolveChannelName("Community:123456789:1");
-- Cname
ChatFrame_ResolveChannelName("4: Community:123456789:2");
-- Cname - subChannel
ChatFrame_ResolveChannelName("LocalDefense");
-- LocalDefense
ChatFrame_ResolveChannelName("3: LocalDefense");
-- 3: LocalDefense