View Single Post
06-22-10, 07:22 PM   #11
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,935
Okay, got it reasonably working with just nUI5 with the following changes and the screenshot below is the result.

If you try and manually move the chatframe it won't let you fill up the whole area nUI assigns to the chatframe. I believe this is due to how the new frames are built which I haven't managed to figure out yet myself.

But here are the changes I made to make it work for those industrialists out there

In nUI\Layouts\Default\InfoPanels\nUI_InfoPanel_CombatLog.lua

Lines : around 250 and 405

Change these lines in both areas :
--local bottom = _G["ChatFrame2BottomButton"];
--local down = _G["ChatFrame2DownButton"];
--local up = _G["ChatFrame2UpButton"];
To
local bottom = _G["ChatFrame2ButtonFrameBottomButton"];
local down = _G["ChatFrame2ButtonFrameDownButton"];
local up = _G["ChatFrame2ButtonFrameUpButton"];

This will fix the problem on the right hand side

In nUI\Integration\nUI_ChatFrame.lua
Lines : around 180

Change these lines
--local bottom = _G["ChatFrame"..i.."BottomButton"];
--local down = _G["ChatFrame"..i.."DownButton"];
--local up = _G["ChatFrame"..i.."UpButton"];
To these lines
local bottom = _G["ChatFrame"..i.."ButtonFrameBottomButton"];
local down = _G["ChatFrame"..i.."ButtonFrameDownButton"];
local up = _G["ChatFrame"..i.."ButtonFrameUpButton"];

This will fix the left hand side, somewhat

Until we figure out how to play with their new code it may be all we have until Scott can tweak the code more.
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_062310_021544.jpg
Views:	862
Size:	244.9 KB
ID:	4466  
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818