Thread Tools Display Modes
03-24-12, 01:16 PM   #1
Rosoaa
A Flamescale Wyrmkin
 
Rosoaa's Avatar
AddOn Compiler - Click to view compilations
Join Date: Mar 2007
Posts: 107
Chat Tabs - Horizontal Spacing

I want to be able to control the horizontal spacing of my chat tabs. I've tried what I think to be everything and nothing is working. I even tried renaming the chat tabs to something longer. IE: General-------- or General----. This way the tabs are moved further down the dock manager.

Here's my current chat tabs:



Here's a SS of Aftermathh UI (to show you what I'd like to accomplish regarding horizontal spacing):

__________________
Rosoaa's UI

Last edited by Rosoaa : 03-24-12 at 02:02 PM.
  Reply With Quote
03-25-12, 09:43 AM   #2
Rosoaa
A Flamescale Wyrmkin
 
Rosoaa's Avatar
AddOn Compiler - Click to view compilations
Join Date: Mar 2007
Posts: 107
Any solutions?
__________________
Rosoaa's UI
  Reply With Quote
03-25-12, 09:58 AM   #3
Cairenn
Credendo Vides
 
Cairenn's Avatar
Premium Member
WoWInterface Admin
Join Date: Mar 2004
Posts: 7,134
Patience Rosoaa. It's the weekend, people are sleeping in, gaming, doing household chores, visiting, etc ....

__________________
“Do what you feel in your heart to be right — for you’ll be criticized anyway.” ~ Eleanor Roosevelt
~~~~~~~~~~~~~~~~~~~
Co-Founder & Admin: MMOUI
FaceBook Profile, Page, Group
Avatar Image by RaffaeleMarinetti
  Reply With Quote
03-25-12, 10:25 AM   #4
Aftermathhqt
A Molten Giant
 
Aftermathhqt's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 784
Originally Posted by Rosoaa View Post
I want to be able to control the horizontal spacing of my chat tabs. I've tried what I think to be everything and nothing is working. I even tried renaming the chat tabs to something longer. IE: General-------- or General----. This way the tabs are moved further down the dock manager.

Here's my current chat tabs:



Here's a SS of Aftermathh UI (to show you what I'd like to accomplish regarding horizontal spacing):


Hey Rosa.

This is what i use for my chat tabs:

LUA Code:
  1. function SkinTab(self)
  2.     _G[self..'TabLeft']:SetTexture(nil)
  3.     _G[self..'TabMiddle']:SetTexture(nil)
  4.     _G[self..'TabRight']:SetTexture(nil)
  5.     _G[self..'TabSelectedLeft']:SetTexture(nil)
  6.     _G[self..'TabSelectedMiddle']:SetTexture(nil)
  7.     _G[self..'TabSelectedRight']:SetTexture(nil)
  8.     _G[self..'TabHighlightLeft']:SetTexture(nil)
  9.     _G[self..'TabHighlightRight']:SetTexture(nil)
  10.     _G[self..'TabHighlightMiddle']:SetTexture(nil)
  11.    
  12.     local a1, a2, a3, a4, a5 = _G[self..'TabText']:GetPoint()
  13.     _G[self..'TabText']:SetPoint(a1, a2, a3, a4, a5 + 3,  _G[self..'Tab'])
  14.     _G[self..'TabText']:SetFont(AftermathhUI.media.font, 11, AftermathhUI.media.fontflag)
  15.     if AftermathhUI.media.shadowoffset == true then
  16.         _G[self..'TabText']:SetShadowOffset(1, -1)
  17.         _G[self..'TabText']:SetShadowColor(0,0,0)
  18.     end
  19.     _G[self..'TabText']:SetJustifyH('CENTER')
  20.     _G[self..'TabText']:SetWidth(500)
  21.    
  22.     if AftermathhUI.chat.chatbackground == true then
  23.        _G[self..'Tab']:SetFrameStrata('BACKGROUND')
  24.        CreateBorderLight(_G[self..'Tab'], AftermathhUI.media.bordersize, AftermathhUI.bordercolor, AftermathhUI.bordercolor, AftermathhUI.bordercolor, -3, -4, -3, -4, -3, 1, -3, 1)
  25.        _G[self..'Tab']:SetBackdrop({
  26.             bgFile = AftermathhUI.media.blank,
  27.             insets = {left = 3, right = 3, top = 4, bottom = -1},
  28.         })
  29.         _G[self..'Tab']:SetBackdropColor(0, 0, 0, 0.75)
  30.     end
  31. end
  32.  
  33. for i = 1, NUM_CHAT_WINDOWS do
  34.     ModChat('ChatFrame'..i)
  35.     SkinTab('ChatFrame'..i)
  36. end
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Chat Tabs - Horizontal Spacing


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off