Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Solved
    • Unsolved
    1. Home
    2. Tags
    3. mojo.ui
    Log in to post

    • StephenNixon

      SOLVED Is it possible to export to from Space Center to a multi-page or tall-page PDF?
      General Questions • space center mojo.ui • • StephenNixon  

      13
      0
      Votes
      13
      Posts
      581
      Views

      gferreira

      @StephenNixon this will give you the current width & height of the Space Center window: from mojo.UI import CurrentSpaceCenter (x, y), (w, h) = CurrentSpaceCenter().getNSView().bounds() print(w, h)
    • RafaŁ Buchner

      SOLVED is there a way to convert defcon glyph object to RGlyph?
      General Questions • scripting fontparts defcon mojo.ui • • RafaŁ Buchner  

      2
      0
      Votes
      2
      Posts
      228
      Views

      gferreira

      hi Rafał, I’ve been there too :) you can wrap an RGlyph around a defcon glyph, like this: for glyphWindow in AllGlyphWindows(): # get RGlyph from defcon glyph g = RGlyph(glyphWindow.getGlyph()) # do stuff using the FontParts API print(g[0].points) succes!
    • anya

      SOLVED How to make StatusInteractivePopUpWindow active by default
      General Questions • user interaction vanilla mojo.ui • • anya  

      3
      0
      Votes
      3
      Posts
      340
      Views

      anya

      Thank you so much, Gustavo!
    • RafaŁ Buchner

      UNSOLVED Tracking “resize” event for current glyph window?
      General Questions • scripting vanilla events mojo.ui • • RafaŁ Buchner  

      2
      0
      Votes
      2
      Posts
      304
      Views

      frederik

      this brings a very old issue back... https://github.com/robotools/vanilla/blob/master/Lib/vanilla/vanillaWindows.py#L465-L466 follow up here