CleanMinimap
A clean square or round minimap that replaces the default minimap. Cleans up default buttons and rearranges them. The minimap and buttons can be individually scaled and various portions of the map can be hidden. CleanMinimap uses the Rock library and can be configured through AddOn Preferences. Rock is included in the regular package.
The only thing missing from this addon is the ability to open the calendar. Other than that, awesome.
I agree! My raid leader is going to kick me if I keep forgetting to accept the raid invites. Since I do not see the calendar alerts.
Quick and dirty quick fix, no buttons or anything but you can middle click on the map to open/close the calendar. Until you have some time to do it like the other buttons.
--Make map movable on ALT click.
MinimapCluster:SetMovable(true)
Minimap:SetScript("OnMouseDown", function(self, button)
if button == "MiddleButton" then
if (not IsAddOnLoaded("Blizzard_Calendar")) then
UIParentLoadAddOn("Blizzard_Calendar");
end
if ( CalendarFrame:IsShown() ) then
HideUIPanel(CalendarFrame);
else
ShowUIPanel(CalendarFrame);
end
elseif (IsAltKeyDown()) then
MinimapCluster:ClearAllPoints()
MinimapCluster:StartMoving()
else
Minimap_OnClick(getglobal("Minimap"))
end
end)
This AddOn is now updated to fix bugs and several icons that needed cleaned up.
--Alexia
http://www.nonamestudios.com/
Will it be possible to move and hide the quest tracking frame in the future?
Thanks!
Hey Azxiana, first I have to say that this is a great addon, I loved it from day one. There's just one little thing - it would be nice if I could disable the minimap icon for this addon. I don't use a Fubar, and it would be great if I could hide the last Button from this beautiful Minimap ;-). Greeting from Germany again, and sorry for my bad english. Lin
I like the addon too, but the inability to turn off the minimap icon sort of makes a not cleanminimap =]
Will we have that feature soon?
It would be nice if we could disable the minimap icon for this addon and be able to set the tracking, mail and other blizzard icons to be below the minimap.
http://www.wowace.com/projects/cleanminimap/files/49-r28/
It has quite a few fixes, but no enhancements for the calendar yet.