View Single Post
11-25-07, 12:40 PM   #13
Elcarath
A Wyrmkin Dreamwalker
 
Elcarath's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2007
Posts: 50
Originally Posted by Mazzlefizz
What I'd suggest is anchoring it based on the minimap, like it originally was. In that way, it would work for all aspect ratios. I'm not sure why Ganders changed it be relative to the center of the screen. I usually avoided doing that whenever possible.
This is my first post so I hope I get the code and attachment right.
Just remove the Frame part, it should look like this:

Code:
	["MiniMapTracking"] = {
		["scale"] = 0.82,
If you want to keep the little Voice icon but move it up opposite of the Tracking icon, you can add the following:

Code:
 
	["MiniMapVoiceChatFrame"] = {
		["scale"] = 0.95,
		["location"] = {
			["y"] = -15,
			["x"] = -8,
			["point"] = "right",
			["frame"] = "Minimap",
			["to"] = "TOPLEFT",
		},
the full section should look like
Code:
	["MiniMapTracking"] = {
		["scale"] = 0.82,
		["location"] = {
			["y"] = -15,
			["x"] = 8,
			["point"] = "left",
			["frame"] = "Minimap",
			["to"] = "TOPRIGHT",
		},
	},
	["MiniMapVoiceChatFrame"] = {
		["scale"] = 0.95,
		["location"] = {
			["y"] = -15,
			["x"] = -8,
			["point"] = "right",
			["frame"] = "Minimap",
			["to"] = "TOPLEFT",
		},
	},
Attached Thumbnails
Click image for larger version

Name:	MiniMap.png
Views:	641
Size:	76.9 KB
ID:	1563  
  Reply With Quote