This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
Hi again,
I also added keybindings in my copy of chatter. Would be nice if you could incorporate them into the addon:
In file Chatter.lua:
BINDING_HEADER_Chatter = "Chatter" BINDING_NAME_chatterofficer = "Officer Channel" BINDING_NAME_chatterguild = "Guild Channel" BINDING_NAME_chatterparty = "Party Channel" BINDING_NAME_chatterraid = "Raid Channel" BINDING_NAME_chatterraidwarn = "Raid Warning Channel" BINDING_NAME_chatterinstance = "Instance Channel" BINDING_NAME_chattersay = "Say" BINDING_NAME_chatteryell = "Yell" BINDING_NAME_chatterwhisper = "Whisper"
Then create file Bindings.xml:
<Bindings> <!-- ChannelNames --> <Binding name="chatterofficer" header="Chatter"> ChatFrame_OpenChat("/o"); </Binding> <Binding name="chatterguild" > ChatFrame_OpenChat("/g"); </Binding> <Binding name="chatterparty" > ChatFrame_OpenChat("/p"); </Binding> <Binding name="chatterraid" > ChatFrame_OpenChat("/raid"); </Binding> <Binding name="chatterraidwarn" > ChatFrame_OpenChat("/rw"); </Binding> <Binding name="chatterinstance" > ChatFrame_OpenChat("/i"); </Binding> <Binding name="chattersay" > ChatFrame_OpenChat("/say"); </Binding> <Binding name="chatteryell" > ChatFrame_OpenChat("/yell"); </Binding> <Binding name="chatterwhisper" > ChatFrame_OpenChat("/w"); </Binding> </Bindings>
To post a comment, please login or register a new account.