modui

Re: modui

by MonroeX » Tue Jan 19, 2016 2:23 am

Got it, thanks! :)
Image
User avatar
MonroeX
Sergeant
Sergeant
 

Re: modui

by modernist » Tue Jan 19, 2016 10:10 am

djmy wrote:I've searched on page 6-7 on how to move the tooltip since it's all the way at the bottom when I mouseover something and I'm really confuse on how to do so. Moveanything doesn't really help and I've been trying to figure this out the pass hour lol.

-Thanks


can you take a screenshot of the issue? having trouble picturing exactly what you mean. also — as a standard — please make sure you have the latest version installed.
modernist
Sergeant Major
Sergeant Major
 

Re: modui

by modernist » Tue Jan 19, 2016 10:10 am

edit: double
modernist
Sergeant Major
Sergeant Major
 

Re: modui

by djmy » Tue Jan 19, 2016 10:50 am

http://imgur.com/AljPcDW

Here you go :)

-Thanks
djmy
Grunt
Grunt
 

Re: modui

by modernist » Tue Jan 19, 2016 10:57 am

oh, hah. you moved the action bars — or are using another bar mod in tandem with modui?

in any case, the tooltip is designed to parent to the end of the action bars, and shifts its offset depending on a number of factors (including whether the bag is open, or how many extra action bars are shown). to counteract this, you can change this entire function (lines 103-131) to:

Code: Select all
    local movetip = function()           -- TOOLTIP
        local type = GameTooltip:GetAnchorType()
        if type == 'ANCHOR_NONE' then
            GameTooltip:ClearAllPoints()
            GameTooltip:SetPoint('BOTTOMRIGHT', UIParent, -CONTAINER_OFFSET_X - 18, CONTAINER_OFFSET_Y)
        end
    end


which will position it back towards the bottom right of the screen
modernist
Sergeant Major
Sergeant Major
 

Re: modui

by djmy » Tue Jan 19, 2016 11:09 am

modernist wrote:oh, hah. you moved the action bars — or are using another bar mod in tandem with modui?

in any case, the tooltip is designed to parent to the end of the action bars, and shifts its offset depending on a number of factors (including whether the bag is open, or how many extra action bars are shown). to counteract this, you can change this entire function (lines 103-131) to:

Code: Select all
    local movetip = function()           -- TOOLTIP
        local type = GameTooltip:GetAnchorType()
        if type == 'ANCHOR_NONE' then
            GameTooltip:ClearAllPoints()
            GameTooltip:SetPoint('BOTTOMRIGHT', UIParent, -CONTAINER_OFFSET_X - 18, CONTAINER_OFFSET_Y)
        end
    end


which will position it back towards the bottom right of the screen


No other bar addons that I know of. I used moveanything to move the bars like that though haha.
But, thanks it worked! Just did a little bit of adjustment to it.

-Much appreciated!
djmy
Grunt
Grunt
 

Re: modui

by TOshik » Tue Jan 19, 2016 9:06 pm

on some versions of the game will work your addon?
TOshik
Tester
 

Re: modui

by modernist » Tue Jan 19, 2016 9:16 pm

I've been told it works on other vanilla servers, so i assume its good for any 1.12 version. only actively supported for nostalrius though.
modernist
Sergeant Major
Sergeant Major
 

Re: modui

by djmy » Tue Jan 19, 2016 11:25 pm

Anyway to change the position of the nameplates?

-Thanks
djmy
Grunt
Grunt
 

Re: modui

by modernist » Wed Jan 20, 2016 9:38 am

not currently, I'm afraid
modernist
Sergeant Major
Sergeant Major
 

PreviousNext

Return to Addons & macros