Making fontWeight work?
I'm using the fontWeight method to try to set the font of a text field to bold.
I loop through all the fields, and let's say the field I'm looking to make bold is called "Number":
loop
{
get name //cFieldName
get field of name //oField
if(cFieldName == "Number"){oField,fontWeight = 700;}
}
in the javascript API manual it says fontWeight 700+ is considered bold, but when the script runs without errors, it doesn't change the font weight at all. I'm editing fontSize and textFont in the same script and they work, so it's not a question of the structure of the script, I don't think.
