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?