View Single Post
08-20-11, 01:20 PM   #10
Aprikot
A Frostmaul Preserver
 
Aprikot's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2010
Posts: 284
Originally Posted by Haleth View Post
@ Game92; that's just the upload quality probably, I have multisampling at 8x.

@ Aprikot; That's awesome, thanks! Will try that out.

Edit: It works! So in my UI scaling script, I can just put that if the optimal scale is <.64.

You are my new hero.
Lol, shucks . It looks like there's already an addon here that uses this method onload...http://www.wowinterface.com/download...8-UIScale.html:

lua Code:
  1. local f = CreateFrame("Frame", nil, UIParent)
  2. f:RegisterEvent("PLAYER_ENTERING_WORLD")
  3. f:SetScript("OnEvent", function(self, event)
  4.     UIParent:SetScale(0.6)  -- change the size and reload your ui (/reloadui) or restart the game
  5.     f:UnregisterAllEvents()
  6. end)
  Reply With Quote