Thread Tools Display Modes
03-27-11, 05:22 PM   #1
maltese
A Wyrmkin Dreamwalker
 
maltese's Avatar
AddOn Author - Click to view addons
Join Date: May 2009
Posts: 54
Changing scale on default blizzard "Changed Target"

I recently built a new computer and I am running a triple monitor setup. My screens resolution is 6000*1080 due to using bezel correction. This has resulted in the standard blizzard chat bubbles and on screen notification of something targeting me, changing targets or losing agro to be absolutely gigantic. Does anyone know of a way to change the scale of these?
  Reply With Quote
03-27-11, 06:31 PM   #2
Duugu
Premium Member
 
Duugu's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2006
Posts: 851
Chat bubbles are frames. They are rendered into the WorldFrame.

Say something and then try

Code:
for i = 2, WorldFrame:GetNumChildren() do 
	local frame = select(i, WorldFrame:GetChildren()) 
	local tregion = select(11, frame:GetRegions()) -- regions 1 to 10 are the bubble textures
	if tregion:GetObjectType() == "FontString" then
		print(tregion:GetText())
	end
end
(guess deactivating the nameplates while trying this would be helpfull)

As you can see the are accessible. Must be possible to resize or scale them.

Last edited by Duugu : 03-27-11 at 06:36 PM.
  Reply With Quote
03-27-11, 09:04 PM   #3
maltese
A Wyrmkin Dreamwalker
 
maltese's Avatar
AddOn Author - Click to view addons
Join Date: May 2009
Posts: 54
I actually solved the chat bubble issue by using a pretty nice chat bubble skinning mod. I still have the "blizzard combat text" notifications that something is targeting me, changed target or I'm losing threat. I say combat text in quotes because I actually have combat text turned off and I am still getting those notifications, so I'm not sure what those notifications are from.

Would the same method you listed above work for that?
  Reply With Quote
03-27-11, 11:19 PM   #4
Aprikot
A Frostmaul Preserver
 
Aprikot's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2010
Posts: 284
Originally Posted by maltese View Post
I say combat text in quotes because I actually have combat text turned off and I am still getting those notifications, so I'm not sure what those notifications are from.
It's a part of damage text that can't be turned off unfortunately. One solution is to hide it with something like xDamageFont using a blank font file. In xDamageFont.lua change the below path to a path to your blank font file (or name & locate blank file to below).

Code:
local damagefont_FONT_NUMBER = "Interface\\AddOns\\xDamageFont\\Fonts\\damagefont.ttf";
  Reply With Quote
03-28-11, 08:30 AM   #5
maltese
A Wyrmkin Dreamwalker
 
maltese's Avatar
AddOn Author - Click to view addons
Join Date: May 2009
Posts: 54
thank you so much! I'll check that out and see if I can just change the scale through that addon. I don't necessarily want to get rid of it, just make it a LOT smaller
  Reply With Quote

WoWInterface » Developer Discussions » Lua/XML Help » Changing scale on default blizzard "Changed Target"

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off