Thread Tools Display Modes
05-23-09, 09:54 PM   #1
Elizair
A Defias Bandit
Join Date: May 2009
Posts: 3
nUI and SexyMap?

So I just recently got nUI and love it. I also use SexyMap to modify my mini map. And it works.. mostly. The only issue I have is that is doesn't properly work with my tracking button. It puts the button in the button bag, and the icon for whatever is tracked on the mini map.
Any way to fix this? I really don't want to lose my fancy map, but I hate not having a working tracking button too.
 
05-23-09, 10:13 PM   #2
Baltharus
A Chromatic Dragonspawn
 
Baltharus's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2008
Posts: 190
Originally Posted by Elizair View Post
So I just recently got nUI and love it. I also use SexyMap to modify my mini map. And it works.. mostly. The only issue I have is that is doesn't properly work with my tracking button. It puts the button in the button bag, and the icon for whatever is tracked on the mini map.
Any way to fix this? I really don't want to lose my fancy map, but I hate not having a working tracking button too.
since nUI dose some stuff with the minimap im pretty sure that using sexymap is going to conflict with this..

i would stop using sexy map but maybe speil can help ya with a fix o.O
__________________
[SIGPIC][/SIGPIC]
Originally Posted by us2006027321 View Post
Certain long-standing political, pseudo-religious Roman traditions have taken you seriously and notified their Knights Templar and Illiuminati appropriately. Your move... /grin
 
05-23-09, 11:18 PM   #3
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,919
If you know what the name of your tracking minimap button is called you can tell nUI to not bag it.

Okay, in your nUI\Plugins folder you have a file called nUI_ButtonBag.lua. The following is a segment of code from it to show you what you are looking for.

If you look carefully you will see that the Tracking button is set to true. Setting that to false should tell nUI not to put it in the button bag.

Code:
local ButtonBagConfig = 
{	
	-- transient minimap buttons we want on the top row
	
	TopRow =
	{
		["MiniMapMeetingStoneFrame"] = true,
		["MiniMapVoiceChatFrame"] = true,
		["MiniMapRecordingButton"] = true,
	},
	
	-- buttons we want to force ignore of
	
	Excludes = 
	{		
		["MiniMapMailFrame"] = true,
		["MiniMapBattlefieldFrame"] = true,
		["MinimapBackdrop"] = true,
		["MiniMapPing"] = true,
		["MiniMapCompassRing"] = true,
		["MinimapZoomIn"] = true,
		["MinimapZoomOut"] = true,
		["MiniMapTracking"] = true,
		["MiniMapWorldMapButton"] = true,
		["GatherMiniNoteUpdateFrame"] = true,
		["TimeManagerClockButton"] = true,
		["FishingBuddyMinimapMenuButton"] = true,
		["PoisonerMinimapButton"] = true,
		["GameTimeFrame"] = false,
	},
Edit: Hmm come to think of it .. nUI should not be putting the tracking button in the buttonbag .. its being ignored by this code. Unless its another addon you are talking about.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818

Last edited by Xrystal : 05-23-09 at 11:22 PM.
 
05-24-09, 05:32 AM   #4
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Xrystal is correct... nUI does not put the tracking button the button bag. The only think I can think of is that SexyMap has replaced the tracking button with it's own version and nUI is moving that.

Take a look at the file [ WTF > Account > {your account} > SavedVariables > nUI.lua ] and you'll find a section that looks something like this...

Code:
nUI_DebugLog = {
    ["ButtonBag"] = {
        ["MinimapZoomIn"] = "skipped forced ignore button",
        ["MiniMapMailFrame"] = "skipped forced ignore button",
        ["MinimapBackdrop"] = "skipped forced ignore button",
        ["MiniMapRecordingButton"] = "does not appear to be a button",
        ["LibDBIcon10_Skada"] = "autodetected and moved button",
        ["MinimapPing"] = "does not appear to be a button",
        ["MinimapZoomOut"] = "skipped forced ignore button",
        ["MiniMapMeetingStoneFrame"] = "autodetected and moved button",
        ["MiniMapBattlefieldFrame"] = "skipped forced ignore button",
        ["MiniMapVoiceChatFrame"] = "autodetected and moved button",
        ["MiniMapTracking"] = "skipped forced ignore button",
        ["MiniMapWorldMapButton"] = "skipped forced ignore button",
        ["GameTimeFrame"] = "moved forced include button",
    },
}
Look at the "autodetected and moved" entries for one that looks like it might be the tracking button. If you can spot it, then copy that button name into the "Excludes" section in [ Interface > AddOns > nUI > Plugins > nUI_ButtonBag.lua ] as Xrystal already pointed out.

Also, let me know what the name of the button is and I'll make sure to add it to the exclude list permanently.
__________________

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/
 
05-24-09, 07:59 AM   #5
neuralassassin
A Scalebane Royal Guard
 
neuralassassin's Avatar
Join Date: Sep 2008
Posts: 423
Sexy map used to have an option menu where you pick which buttons it has control over i think its been awhile. So if you disable sexy maps control of the tracking button you should be okay too.
__________________

 
05-24-09, 03:57 PM   #6
Elizair
A Defias Bandit
Join Date: May 2009
Posts: 3
["MiniMapTrackingButton"] = "autodetected and moved button"
["MiniMapTracking"] = "skipped forced ignore button",

I got this in my nUI.lua.....
I'm not very familiar with coding of stuff so I'm a lil confused as to what to do. :P


Screenshot (enlarged map for better view):



And yes SexyMap has the option to pick if it has control over buttons, but that option doesn't fix my tracking button. It only worked for some other addons like DBM.
 
05-24-09, 04:17 PM   #7
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,919
Well from what you found it looks like you need to add ["MiniMapTrackingButton"] to the list of ignored buttons. Look at that post I did telling you what file and section has what you want to change. Then, its just the case of adding that line to it so it shows something like this:

Code:
	Excludes = 
	{		
		["MiniMapMailFrame"] = true,
		["MiniMapBattlefieldFrame"] = true,
		["MinimapBackdrop"] = true,
		["MiniMapPing"] = true,
		["MiniMapCompassRing"] = true,
		["MinimapZoomIn"] = true,
		["MinimapZoomOut"] = true,
		["MiniMapTracking"] = true,
                        ["MinimapTrackingButton"] = true,
		["MiniMapWorldMapButton"] = true,
		["GatherMiniNoteUpdateFrame"] = true,
		["TimeManagerClockButton"] = true,
		["FishingBuddyMinimapMenuButton"] = true,
		["PoisonerMinimapButton"] = true,
		["GameTimeFrame"] = false,
	},
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
05-26-09, 12:46 PM   #8
Elizair
A Defias Bandit
Join Date: May 2009
Posts: 3
*cries* That didn't work...
 
05-26-09, 01:47 PM   #9
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,919
Hmm, okay, let me try. I'll add sexy map and try and get it working.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
12-10-09, 02:36 PM   #10
noindy
A Kobold Labourer
Join Date: Apr 2009
Posts: 1
I know this is a somewhat old post, but I am also using Sexymap with Nui, and was wondering if it would be possible to have a command put in to completely shut off the buttonbag, similar to the way you shut off Nui's control of the minimap itself?
 
12-10-09, 06:13 PM   #11
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
You'll have much greater control over the button bag in nUI6, but no change will be made in nUI5 for that.
__________________

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 » Support » nUI: Technical Support » nUI and SexyMap?

Thread Tools
Display Modes

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