View Single Post
02-08-12, 02:51 PM   #2
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Code:
RaidBossEmoteFrame:ClearAllPoints()
RaidBossEmoteFrame:SetPoint("BOTTOM", RaidWarningFrame, "TOP", 0, 10)
But, keep in mind that the UIErrorsFrame is above the RaidWarningFrame by default, so you may see some overlap unless you move that too.

Alternatively, you could just redirect the messages to the RaidWarningFrame:

Code:
local add = RaidNotice_AddMessage
RaidNotice_AddMessage = function(frame, ...)
    if frame == RaidBossEmoteFrame then
        return add(RaidWarningFrame, ...)
    else
        return add(frame, ...)
    end
end

Last edited by Phanx : 02-09-12 at 05:21 PM.
  Reply With Quote