Combine selected points into one point



  • cool, thanks.


  • admin

    a progress bar example:

    from defconAppKit.windows.progressWindow import ProgressWindow
    
    # CurrentFontWindow is only available only in RoboFont 1.3
    from mojo.UI import CurrentFontWindow
    
    import time
    
    progress = ProgressWindow("my progress")
    time.sleep(2)
    progress.close()
    
    ## attach as sheet to a window
    progress = ProgressWindow("my progress", parentWindow=CurrentFontWindow().window())
    time.sleep(2)
    progress.update("action....")
    time.sleep(2)
    progress.close()
    
    ## with tickcount
    count = 20
    progress = ProgressWindow("my progress", tickCount=count)
    
    for i in range(count):
        time.sleep(.1)
        progress.update("action....%s" %i)
        
    progress.close()
    




  • Yes, you're right.


  • admin

    Alternately, RoboFont could add the root folder of the extension to the python path when it invokes a script from that extension.
    I’m not sure how you’re invoking extension scripts in Robofont…

    mm, I think this will be a mess after a while.

    It's already super easy to add a path to sys.path :)



  • Ah, I see what you mean.

    Alternately, RoboFont could add the root folder of the extension to the python path when it invokes a script from that extension.

    I'm not sure how you're invoking extension scripts in Robofont...

    Anyhow, I've reorganized the extension per your suggestion.

    Thanks


  • admin

    no, but you will have access to other python scripts and modules if they are on the same level or deeper
    (this isn't a limitation of RoboFont, this is default python behavior if the module isn't added to the site packages or sys.path)

    scripting Root
    - test.py          # test can import testFolder and all sub py files  
    - testFolder                 
      - __init__.py
      - otherFile.py   # otherFile can not import test.py or otherTestFolder
    - otherTestFolder
      - __init__.py
    

    hope this makes sense



  • Hmm, I'm not sure I understand.

    You're saying that any script that corresponds to a menu item needs to be in the root folder (ie. the "script root" in the Extension Builder)?


  • admin

    He

    cool!

    Move your scripts that have callbacks from the menu to the root folder.
    From there you can import everything inside a RoboFont extension.



  • I've written an extension that does this.

    https://github.com/charlesmchen/robofont-extensions-and-scripts

    If its not what you had in mind, or if you have any other ideas for extensions, let me know.

    I'm not yet satisfied with how it updates control points adjacent to "merged" points.



  • It would also be an excellent native function…


  • admin

    That would be an excellent extension :)