http://www.wowinterface.com/download...age=5#comments

When I realized the strata limitation, I poked around the code and saved variables. I noticed that there's an option for strata which can be modified by "strata:BACKGROUND/LOW/MEDIUM/HIGH/DIALOG" in an import string. This really didn't change anything though because the aura would still be shown as "BACKGROUND" using fstack inspection.

Adjusting this function seemed it allow the strata to work right using the strata option when importing an aura

Code:
Code:
function PowaAuras:ShowAuraForFirstTime(aura)
...
    if (aura.strata ~= "LOW") then
        frame:SetFrameStrata(aura.strata);
    else
        frame:SetFrameStrata("BACKGROUND");
    end
...
end
Here's a working example of the current power auras working with the saved strata option.

http://www.youtube.com/watch?v=OBtyMlJNe8k&hd=1