View Single Post
01-05-06, 08:08 AM   #1
cylan
A Deviate Faerie Dragon
Join Date: Jan 2006
Posts: 10
how to change font size in message frame ?

got a bigger monitor and want to make spell alert messages stand out more ...

i assume i have to adjust the font size for the AlertFrame but i cant for the life of me figure out how to do it.

code snippet in question would be this:

Code:
<MessageFrame name="AlertFrame" insertMode="TOP" parent="UIParent" frameStrata="HIGH" toplevel="true">
		<Size>
			<AbsDimension x="512" y="60"/>
		</Size>
		<Anchors>
			<Anchor point="TOP">
				<Offset>
					<AbsDimension x="0" y="-200"/>
				</Offset>
			</Anchor>
		</Anchors>
		<Scripts>
            <OnLoad>
                SpellAlert_OnLoad()
            </OnLoad>
            <OnEvent>
                SpellAlert_OnEvent()
            </OnEvent>
			<OnUpdate>
				SpellAlert_OnUpdate();
			</OnUpdate>
		</Scripts>
		<FontString inherits="ErrorFont" justifyH="CENTER"/>
		
	</MessageFrame>

Last edited by cylan : 01-05-06 at 08:11 AM.
  Reply With Quote