omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. Jonstieg

    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 2
    • Posts 5
    • Best 0
    • Controversial 0
    • Groups 0

    Jonstieg

    @Jonstieg

    0
    Reputation
    616
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Jonstieg Unfollow Follow

    Latest posts made by Jonstieg

    • RE: How to select all text in text box on tap

      I did some more research and the problem seems to be that there is no selected_range method on the TextField. Is there an equivalent method that I'm missing? Thanks.

      posted in Pythonista
      Jonstieg
      Jonstieg
    • RE: How to select all text in text box on tap

      Thanks. This code works really well but I am having a tough time applying it to my code, which has TextFields. Here is a bit of my code, which uses a .pyui:

      import ui
      from functools import partial
      
      class golfApp(ui.View):
         ...
         def textfield_did_begin_editing(self, textfield):
             r = (0, len(textfield.text))
             ui.delay(partial(setattr, textfield, 'selected_range', r), 0)
         ...
      
      v=ui.load_view('golf')
      v.delegate = MyTextFieldDelegate()
      v.present(style='full_screen', orientations='portrait')     
      

      Any idea what I'm doing wrong? Thanks so much.

      posted in Pythonista
      Jonstieg
      Jonstieg
    • How to select all text in text box on tap

      I'd like to select all the text in a text box whenever I tap on it and I just can't find any information on how to do it.

      Is there a method to select/highlight all the text? Is there a way that I could simulate sending the Command + A keys?

      Thanks

      posted in Pythonista
      Jonstieg
      Jonstieg
    • Remove focus from text field/resign keyboard

      I have a UI with three text fields and one button. All three text fields use the Number Pad keyboard, which don't have a Return key to hide the keyboard.
      What I'm looking for is that when I tap the button, the text field that has the focus (one always does), loses focus. I don't know which text field will have the focus when the button is tapped.
      All the text field implement delegates.

      My first thought was to send a simulated return key with the button tap, but I couldn't figure out how to do this. I tried the textfielf.end-editing() with a couple of different delegate methods, but it didn't work.

      Can anybody suggest a way to remove the focus from a text field?
      Thanks

      posted in Pythonista
      Jonstieg
      Jonstieg
    • RE: Remove focus from text field/resign keyboard

      That's a very slick solution. I actually made a dummy text field, hid it behind another field, and set the focus to that on button press.

      Thanks so much. I push this app on people like a drug dealer. I love it.

      posted in Pythonista
      Jonstieg
      Jonstieg