omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. skrohmer
    3. Topics

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    • Profile
    • Following 0
    • Followers 0
    • Topics 8
    • Posts 21
    • Best 1
    • Controversial 0
    • Groups 0

    Topics created by skrohmer

    • skrohmer

      CoreMIDI
      Pythonista • • skrohmer

      1
      0
      Votes
      1
      Posts
      1260
      Views

      No one has replied

    • skrohmer

      Image extension does not work anymore
      Pythonista • • skrohmer

      4
      0
      Votes
      4
      Posts
      2883
      Views

      JonB

      Luckily all of the appex examples are in Documents/Examples, and are editable!

    • skrohmer

      Scene destructor
      Pythonista • • skrohmer

      3
      0
      Votes
      3
      Posts
      2145
      Views

      skrohmer

      Thanks, I will try this. I was so focused on the word 'destructor' that I missed them.

    • skrohmer

      Sharing extension with arguments does not start
      Pythonista • • skrohmer

      6
      0
      Votes
      6
      Posts
      3995
      Views

      cook

      Wow... I just need to sleep. Sorry guys. I now see the problem too...!

    • skrohmer

      Exception when opening ui.View using popover style
      Pythonista • view exception popover • • skrohmer

      12
      0
      Votes
      12
      Posts
      8507
      Views

      cvp

      I think that at each touch_began run, you create a new instance of ui.View, without deleting the previous one! Not vital but not the deal, I suppose.

    • skrohmer

      WebView navigation buttons
      Pythonista • • skrohmer

      3
      0
      Votes
      3
      Posts
      2540
      Views

      skrohmer

      OK, done. :-)

      quick&dirty (hopefully not very dirty ;-), but if you find some things to optimize please tell me):

      import ui class MyWebView(ui.View): def __init__(self, url): self.width, self.height = ui.get_window_size() self.wv = ui.WebView(frame=self.bounds) self.wv.load_url(url) self.add_subview(self.wv) bi_back = ui.ButtonItem(image=ui.Image.named('iob:ios7_arrow_back_32')) bi_forward = ui.ButtonItem(image=ui.Image.named('iob:ios7_arrow_forward_32')) bi_back.action = self.go_back bi_forward.action = self.go_forward self.right_button_items = [bi_forward, bi_back] self.present() def go_back(self, bi): self.wv.go_back() def go_forward(self, bi): self.wv.go_forward() wv = MyWebView('https://forum.omz-software.com')
    • skrohmer

      Appex and user modules
      Pythonista • • skrohmer

      6
      0
      Votes
      6
      Posts
      4825
      Views

      chibill

      Yes it's a bug an extension should still import following how it normally does.

    • skrohmer

      motion library
      Pythonista • level compass motion • • skrohmer

      3
      0
      Votes
      3
      Posts
      2879
      Views

      skrohmer

      Thanks a lot. Especially "CMMotionManager" mentioned in the document was a very good keyword for further searches. :-)