Tizen's virtual IME keyboard disappears - keyboard

I import an EnyoJS project for WebOS platform into Tizen Studio, then I ran it in a Samsung TV and there is this little problem:
When I click on a text field the virtual keyboard shows up in the TV screen, then if I click on a letter the keyboard goes down.. The letter does appear in the text field but I have to press on it again to make the keyboard shows up and press on the next letter. So I have to repeat this over and over just to write a whole word
How to fix this?
UPDATE 1:
It seems like it only happens with the Input kind component. I have some other panels with TextArea component and the keyboard works fine.

Related

Enabling keyboard shortcuts to confirm Dialogs in AppleScript

I am looking for a way to allow a user to complete a Dialog entry using keyboard shortcuts. Is this possible?
Other questions have discussed assigning shortcuts to the options in an AppleScript dialog box, but not to the "Continue"/"Okay" etc. button.
The main difficulty is that I'm using a multi-line text entry form, so the Enter button simply creates a new line, instead of targeting the default button as it would conventionally. I'm hoping cmdenter can be assigned to the default button instead.
The line of script defining the dialog in question is:
set theResponse to display dialog "Enter tasks:" default answer "
" buttons {"Cancel", "Continue"} default button "Continue"
Running your AppleScript code from Script Editor on a US English MacBook Pro, whether or not something is typed in, fnenter presses the Continue button.
The same keyboard shortcut works on an US English Apple Magic Keyboard when connected to the MacBook Pro and I'd assume any US English Mac it was connected to would do the same. I only have the MacBook Pro to test with at the moment.
In macOS, by default, pressing the tab key in this use case will not move between the controls as the controlling setting in System Preferences > Keyboard > Shortcuts is not set to allow it to act on all controls.
You must select one of the following options, depending on the version of macOS one is running, in order to use the tab key on all controls.
If you see:
Full Keyboard Access: In windows and dialogs, press Tab to move keyboard focus between:
(•) Text boxed and lists only
( ) All Controls
Select: (•) All Controls
If you see:
[] Use keyboard navigation to move between controls
Press the Tab key to move focus forward and Shift Tab to move focus backward.
Check: [√] Use keyboard navigation to move between controls
With this done, one can then use tabtabenter to press the continue button, with the dialog box produced by the code shown in the OP.
Side Note: One can also try fncommandenter as that was necessary from within a VMware macOS Catalina virtual machine that I also tested in.
⌘-Enter (on the numeric keypad) presses Continue
If you are in a multiline text field, hit the Tab key so that focus is on some element other than the text field. Then the Enter key should route properly to the dialog's default close button.

Python Kivy On Screen Keyboard Focusing on Field

I am trying to make an on screen keyboard with Kivy, and I need a recommendation for how to go about it. I need to find out how to have the field that I want to type into focused, and have my Kivy window still functional. My code currently only generates the keyboard structure. Pressing on the key does nothing.
I have tried some of the win32 libraries, but I did not understand them very well.
Now, if I select the field I want and press a button on the keyboard, the Kivy window is now in focus so the letter doesn't go to the field.
Any help would be appreciated!

Virtual keyboard not showing in iOS simulator VS Mac

The virtual keyboard in the simulator is not showing when I focus on a text field.
It showed the first time I clicked inside the text field but subsequent clicks in the text field do not bring up the virtual keyboard.
This is happening for the IPhone 6 to iPhone X simulators.
I'm using Visual Studio Mac.
It would appear the simulator detected my Macs keyboard, so it no longer shows the virtual keyboard.
How can I fix this so that the virtual keyboard shows whenever I interact with a control that accepts text input.
Solution
In the top menu bar of the simulator I had to turn "Connect Hardware Keyboard" off.
I got there by going to Hardware -> Keyboard -> Connect Hardware Keyboard

How to copy error message in Android Studio tooltip

How can you select or copy the error tooltips that appear when hovering over code in Android Studio?
For example:
Is there a key command? I'm on Mac if that's relevant.
Thanks!
On Windows: try,
Hover over the yellow popup text
Alt+LeftMouseClick
The 'yellow text' should now be on your clipboard, ready to paste.
That is it!
The older solutions don't seem to be working for me. Not sure if the behavior changed, but here is what is working for me on a Mac with Android Studio 3.4:
press control + option simultaneously
hover over the text that has an error
click on the tooltip when it pops up.
On Mac, a slightly different dance than Windows.
hold shift
click and hold towards the end of the text(probably missing last character)
keep holding mouse click and release shift
while holding mouse click, press Command + C to copy
paste wherever
Ubuntu:
When you make the popup shows up, hold Alt+Shift and carefully select any amount of the text and press Ctrl+C.
You don't need to select all of the text, because it will always copy the whole message ignoring the selection.
Tested on Ubuntu 18.04.3 LTS and Android Studio 3.5.2.
Once popup shows up, move your mouse pointer over it and simply select (mark) bubble's text, then do Copy with keyboard shortcut (CTRL+C on Windows or Command+C on Mac) while still having mouse pointer over the bubble.
Not sure how on Mac, but on Windows it works that way for me, with the exception that you need to keep mouse pointer over the bubble all the time otherwise it is gone (which sometimes forces me to copy all but last character from that message).
On Ubuntu, try
Hover on the error or warning popup text
Maintain CTRL to keep it displayed
Use the cursor to select the text

Missing keyboard on iOS8 simulator?

I'm checking my app against iOS8 in the simulator and one thing that puzzles me is that when I tap on a UITextField or UITextView the keyboard doesn't appear on the screen! I can still enter text with my hardware keyboard. Also, if the input element has a inputAccessoryView, that view is shown on the bottom of the screen. So everything works as expected except that the keyboard is not appearing on the screen.
This is valid for all input elements throughout the app.
I don't use the new feature for custom keyboard.
Checked the Settings - don't see anything that can help.
I know XCode6 is still a beta but this seems too obvious problem to be a bug (or is it!?)
In the iOS Simulator menu select:
Hardware > Keyboard > Toggle Software Keyboard
or press Cmd + K.
The Connect Hardware Keyboard option in the same menu has to be enabled.
This seems to be bug in iOS 8. There are two fix to this problem:
Toggle between simulator keyboard and MacBook keyboard using [Command+K] shortcut key.
Reattach keyboard to simulator:
a. Open Simulator
b. Select Hardware -> Keyboard
c. Uncheck and then check 'Connect Hardware Keyboard'
OR simply press [Shift + Command + K] shortcut key
i had the same issue and i resolved by doing following steps
1) Select the iOS Simulator
2) Goto Hardware in menu (top Left)
3) Select Keyboard
4) Uncheck the "Connect Hardware Keyboard" option
Happy Coding :)
I highly recommend to disable "Slow Animations" which can be found under "Debug" -> "Slow Animations".
For me, that permanently fixes the issue.
Shortcut is: CMD + T

Resources