Thread Tools Display Modes
04-02-13, 02:34 PM   #1
Kendian
A Molten Giant
 
Kendian's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 614
Loot Roll

Hello, all. Here's the thing. When I win a roll, the frame that pops up is directly over my action bars. I use teksloot, love it and no problem there. I tried using Xruptor's LootRollMover, same problem. Using /fstack gave me the name of the frame- LootRollFrame1. Any ideas how to adjust the placement of this? Without using a huge addon to move one frame?

It's not the frame that tells you what is there to roll on, it's the frame that tells you that you've won the roll, that I'd like to move. My thanks, in advance, for any/all help~
__________________
  Reply With Quote
04-02-13, 02:39 PM   #2
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
You might want to check out https://github.com/Ketho/wow-ui-sour...lertFrames.lua

Code:
function AlertFrame_SetLootWonAnchors(alertAnchor)
	for i=1, #LOOT_WON_ALERT_FRAMES do
		local frame = LOOT_WON_ALERT_FRAMES[i];
		if ( frame:IsShown() ) then
			frame:SetPoint("BOTTOM", alertAnchor, "TOP", 0, 10);
			alertAnchor = frame;
		end
	end
	return alertAnchor;
end
Btw, any chance of a PTR build?
  Reply With Quote
04-02-13, 04:57 PM   #3
Kendian
A Molten Giant
 
Kendian's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 614
I added that snippet to my minimap code and it works brilliantly. My thanks~
__________________
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Loot Roll

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