modui

Re: modui

by modernist » Fri Oct 16, 2015 3:48 pm

gradient health & cast bars

Image
modernist
Sergeant Major
Sergeant Major
 

Re: modui

by nadol94 » Fri Oct 16, 2015 10:50 pm

can i move the tooltip frame sumhow?
nadol94
Tester
 

Re: modui

by modernist » Fri Oct 16, 2015 10:59 pm

this file: https://github.com/obble/modui/blob/mas ... ip/tip.lua
line 50. it's currently attached to the topright of the mailmenu.

http://wowprogramming.com/docs/widgets/Region/SetPoint

you can also just change line 3 to this:
Code: Select all
local AttachToMainbar = false

to change it back to its default blizzard position
modernist
Sergeant Major
Sergeant Major
 

Re: modui

by Wosh » Fri Oct 16, 2015 11:06 pm

nadol94 wrote:can i move the tooltip frame sumhow?

There's an addon that let you do that: MoveAnything.
Or you can edit the code:
- Interface\AddOns\modui\modtip\tip.lua line 50
Code: Select all
GameTooltip:SetPoint('BOTTOMRIGHT', MainMenuBar, -6, CONTAINER_OFFSET_Y + 16)

BOTTOMRIGHT is the anchor, MainMenuBar the parent (you shouldn't edit that), -6 is for the horizontal axis and 16 for the vertical one.
- Edit with a notepad while your ingame, save and reload the ui /rl till it fits you.

Edit: crosspost with modernist.
Wosh
Grunt
Grunt
 

Re: modui

by Wosh » Fri Oct 16, 2015 11:14 pm

modernist, have you seen my comment on the previous page? as it was my first post a modo had to check it first.
Wosh
Grunt
Grunt
 

Re: modui

by nadol94 » Fri Oct 16, 2015 11:18 pm

Wosh wrote:
nadol94 wrote:can i move the tooltip frame sumhow?

There's an addon that let you do that: MoveAnything.
Or you can edit the code:
- Interface\AddOns\modui\modtip\tip.lua line 50
Code: Select all
GameTooltip:SetPoint('BOTTOMRIGHT', MainMenuBar, -6, CONTAINER_OFFSET_Y + 16)

BOTTOMRIGHT is the anchor, MainMenuBar the parent (you shouldn't edit that), -6 is for the horizontal axis and 16 for the vertical one.
- Edit with a notepad while your ingame, save and reload the ui /rl till it fits you.

Edit: crosspost with modernist.


so i replace that whole line?
nadol94
Tester
 

Re: modui

by modernist » Fri Oct 16, 2015 11:35 pm

Yep
modernist
Sergeant Major
Sergeant Major
 

Re: modui

by Wosh » Fri Oct 16, 2015 11:37 pm

nadol94 wrote:so i replace that whole line?

Edit only the numbers: begin by changing 16 for example to 200 and see in game what it does. you'll see that the tooltip has moved to the right. replace with -200 and it moves left. Adjust the number. Now with -6 input 200 and the tooltip will go up, -200 down. If it's not enough and for example you want your tooltip on the very top right of your screen then change BOTTOMRIGHT for TOPRIGHT.

As you ask, I really recommand you to install the MoveAnything, you'll find it in the packs you can download from this topic: viewtopic.php?f=63&t=15342
when installed and ingame just press escape to bring the game menu and you'll find the button MoveAnything, search there for the static tooltip.
I recommand you to do it that way as modernist updates frequently that UI.
Wosh
Grunt
Grunt
 

Re: modui

by nadol94 » Fri Oct 16, 2015 11:44 pm

moveanything didnt work. i managed to get it where i want it nowthanks to you. thankyou :). might be a bit of a longshot but is there a way to make the minimap rotate with the player instead of being locked north?
nadol94
Tester
 

Re: modui

by modernist » Fri Oct 16, 2015 11:45 pm

Wosh wrote:modernist, have you seen my comment on the previous page? as it was my first post a modo had to check it first.


Hey, thanks for the kind words and for pointing this out — would've missed it otherwise.

I'll look into how customnameplates adds classes tomorrow. i have been thinking about adding debuff tracking on my plates too...

The ToT thing is weird, I don't really modify the frame at all and haven't noticed it disappearing as I've played this evening. I'll look into it first thing tomorrow.
modernist
Sergeant Major
Sergeant Major
 

PreviousNext

Return to Addons & macros