Page 1 of 1

antialiasing

Posted: Sat Jan 29, 2011 2:24 am
by jaibon
Hi!

I am trying to get a good antialiasing for all the texts in my standalone application and I don't know where to adjust the settings or make them be more refined. Right now every letter looks pretty weird.
I am using Arial everywhere and saving as a standalone application for Windows.

Any clues in how to make the texts look nice?

Thanks!!

Re: antialiasing

Posted: Sat Jan 29, 2011 3:04 am
by deebee
Set your font to segoeUI 12pt for Vista and 7. I believe the the default UI font in XP is Tahoma. I had the same jaggy issues when compiling for windows using Arial.

Re: antialiasing

Posted: Wed Feb 02, 2011 2:50 am
by RRobert

Code: Select all

 switch the platform
          
      case "MacOS"
         set the textFont of this stack to "Lucida Grande"
         set the textSize of this stack to "13"
         break
          
      case "Win32"
         if the systemVersion = "NT 5.1" then
            set the textFont of this stack to "Tahoma"
            set the textSize of this stack to "11"
         else
            set the textFont of this stack to "Segoe UI"
            set the textSize of this stack to "12"
         end if
         break
          
      case "Linux"
         set the textFont of this stack to "Helvetica"
         set the textSize of this stack to "12"
         break
          
   end switch
Robert