Results: 8Comments by: skyflash
File: Aloft11-12-10
Frame Border issues still there...
Posted By: skyflash
I still have the border issues... however, it looks like you are fixing them now. It seems every time the frame gets redrawn it gets fixed. So you obviously didn't find the source of the problem, but you are fixing it in a certain time interval. This makes it a lot better of course as the borders only stay broken for a short while...
File: Unit Frame Action Bars01-07-07
Re: Re: Re: Re: Re: Re: Error messages
Posted By: skyflash
Originally posted by Jasmeralia Ok. I looked at the DUF code and do not see support for ToTT. Do you know the name of the frame? I am sorry, the standard DUF does not support it.. just my personal copy does. I thought it did, but I obviously was wrong... I have been running a fork for some time now. :( I did however fix my d...
File: Unit Frame Action Bars01-07-07
Re: Re: Re: Re: Error messages
Posted By: skyflash
Originally posted by Jasmeralia Do you mean that DUF doesn't support ToTT? That's the impression I got from looking at the code. I'll add in code to track "unsupported" frames so they won't generate warnings. No, DUF does support it, but you did not put the line into your mod. If you look at your detect code, you will see that...
File: Unit Frame Action Bars01-06-07
Re: Re: Error messages
Posted By: skyflash
Originally posted by Jasmeralia Huh. Didn't think there was a problem with DUF support (I pulled the names from the code itself), but I'll take a look at that. Other people have already mentioned CTRA already, it's on the list. But there is.... you forgot to program one case... elseif (frame_type == FRAME_TOTT) then This...
File: Unit Frame Action Bars01-06-07
if (GetNumRaidMembers() > 0) then...
Posted By: skyflash
if (GetNumRaidMembers() > 0) then for i = 1, 40 do UFAB_AttachFrame("UFABRaid"..i.."BarFrame", UFAB_FrameName(FRAME_RAID, i, style_main), "raid"..i) end else for i = 1, 40 do getglobal("UFABRaid"..i.."BarFrame"):Hide() end end copy paste error in your raid code.... should be style_raid, not style_main. Sorr...
File: Unit Frame Action Bars01-06-07
Error messages
Posted By: skyflash
UFAB_AttachFrame: frame2 unknown, displaying UFABRaid11BarFrame I get the same message for target bars and all other raid bars. I do have CTRA and Discord Unit Frames installed. I don't have time right now, but when I get some I will fix it and tell you how I did it. Frame Names: DUF_FocusFrame DUF_TargetOfTargetFrame DUF_...
File: Unit Frame Action Bars01-06-07
How to get Frame Names
Posted By: skyflash
You write often that you didnt know the name of frames... there is an easy way to get them. Install Discord Frame Modifier (DFM) and use the frame finder it has included... it will give you the exact frame name with parent and children.... it's great. *g* There is an updated DFM version that works on 2.0, it's in the Discord ge...
File: Unit Frame Action Bars01-06-07
Little problems I encountered
Posted By: skyflash
Hi, nice addon...some small things.... 1. The translation for "Inner Fire" for german is "Inneres Feuer".. it would be nice, if you could include that one in your two IF clauses in the hacks section, so I don't have to add it myself every update. *g* Like... if (name == "Inner Fire" or name == "Inneres Feuer") then inn...