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!!
			
			
									
									
						antialiasing
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: antialiasing
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
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