omz:forum

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

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

    Jozh

    @Jozh

    4
    Reputation
    1253
    Profile views
    25
    Posts
    0
    Followers
    1
    Following
    Joined Last Online

    Jozh Unfollow Follow

    Best posts made by Jozh

    • RE: Is there a way to highlight text in editor and preview

      You can do it from the keyboard snippets.

      posted in Editorial
      Jozh
      Jozh
    • RE: BUG: Deadly sync problem erases data from open file

      https://forum.omz-software.com/topic/3040/lost-file-while-disconnected-from-wifi-then-reconnected

      posted in Editorial
      Jozh
      Jozh

    Latest posts made by Jozh

    • RE: Home screen Icon

      Open the script and hit the ranch button at the top of the screen.

      posted in Pythonista
      Jozh
      Jozh
    • RE: Duplicate/Copy a workflow

      Copy the workflow that you want as your template the hit the + button for making a new workflow. You should see an option that say From clipboard.

      posted in Editorial
      Jozh
      Jozh
    • RE: Workflow to append link list

      Append URLS

      posted in Editorial
      Jozh
      Jozh
    • RE: Is there a way to highlight text in editor and preview

      You can do it from the keyboard snippets.

      posted in Editorial
      Jozh
      Jozh
    • RE: List help

      Thanks you.

      posted in Pythonista
      Jozh
      Jozh
    • List help

      How do you make this work

      import dialogs
      
      text = '''the
      tree
      going'''
      
      
      
      dialogs.edit_list_dialog(title='', items= [text], move=True, delete=True)```
      posted in Pythonista
      Jozh
      Jozh
    • RE: How to specify folder when creating new file?

      editor.set_file_contents(name, new_contents[, root])
      Writes new data to the file with the given name (a relative path). If a file with this name exists, it is overwritten.

      Note that new_contents is a byte string, which means that you can also use this to write binary files (such as images), but if you write non-ASCII text, you have to encode it yourself.

      root can be either ‘local’ or ‘dropbox’. ‘local’ is the default.

      posted in Editorial
      Jozh
      Jozh
    • RE: iPad multitasking support

      The beta of Editorial has split-screen multitasking.

      posted in Editorial
      Jozh
      Jozh
    • RE: Writing to a File with python in editorial

      editor.get_file_contents(name[, root])
      Return the contents of a file in the document library. root can be either ‘local’ or ‘dropbox’. The default is ‘local’.

      Note that this returns a plain byte string. If you want to get the text of a file that contains unicode, you have to decode it yourself (Editorial saves text files as UTF-8).

      editor.set_file_contents(name, new_contents[, root])
      Writes new data to the file with the given name (a relative path). If a file with this name exists, it is overwritten.

      Note that new_contents is a byte string, which means that you can also use this to write binary files (such as images), but if you write non-ASCII text, you have to encode it yourself.

      root can be either ‘local’ or ‘dropbox’. ‘local’ is the default.

      posted in Editorial
      Jozh
      Jozh
    • RE: BUG: Deadly sync problem erases data from open file

      https://forum.omz-software.com/topic/3040/lost-file-while-disconnected-from-wifi-then-reconnected

      posted in Editorial
      Jozh
      Jozh