Combine selected points into one point

RoboFont Forums Enhancements Combine selected points into one point

This topic contains 17 replies, has 4 voices, and was last updated by  frederik 8 years, 4 months ago.

Viewing 3 posts - 16 through 18 (of 18 total)
  • Author
    Posts
  • #4150

    charlesmchen
    Participant

    oh, I get it. You call progress.update() count times: that’s why there’s not int argument.

    #4151

    charlesmchen
    Participant

    Hmm, the help() built-in function doesn’t work in the RoboFont scripting window.

    from defconAppKit.windows.progressWindow import ProgressWindow
    print dir(ProgressWindow)
    help(ProgressWindow.update)
    

    Yields:

    NameError: name 'help' is not defined

    #4165

    frederik
    Keymaster

    yeah, help is great, didn’t know it was available. This will be added in the next version.

    thanks

    ps: a small workaround:

    from defconAppKit.windows.progressWindow import ProgressWindow
    import pydoc
    ## this is actually happening in the built-in 'help'
    pydoc.help(ProgressWindow.update)
    
Viewing 3 posts - 16 through 18 (of 18 total)

You must be logged in to reply to this topic.