omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. Gerzer
    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 1
    • Followers 0
    • Topics 10
    • Posts 177
    • Best 15
    • Controversial 0
    • Groups 0

    Topics created by Gerzer

    • Gerzer

      Old Pythonista Xcode template
      Pythonista • template native app xcode appstore • • Gerzer

      27
      2
      Votes
      27
      Posts
      24477
      Views

      Webmaster4o

      @mrcoxall yes, it was discussed that this was created before the new scene module was in place.

    • Gerzer

      FTP sync
      Pythonista • sync share ftp • • Gerzer

      16
      2
      Votes
      16
      Posts
      13398
      Views

      Webmaster4o

      Compressing my entire library yeilds about 70MB… I don't think that in compressed form 2GB is realistic

    • Gerzer

      Spam on the forums
      Pythonista • • Gerzer

      19
      0
      Votes
      19
      Posts
      9257
      Views

      Gerzer

      I agree with @techteej and @dgelessus, but we may just be splitting hairs, I don't know. Anyway, I'm glad you were able to implement the changes, thanks. Also, I like that you increased the number of posts on the homepage from six to eight (including both apps). :)

    • Gerzer

      Servr - mobile edition 2.0
      Pythonista • • Gerzer

      1
      0
      Votes
      1
      Posts
      1159
      Views

      No one has replied

    • Gerzer

      Orga: a workflow for folding distracting text
      Editorial • • Gerzer

      3
      0
      Votes
      3
      Posts
      2147
      Views

      Gerzer

      Thanks! Text Focus looks cool.

    • Gerzer

      ui.in_background and threading with Xcode
      Pythonista • • Gerzer

      6
      0
      Votes
      6
      Posts
      3632
      Views

      JonB

      Did the delay example work for you in XCode?
      The alternative, of course, is to roll your own alert out of ui components, rather than using console.alert. One way I've done something similar is that you would have another alert view that covers the full screen, is partially transparent ( bg_color takes a 4tuple, and the fourth entry is alpha), and contains a subview which is the actual alert. Having the containing view full screen lets you implement a modal type dialog, by blocking touch events for anything underneath, without actually using wait_modal, which has its own problems sometimes. You need to make sure your new view is at the top of the view stack (added last for example), but then can use hidden to show or hide the alert.

    • Gerzer

      New modules and Xcode
      Pythonista • • Gerzer

      3
      0
      Votes
      3
      Posts
      2089
      Views

      Gerzer

      Thanks, I'll try that!

    • Gerzer

      Pythonista for iOS 7
      Pythonista • • Gerzer

      4
      0
      Votes
      4
      Posts
      2784
      Views

      Gerzer

      @omz: Thanks for the update!

    • Gerzer

      Scrolling in scene module
      Pythonista • • Gerzer

      10
      0
      Votes
      10
      Posts
      7104
      Views

      hroe139

      To satisfy my own curiosity, I added a simple implementation of inertial scrolling to Dalorbi's example:

      http://gist.github.com/henryroe/6724117

    • Gerzer

      Velocity Run
      Pythonista • • Gerzer

      8
      0
      Votes
      8
      Posts
      4361
      Views

      Gerzer

      @Sebastion, @ccc Thanks a lot! Using <PRE>self.level = 1</PRE> instead of <PRE>global level
      level = 1</PRE> worked perfectly.