Compile features trough code

Is possible to trigger the compile feature function trough code?

It should be, but the code had an issue that made it not play well with the python bridge.
With the next update you can do this:

error = Font.compileTempFontError_(None)[1]
if error != None:
    print error.userInfo()
2 Likes

thanks.