Thread Tools Display Modes
09-03-09, 07:31 PM   #1
Ither
A Firelord
 
Ither's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2009
Posts: 497
Changes I can't figure out..

You sold me... nUI is my new default

Few things I asked about while back, now I'm asking for helping "removing" them.

In the screen shot there are three things in circled in red.
  1. How do I flip the buff buttons to the inside of the frames. If you notice they start on top of the players portrait. I'd like for them to be on the other side.
  2. How do I completely remove the tooltip pop up under the map? It's annoying LOL.

PS. I stole someones nUI Supporter graphic.. Can't remember who LOL.
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_090309_202135.jpg
Views:	719
Size:	384.2 KB
ID:	3308  
__________________
 
09-04-09, 04:10 AM   #2
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
In order to change that, you would have to edit [ Interface > AddOns > nUI > Layouts > Default > UnitPanels > Solo > nUI_UnitSkin_SoloPlayer.lua ] and locate the ["Aura"] section... in section [1] which is the debuffs and replace that section with what I have here (you may need to tweak the location slightly after the fact to get it aligned as you like).

Code:
            [1] =    -- debuffs
            {
                anchor =
                {
                    anchor_pt   = "BOTTOMRIGHT",
                    relative_to = "$parent_Feedback",
                    relative_pt = "BOTTOMRIGHT",
                    xOfs        = -5,
                    yOfs        = 16,
                },        
                options =
                {
                    enabled = true,
                    size    = 35,
                    strata  = nil,
                    level   = 1,
                    
                    aura_type        = "harm",
                    origin           = "BOTTOMRIGHT",
                    player_auras     = false,
                    dispellable      = false,
                    horizontal       = false,
                    highlight_player = false,
                    aura_types       = true,
                    cooldown_anim    = false,
                    flash_expire     = true,
                    clickable        = true,
                    rows             = 1,
                    cols             = 8,
                    expire_time      = 10,
                    hGap             = 0,
                    vGap             = 0,

                    timer =
                    {
                        enabled     = true,
                        fontsize    = 9,
                        justifyH    = "CENTER",
                        justifyV    = "TOP",
                        anchor_pt   = "TOP",
                        relative_pt = "BOTTOM",
                        xOfs        = 0,
                        yOfs        = 2,
                    },

                    count =
                    {
                        enabled     = true,
                        justifyH    = "CENTER",
                        justifyV    = "MIDDLE",
                        anchor_pt   = "CENTER",
                        relative_pt = "CENTER",
                        xOfs        = 0,
                        yOfs        = 0.5,
                    },
                },        
            },
EDIT: Oops... forgot the second part of your question... the mouseover unit frame. That's not a tooltip... it's an actual unit frame for your mouseover target and it does contain information which can be very important for instances and raids... so I would caution against removing it. However, if you must, then you would edit the [ Interface > AddOns > nUI > Layouts > Default > UnitPanels > {panel mode} > nUI_UnitPanel_{panel mode}.lua ] and locate the section for the mouseover unit frame, then set "enabled = false" for that unit frame.
Originally Posted by Galtar View Post
You sold me... nUI is my new default

Few things I asked about while back, now I'm asking for helping "removing" them.

In the screen shot there are three things in circled in red.
  1. How do I flip the buff buttons to the inside of the frames. If you notice they start on top of the players portrait. I'd like for them to be on the other side.
  2. How do I completely remove the tooltip pop up under the map? It's annoying LOL.
PS. I stole someones nUI Supporter graphic.. Can't remember who LOL.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/

Last edited by spiel2001 : 09-04-09 at 04:17 AM.
 
09-04-09, 11:08 AM   #3
Ither
A Firelord
 
Ither's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2009
Posts: 497
Changing the debuff location in that file pertains to any additional unitframe types (Party, Raid 10, etc.) ?
__________________
 
09-04-09, 12:20 PM   #4
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
No. Only to the solo unit frame panel. You would need to make similar changes to the other panels, too.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Customization » nUI: Customizing Layouts » Changes I can't figure out..


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