iOS font only displaying correctly on certain iPads
Posted: Thu Aug 20, 2015 9:49 am
I have two iPads I have put my app onto, one being an iPad 3 mini retina and the other an iPad 2. On the iPad 3 the font displays correctly, but not on the iPad 2. I also updated to the latest version of iOS on the iPad 2.
I've already followed this lesson in full: http://lessons.runrev.com/m/4069/l/2921 ... nts-on-ios
I have a button with the following:
The font I am looking to set the field to is Helvetica Neue UltraLight. When it cycles through the font changes, only this font does not display correctly (it appears too bold, even though bold is false). The font name is also listed in field "field" and the label is set to that font successfully at the start. I also copied all the ttf files of Helvetica Neue in the standalone settings.
Any ideas?
I've already followed this lesson in full: http://lessons.runrev.com/m/4069/l/2921 ... nts-on-ios
I have a button with the following:
Code: Select all
on mouseUp
answer the textFont of field "main_heading_label" -- ANSWERS Helvetica Neue UltraLight
answer the textstyle["bold"] of field "main_heading_label" -- ANSWERS false
put the fontnames into field "field"
sort field "field"
set the textFont of field "main_heading_label" to "Helvetica Neue Light"
wait two seconds
set the textFont of field "main_heading_label" to "Helvetica Neue UltraLight" -- THE OTHER TWO FONTS WORK, THIS ONE DISPLAYS BOLDER THAN IT SHOULD
wait two seconds
set the textFont of field "main_heading_label" to "Helvetica Neue"
end mouseUp
Any ideas?