omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. starrshaw
    3. Posts

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

    Posts made by starrshaw

    • Show Keyboard Forever (How?)

      Hi, this might be an strange question. But is there a way to Show the keyboard on and keep it shown?

      Thanks!

      posted in Pythonista
      starrshaw
      starrshaw
    • RE: Detect A RETURN keypress to run function.

      Thanks dgelessus! That works great!

      posted in Pythonista
      starrshaw
      starrshaw
    • RE: Detect A RETURN keypress to run function.

      Hi dgelessue, thanks!

      I already get input from a user via a ui TextField and pass to a function when a Button is pressed, which works fine. But, just in case a user wanted to use the keyboard instead of the button, I wanted to have an option to press a Return Key..

      posted in Pythonista
      starrshaw
      starrshaw
    • Detect A RETURN keypress to run function.

      Hi All, I hope you are all having a great holiday! If you like me you having fun with your iPad and Pythonista!

      I have been looking everywhere and can not find a way to detect a RETURN keypress to run a function. Do not know if that is OS specific or not...

      ?

      Thanks!

      posted in Pythonista
      starrshaw
      starrshaw
    • RE: How to tell a TextView to scroll?

      Here is the only function you need to do the TextView scroll. The function will just read your 'textview' content and offset. Works great!

      def scroll():
      v['textview1'].content_offset = (0, v['textview1'].content_size[1] -v['textview1'].height)

      posted in Pythonista
      starrshaw
      starrshaw
    • RE: How to tell a TextView to scroll?

      Thanks Abcabc!

      posted in Pythonista
      starrshaw
      starrshaw
    • How to tell a TextView to scroll?

      Hi, I have info printing into text view.. but as I append new data it will not scroll the textview.. but just show 1 line of the new data and you have to scroll to see the rest manually with a finger scroll. Is there any way to fix this or am I stuck?

      posted in Pythonista
      starrshaw
      starrshaw
    • RE: Print Console in TextView or ScrollView

      Thanks guys! Both these ideas worked great!

      posted in Pythonista
      starrshaw
      starrshaw
    • RE: Print Console in TextView or ScrollView

      @JonB Thanks Jon, I was about to use stash, but I wanted to have some graphics and sound sort of like the Commodore 64 Fahrenheit 451 text adventure. https://www.youtube.com/watch?v=OGu_Urn4hek

      posted in Pythonista
      starrshaw
      starrshaw
    • Print Console in TextView or ScrollView

      Hi, I am making a little old school text adventure and was just wondering if there was a way to have the console print out into UI TextView or ScrollView?

      posted in Pythonista
      starrshaw
      starrshaw
    • RE: Sound effect not stopping

      Thanks Cethric! That was it!

      posted in Pythonista
      starrshaw
      starrshaw
    • Sound effect not stopping

      Hi, can anyone please help me with this sound issue... my sound plays fine, but will not stop. I tried many different solutions but just can not get the play to stop.

      import sound, time
      y = "room_One.mp3"
      x = sound.play_effect(y)
      sound.play_effect(y)
      time.sleep(5)
      sound.stop_effect(x)

      posted in Pythonista
      starrshaw
      starrshaw