Hello,
It work's well with the new Adobe AIR 2.0, tested on the HP TX2. When user tap on a flash TextField, the keyboard icon popup.
Good luck!
Hi,
Does anyone know if it's possible to integrate the ToushSmart's virtual keyboard with an Adobe AIR application?
In most programs (Internet Explorer, Firefox, etc), when a user touches a text field a little keyboard icon automatically pops up which, when pressed, will bring up the virtual keyboard. However, this doesn't happen when clicking on text input fields in Adobe AIR (which is built on Flash).
Does anyone know of a way in AIR to tell Windows (or the HP virtual keyboard specifically) that the user has clicked in a text field and that the virtual keyboard should be shown? The text fields are the standard fl.controls.TextInput class provided by Adobe.
Any suggestions would be greatly appreciated.
Thanks!
Alan
Hi,
I hope On-Screen Keyboard Magic helps you....
On-Screen Keyboard Magic is utility that controls the behaviour of Microsoft On-Screen Keyboard on the screen and adds many elegant features. On-Screen Keyboard Magic is intended to improve usability and accessibility of Microsoft On-Screen Keyboard. On-Screen Keyboard Magic is small tray-based program.
With it you can:
Change size and transparency of Microsoft On-Screen Keyboard.
Quick switch input language by right mouse button click on Microsoft On-Screen Keyboard.
Hide the title bar of Microsoft On-Screen Keyboard.
Show and hide Microsoft On-Screen Keyboard by using wheel mouse button.
Try to integrate On-Screen Keyboard Magic with your Adobe AIR application.
You can find it @ http://www.sharewareconnection.com/titles/pop-up-keyboard.htm
Thanks for both your replies! I ended up setting the accessibilityProperties on each text field and that was sufficient for them to be recognized by the keyboard.
Hi!
@redoaks can you tell me what exactly had to set up to get this working? What accessibilityProperties did you set? I have similar problem...
Thanks in advance.. Pawel
This code seems to work for me:
var props:AccessibilityProperties = new AccessibilityProperties();
props.name = "My Text Field";
props.description = "Description Here";
my_text_field.accessibilityProperties = props;
if (Accessibility.active) Accessibility.updateProperties();
RSS


View unverified member's comment - posted by ZoulouX