View Single Post
05-16-10, 01:18 AM   #2
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,934
ah you can get on PTR now ? I tried a few times before the weekend started with no luck .. will jump in there on Monday then

But yeah, the chat frame section will probably need changing due to the changes they've incorporated.

Yep. This is a portion of the FloatingChatFrame.xml file for 3.3.3 :

Code:
<ScrollingMessageFrame name="FloatingChatFrameTemplate" movable="true" enableMouse="false" resizable="true" inherits="ChatFrameTemplate" parent="UIParent" hidden="true" virtual="true">
	<Frames>
		<Button name="$parentBottomButton">
	</Frames>	
</ScrollingMessageFrame>
And this is the same Template in 3.3.5 version of the same file :
Code:
<ScrollingMessageFrame name="FloatingChatFrameTemplate" movable="true" enableMouse="false" resizable="true" inherits="ChatFrameTemplate,FloatingBorderedFrame" parent="UIParent" hidden="true" clampedToScreen="true" dontSavePosition="true" virtual="true">
	<Frames>
		<Frame name="$parentButtonFrame" inherits="FloatingBorderedFrame" parentKey="buttonFrame" alpha="0.2">
			<Frames>
				<Button name="$parentBottomButton" parentKey="bottomButton">
			</Frames>
		</Frame>
	</Frames>
</ScrollingMessageFrame>
From memory of looking at the code it should be an easy enough change. I will need to do it to my char frame addons as well so I'll know for sure once I've fixed and tested those.
__________________


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

Last edited by Xrystal : 05-16-10 at 01:30 AM.