Thread Tools Display Modes
05-07-09, 06:51 AM   #1
simonharding
A Murloc Raider
Join Date: May 2009
Posts: 4
Group Calendar

My main reason for trying out nUI was to clean up my interface and have a larger game screen area...and that certainly seems to be the case.
The other reason was to minimise the number of clicks required to bring up the info you want - eg: Recount/Omen etc.

Whilst the Button Bag is handy in keeping all those pesky mini map shortcut links to add ons tucked away in one safe place, sometimes there are add on buttons you want to have access to all the time - but without having them all cluttered about.

One example of this is Group Calendar. If you are not familiar with this add on, it is similar to GEM (Guild Event Manager) but better in my opinion. Without nUI installed the add on replaces the Blizzard Calendar Icon and clicking opens up the add ons calendar screen. It also glows around the edges of the Icon when there is a new event set up.
Obviously with nUI installed you cant see this unless the button bag is open.
Currently I have a Macro button set up to access GC whenever I wish, without opening the button bag, but this doesnt solve the New Event Indicator problem.

So, I wondered whether it could be possible for the Bag Bar to have a couple of boxes so that add on mini map buttons could be permanently assigned - a bit like the action bars. You would still keep the majority hidden away in the Button Bag, but you might want a couple on the bar for easy access.
 
05-07-09, 06:58 AM   #2
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,960
You could also adjust the nUI_ButtonBag.lua file to exculde button bag control of your addon's button.

This is the default code for the section that you could change to suit:
Code:
local ButtonBagConfig = 
{	
	-- transient minimap buttons we want on the top row
	
	TopRow =
	{
		["MiniMapMeetingStoneFrame"] = 1,
		["MiniMapVoiceChatFrame"] = 1,
		["MiniMapRecordingButton"] = 1,
	},
	
	-- buttons we want to force ignore of
	
	Excludes = 
	{		
		["MiniMapMailFrame"] = 1,
		["MiniMapBattlefieldFrame"] = 1,
		["MinimapBackdrop"] = 1,
		["MiniMapPing"] = 1,
		["MiniMapCompassRing"] = 1,
		["MinimapZoomIn"] = 1,
		["MinimapZoomOut"] = 1,
		["MiniMapTracking"] = 1,
		["MiniMapWorldMapButton"] = 1,
		["GatherMiniNoteUpdateFrame"] = 1,
		["TimeManagerClockButton"] = 1,
		["FishingBuddyMinimapMenuButton"] = 1,
	},	
	
	-- buttons we want to force inclusion of
	
	Includes = 
	{		
		["WIM_IconFrame"] = 1,
		["CTMod2_MinimapButton"] = 1,
		["PoisonerMinimapButton"] = 1,
		["GameTimeFrame"] = 1,
		["MobMapMinimapButtonFrame"] = 1,
		["BaudGearMinimapButton"] = 1,
	},
	
	-- button name patterns to be excluded (mostly Minimap POI's)
	
	ExcludePatterns =
	{
		[1] = "GatherNote.",
		[2] = "CartographerNotes.",
		[3] = "GatherMatePin.",
		[4] = "FishingExtravaganza.",
		[5] = "RecipeRadarMinimapIcon.",
	},
	
	-- for a table of unnamed buttons we have to locate by object instance
	
	Unnamed =
	{
	},
	
	-- fixed button sizes for buttons that misreport their width (for scaling)
	
	ButtonSize =
	{
		["Enchantrix"] = 36,
		["FeedbackUIButton"] = 31,
	},
};
Come to think of it we could sort out the WIM animation problem by excluding that button as well. But anyways, I suspect including the respective variable in the exclude list you could get what you want.
 
05-07-09, 04:24 PM   #3
Dramber
A Chromatic Dragonspawn
 
Dramber's Avatar
Join Date: Nov 2008
Posts: 142
Have I ever mentioned I love you?
Thanks for finding this. The lack of my flashing calender button on new events was driving me a bit nuts.
__________________
"Polymorph skills... portal skills... mage table skills... Girls only want mages who have great skills!"

-Napoleon Dynamage
 
05-07-09, 05:30 PM   #4
neuralassassin
A Scalebane Royal Guard
 
neuralassassin's Avatar
Join Date: Sep 2008
Posts: 423
For anyone that uses fubar or titan or any other LDB bar there are quite a few that represent your calander so you can see new events and such. One is LDB events and another I believe is sidekick
__________________

 
05-07-09, 11:55 PM   #5
simonharding
A Murloc Raider
Join Date: May 2009
Posts: 4
Originally Posted by neuralassassin View Post
For anyone that uses fubar or titan or any other LDB bar there are quite a few that represent your calander so you can see new events and such. One is LDB events and another I believe is sidekick
Um - I cant find any reference to these anywhere...do you have links per chance?
 
05-08-09, 07:19 PM   #6
neuralassassin
A Scalebane Royal Guard
 
neuralassassin's Avatar
Join Date: Sep 2008
Posts: 423
there is this one http://wow.curse.com/downloads/wow-a...darevents.aspx
this one http://wow.curse.com/downloads/wow-a...ar_broker.aspx
and this onehttp://wow.curse.com/downloads/wow-a.../sidekick.aspx not sure if this last one shows when invites are pending but I believe the first two do
__________________

 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Suggestion Box » Group Calendar


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