View Single Post
07-26-22, 02:02 AM   #6
kuli2145636
A Murloc Raider
Join Date: Jul 2022
Posts: 4
Originally Posted by Fizzlemizz View Post
You could do something like:
Lua Code:
  1. local function SizeName(self)
  2.     local font, size = self.name:GetFont()
  3.     self.name:SetFont(font, size-2)
  4. end
  5. SizeName(PlayerFrame)
  6. SizeName(TargetFrame)
  7. for i=1, 4 do
  8.     SizeName(_G["PartyMemberFrame"..i])
  9. end

Add additional unit frames to size. Adjust the size to your liking.

You can play with the naming and turn it into a macro or copy/paste to addon.bool.no to create/download as a small addon that will run when you log in.

SizeName(TargetofTargetFrame)
SizeName(FocusFrame)

I tried adding this but they didn't work.how should i do? Thank you very much.

Last edited by kuli2145636 : 07-26-22 at 05:28 AM.
  Reply With Quote