WoW:API ChatFrame ResolveChannelName: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{Tlylink|ChatFrame.lua}} ChatFrame_ResolveChannelName('communityChannel') Resolves the internal community channel name into the short-name setup by the community admin ==...") |
m (Move page script moved page API ChatFrame ResolveChannelName to API ChatFrame ResolveChannelName without leaving a redirect) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
{{Wowapi}} | |||
{{Tlylink|ChatFrame.lua}} | {{Tlylink|ChatFrame.lua}} | ||
ChatFrame_ResolveChannelName('communityChannel') | ChatFrame_ResolveChannelName('communityChannel') |
Latest revision as of 04:45, 15 August 2023
← 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