omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular

    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.


    Keyboard switch.

    Pythonista
    5
    116
    51817
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • cvp
      cvp @shinya.ta last edited by

      @shinya.ta said:

      When you press "⏩", the following screen will be displayed.

      You are right, next version will correct it

      1 Reply Last reply Reply Quote 0
      • cvp
        cvp @shinya.ta last edited by cvp

        @shinya.ta said:

        The copy button doesn't work well.

        As described in the keyboard module doc, to copy to clipboard, you have to
        authorize full access in
        Settings/Pythonista3/Keyboards/Authorize Full Access

        shinya.ta 1 Reply Last reply Reply Quote 0
        • cvp
          cvp @shinya.ta last edited by

          @shinya.ta New version

          1 Reply Last reply Reply Quote 0
          • shinya.ta
            shinya.ta @cvp last edited by

            @cvp

            I had a full access, but the copy button is invalid.
            I can't paste it.

            cvp 1 Reply Last reply Reply Quote 0
            • cvp
              cvp @shinya.ta last edited by

              @shinya.ta Very strange. For me, all is ok.
              Sure you had already "full access" before or you have just set it on?
              If just set, please remove (NOT UNINSTALL) Pythonista from active apps and restart it.
              Sure you select something in the text, try first with normal copy in popup menu of select.
              Then, select something else and copy via our keyboard

              shinya.ta 1 Reply Last reply Reply Quote 0
              • shinya.ta
                shinya.ta @cvp last edited by

                @cvp

                You can't use it on email software or LINE that you often use.
                I was able to use it in the text view of the previous cursor moving application.

                cvp 2 Replies Last reply Reply Quote 0
                • cvp
                  cvp @shinya.ta last edited by

                  @shinya.ta Are you sure that you have installed the last version?
                  If yes, the ⏩ key should work fine.
                  If it does not work, then you should have forgotten to install the last version.

                  If yes, I want to be sure that that you hope that the "copy" button copies TO the clipboard, and does not perform a paste FROM the clipboard.

                  1 Reply Last reply Reply Quote 0
                  • cvp
                    cvp @shinya.ta last edited by cvp

                    @shinya.ta said:

                    I was able to use it in the text view of the previous cursor moving application.

                    The previous cursor moving application was a "full Pythonista" application and did not need this setting "full access" but this is a keyboard application and needs to be authorized to copy some selected text (from Email by example) to the Clopboard.

                    I'm not sure but it is possible that, if you modify a setting, you need to restart (NOT REINSTALL) Pythonista, that will say remove it from the active apps and recall it.
                    Did you do that?

                    new version with check full access
                    this is the same version but the title of the copy button will be "no full" if Pythonista setting "full access" is off

                    shinya.ta 1 Reply Last reply Reply Quote 0
                    • shinya.ta
                      shinya.ta @cvp last edited by

                      @cvp

                      I restarted.
                      But it wasn't good.
                      It was the same as the previous cursor moving application, and it was the same as when I was using the Japanese voice. It was normal on my wife's iPhone.
                      But it wasn't good on my iPhone.
                      It is certain that it is slightly different depending on the device.

                      cvp 1 Reply Last reply Reply Quote 0
                      • cvp
                        cvp @shinya.ta last edited by

                        @shinya.ta I hope you have installed the new version.
                        And do you see the text "copy" or "no full"?

                        shinya.ta 1 Reply Last reply Reply Quote 0
                        • shinya.ta
                          shinya.ta @cvp last edited by

                          @cvp

                          Is the new version "330015"?

                          cvp 2 Replies Last reply Reply Quote 0
                          • cvp
                            cvp @shinya.ta last edited by cvp

                            @shinya.ta I speak of the new version of the Pythonista script...Emojis keyboard

                            And stay in 330014

                            1 Reply Last reply Reply Quote 0
                            • cvp
                              cvp @shinya.ta last edited by

                              @shinya.ta could you test this little script as keyboard and tell me if you
                              get "qwerty" if tap on "copy" and the tap paste key

                              import keyboard
                              import clipboard
                              import ui
                              v = ui.View()
                              b = ui.Button()
                              b.frame = (2,2,60,32)
                              b.title = 'copy'
                              def b_action(sender):
                              	t = 'qwerty'
                              	clipboard.set(t)
                              b.action = b_action
                              v.add_subview(b)
                              keyboard.set_view(v, 'expanded')
                              
                              shinya.ta 1 Reply Last reply Reply Quote 0
                              • shinya.ta
                                shinya.ta @cvp last edited by

                                @cvp

                                https://imgur.com/a/4vf330P

                                I did a test. There is an error.

                                cvp 1 Reply Last reply Reply Quote 0
                                • cvp
                                  cvp @shinya.ta last edited by

                                  @shinya.ta Check your script, you forgot the first line "import keyboard" 😢

                                  shinya.ta 1 Reply Last reply Reply Quote 0
                                  • shinya.ta
                                    shinya.ta @cvp last edited by

                                    @cvp

                                    I'm sorry.
                                    I was wrong. I was able to paste it.

                                    https://imgur.com/a/6XBKWuG

                                    cvp 1 Reply Last reply Reply Quote 0
                                    • cvp
                                      cvp @shinya.ta last edited by cvp

                                      @shinya.ta Then the problem you have is not due to the device.
                                      I think you did something wrong.
                                      Please,

                                      1. set setting/Pythonista/keyboards/authorize full access to OFF

                                      2. close the keyboard app

                                      3. choose Emojis Keyboard

                                      The script should show the copy button with "no full" as title

                                      Tell me

                                      Be careful, sometimes we need to close a keyboard, choose another one, close it and re-choose the tested one...
                                      A keyboard seems to stay a little bit too long in memory

                                      shinya.ta 1 Reply Last reply Reply Quote 0
                                      • shinya.ta
                                        shinya.ta @cvp last edited by

                                        @cvp

                                        I'm sorry.
                                        I don't understand the meaning of the Emoji keyboard.

                                        cvp 2 Replies Last reply Reply Quote 0
                                        • cvp
                                          cvp @shinya.ta last edited by cvp

                                          @shinya.ta ok, sorry, that's the name I gave to this keyboard...

                                          1 Reply Last reply Reply Quote 0
                                          • cvp
                                            cvp @shinya.ta last edited by cvp

                                            @shinya.ta Forget the last check that I have asked. If the little script for copy "QWERTY" works fine, that will say that the setting "full access" is ON thus my last request is useless.
                                            Sorry.

                                            Thus, the only reason I still see for the problem of copy is that you could have not installed the last version of my script. here

                                            shinya.ta 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Powered by NodeBB Forums | Contributors