View Single Post
04/16/14, 05:20 PM   #3
Kith
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 49
If you want to really mess with fonts and choices you can go the next step up and use:
Lua Code:
  1. label:SetFont(strformat('%s|%d|%s', <PATH-TO-FONT>, <FONT-SIZE>, <FONT-STYLE>))
  2.  
  3. local fontConfig = strformat('%s|%d|%s', LMP:Fetch('font', db.overlays.font), 16, 'soft-shadow-thick')
  4.     -- as an example
Lets you use one of the built-in font files (zgoo shows them and Seerah's link) then can set size and border style as well to any of the options).
  Reply With Quote