Sometimes I like playing around with the built in languages (IE, on my draenei and speaking draenish...). Is there a way you can add that to the right click on tab so you can keep all the buttons still hidden? I hope I'm making sense.
[2008/06/04 08:52:19-943-x1]: Chatter-1.0\Modules\ChannelNames.lua:149: bad argument #1 to 'gsub' (string expected, got boolean)
Chatter-1.0\Modules\ChannelNames.lua:149: in function <Interface\AddOns\Chatter\Modules\ChannelNames.lua:143>
(tail call): ?:
(tail call): ?:
(tail call): ?:
<string>:"DEFAULT_CHAT_FRAME:AddMessage(true)":1: in main chunk
<in C code>: in function `RunScript'
Interface\FrameXML\ChatFrame.lua:1598: in function `value':
Interface\FrameXML\ChatFrame.lua:3040: in function `ChatEdit_ParseText':
Interface\FrameXML\ChatFrame.lua:2732: in function `ChatEdit_SendText':
Interface\FrameXML\ChatFrame.lua:2753: in function `ChatEdit_OnEnterPressed':
<string>:"*:OnEnterPressed":1: in function <[string "*:OnEnterPressed"]:1>
---
Simplest way to recreate this error is to use DEFAULT_CHAT_FRAME:AddMessage(any non-string/number value), did a dirty fix locally here that simply do a 'text = tostring(text)' on line 147.
before using chatter, i was using Prat and it had the nice functionality of being able to restore previously entered chat messages by using shift+up arrow in the edit box.
Is this functionality available in chatter (and if so what do i have to configure to get it as right now, it doesnt work) and if not, is this planed to be done at some point ?
before using chatter, i was using Prat and it had the nice functionality of being able to restore previously entered chat messages by using shift+up arrow in the edit box.
Is this functionality available in chatter (and if so what do i have to configure to get it as right now, it doesnt work) and if not, is this planed to be done at some point ?
Thanks for a great a ddon :)
This is possible, and defaults to ALT+UP/DOWN to cycle through the previously entered lines of text, if I recall right.
I really really want to use this mod... can someone tell me how to do the following:
1.) Make chat tabs completely disappear.
2.) Set timestamps per frame.
No idea on #1, not sure its possible. As for #2, that is also not possible with the current version of Chatter available. I suppose I could commit my per frame code I use locally...
As do mine, until I hover over the chat frame, then they show back up.
Tried the "lock chat settings" (or worded something like that) from the Interface->Social options and not the specific chat frame itself? Not sure if that'll do what you want or not though, since I only have one tab in each frame. They are completely hidden for me though with that option on.
No idea on #1, not sure its possible. As for #2, that is also not possible with the current version of Chatter available. I suppose I could commit my per frame code I use locally...
Under channel names, if you make them blank, it defaults to the full channel name instead of to blank. You can sort of hack around it by putting in a space " ", but is there any way to selectively disable channel names from appearing? That was my original goal, thinking by removing the channel name it would work as such.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
Simplest way to recreate this error is to use DEFAULT_CHAT_FRAME:AddMessage(any non-string/number value), did a dirty fix locally here that simply do a 'text = tostring(text)' on line 147.
before using chatter, i was using Prat and it had the nice functionality of being able to restore previously entered chat messages by using shift+up arrow in the edit box.
Is this functionality available in chatter (and if so what do i have to configure to get it as right now, it doesnt work) and if not, is this planed to be done at some point ?
Thanks for a great a ddon :)
Bumped
Can the chat-tabs be hidden?
To move the edit box set it to "free-floating", then just drag the edit box to where you want it. To lock it, change to "free-floating (locked)".
This is possible, and defaults to ALT+UP/DOWN to cycle through the previously entered lines of text, if I recall right.
1.) Make chat tabs completely disappear.
2.) Set timestamps per frame.
No idea on #1, not sure its possible. As for #2, that is also not possible with the current version of Chatter available. I suppose I could commit my per frame code I use locally...
As do mine, until I hover over the chat frame, then they show back up.
Tried the "lock chat settings" (or worded something like that) from the Interface->Social options and not the specific chat frame itself? Not sure if that'll do what you want or not though, since I only have one tab in each frame. They are completely hidden for me though with that option on.
/script ChatFrame4Tab:SetScript("OnEnter", nil)
?
/script ChatFrame4Tab:SetScript("OnEnter", function(this) ChatFrame4Tab:Hide() end)
It'd be easy to add to chatter :P
/script ChatFrame4Tab:SetScript("OnHide", function(...) end);ChatFrame4Tab:SetScript("OnShow", function(...) end);ChatFrame4Tab:SetScript("OnLeave", function(...) end)