Questions tagged [virtual-keyboard]

A virtual keyboard is a software component that allows a user to enter characters. A virtual keyboard can usually be operated with multiple input devices, which may include a touchscreen, an actual Computer keyboard and a computer mouse.

405 questions
5
votes
2 answers

How can I send keyboard commands (hold,release,simultanous) with a python script?

I want to send virtually the command like this: when keypress=="a" #if entered key is "a" send {ALT+TAB} # send ALT and TAB simultaneously sleep(2) #wait for 2 sec send {"I love…
arifcse10
  • 133
  • 2
  • 3
  • 12
4
votes
2 answers

Change the language of iOS virtual keyboard "previous", "next", "done" buttons

Is there any way with jQuery-Mobile to change the language of the buttons displayed in the top bar of an iPhone/iPad virtual keyboard or to change the texts or remove them at all? I have seen the language of the "space" and "Go" buttons inside the…
Pablo
  • 2,834
  • 5
  • 25
  • 45
4
votes
3 answers

How to make QPushButtons to add text into QLineEdit box?

I used Qt Creator to make a "keyboard" window with sixty QPushButtons and one QLineEdit. How can I make the buttons to add characters into QLineEdit text box? If I press a QPushButton with the label 'Q' on it, I want the program to add the Unicode…
user569474
  • 451
  • 3
  • 7
  • 14
4
votes
2 answers

Virtual keyboard or onscreen keyboard for QtWidgets applications?

I'm going to deploy the qtvirtualkeyboard in my widget-based application like so: #include int main(int argc, char *argv[]) { qputenv("QT_IM_MODULE", QByteArray("qtvirtualkeyboard")); QApplication app(argc, argv); …
4
votes
1 answer

How get data from barcode scanner in Firemonkey/Delphi

Developing application on Delphi Tokyo, device Lanchang U8000S (http://www.itlecom.com/ProductsDetails.asp?id=1) when creating form I use: VKAutoShowMode := TVKAutoShowMode.never; for disabling show virtual keyboard when enter in example TEdit…
Karlis
  • 41
  • 1
  • 2
4
votes
1 answer

Jquery virtual keyboard .keyboard is not a function

I try to get user input from a textbox using jquery keyboard.js. If I omit the virtual keyboard code its work fine. URL : https://github.com/Mottie/Keyboard I am getting following console error Uncaught TypeError: $(...).keyboard is not a…
user3199385
  • 123
  • 1
  • 3
  • 11
4
votes
0 answers

Turn on Windows Virtual Keyboard (Tabtip.exe) in email and numeric mode

I have developed a WPF Application using Webbrowser (System.Windows.Browser), I have loaded local html file with input controls of type email, number, tel etc. The virtual keyboard changes to email,…
4
votes
0 answers

Move EditText up in NestedScrollView when virtual keyboard appears

I know that this question was asked some times before, but unfortunately all solutions didn't work for me. Neither android:windowSoftInputMode="stateAlwaysHidden|adjustResize|adjustPan" nor…
4
votes
1 answer

JavaFX - Virtual Keyboard Doesn't Show When the App Jar is Generated

I have created a JavaFX application in IntelliJ14.14 that will use the JavaFX Virtual Keyboard. I have add the following properties in the mainApp class controller: public static void main(String[] args) { …
CyborgNinja23
  • 290
  • 12
  • 33
4
votes
1 answer

When the virtual keyboard in iOS Safari is triggered, it makes my CSS transitions flicker. How can this be fixed?

On Mobile Safari, it seems that webkit transitions while the virtual keyboard is firing (i.e. sliding upward), causes a flicker, sometimes it even skips the animation entirely. It seems it even flickers/judders even if I put a transition-delay on…
Calvin
  • 8,697
  • 7
  • 43
  • 51
4
votes
1 answer

iOS virtual keyboard size without notification center

I need to scroll up my scrollView, when textFiewl is tapped that is bellow the virtual keyboard. I call [self.scrollView setContentOffset:scrollPoint animated:YES];. To get the screen's visible area, i obviously need the KB size. I am familiar with…
user1244109
  • 2,166
  • 2
  • 26
  • 24
4
votes
1 answer

Why won't showSoftInput display the virtual keyboard?

Essentially I am trying to show the virtual keyboard and gather input without the use of a visible EditText or TextView. I realize that toggleSoftInput can be used to do this however I need to use showSoftInput because I want to use a TextWatcher…
4
votes
1 answer

Prevent wmic.exe from writing TempWmicBatchFile.bat

I want to check within my Java application whether the windows virtual keyboard is already running or not. I searched for it and found, that I can use wmic.exe to search for a process. This is what I'm doing: Process proc =…
3
votes
1 answer

Why is window.navigator.virtualKeyboard undefined in local network?

When I try to access window.navigator.virtualKeyboard on my dev server in the local network, e.g. via 192.168.1.69 (dev server runs on desktop, accessing via mobile) it is always undefined. When deploying the app to the web it is available. Testing…
toni88x
  • 53
  • 2
  • 8
3
votes
0 answers

virtualkeyboard "Go" button changed to "Next" button when clicking on a node on vuejs-pwa

I'm building pwa apps with vuejs... One of them has a curious behavior since a short time https://scenaristeur.github.io/agent/ It seems that the "Go" button in the virtualKeyboard is changed to the "Next" button and I don't know how to catch a…
1 2
3
26 27