textinput.needsSoftKeyboard does not work (air for android) - actionscript-3

I have a textbox in my project wich is in a movie clip.
I have designed a new keyboard for my app and i dont want to see android keyboard when i tap on that textBox in movie clip.
textinput.needsSoftKeyboard
Is false for that textbox but when i touch the textbox the android keyboard pop's up.
What is the solution??

Related

ActionScript PrintJob.send not working in Electron

Adobe Flash - ActionScript PrintJob.send method does not work in Electron. The screen just flashes without showing any Print Dialog.
Is there any alternative to show the Print Dialog in ActionScript?

AS3 disable two fingers tap response

My AIR Desktop project is currently using
Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;
to allow multiple user to interact with it.
But when I published the project and tested on the touchscreen (Chinese touch frame for windows, no driver), It had this weird two fingers tap effect happened in this video. https://www.youtube.com/watch?v=j9Kbnngs4sc
which I don't want it.
I tried created another simple file using GESTURE mode instead and this weird effect has gone. But I need to use TOUCH_POINT mode.
The question is: how to detect or disable two fingers tap it in as3 TOUCH_POINT mode.
Thank you in advance,
Pucka

Why does scrolling with the mouse wheel in a custom flash scrollbar work only after clicking on swf once?

Why does scrolling with the mouse wheel in a custom flash scrollbar work only after clicking on swf once? Is there a way to be able to scroll in swf without clicking on it first?
Thanks in advance
The browser is in control of mouse/keyboard events - the flash container can only gain control of them if it is in focus.
It can only get in focus when clicked on / tabbed into.

AIR for desktop and TouchEvents

Building a kiosk application that only requires button press and button drag(scroller) detection.
I DON'T need multitouch, or gesture recognition.
Will I still need to substitute any MouseEvents for TouchEvents?
Yes, you can use only MouseEvent for a desktop application.

Flash fullscreen when loads

Im using adobe flash / AS3
This animation will be used as a autorun splash screen
how to do swf to be fullscren on load?
where to write this on_load event
It works in a projector with a simple delay on the fullscreen initiation.
I used that method:
function whatever(constructorOrOther:One)
{
setTimeout(setToFullScreen, 1);
}
function setToFullScreen()
{
stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
stage.scaleMode = StageScaleMode.SHOW_ALL;
}
Is this for flash player (in browser)? Like the documentation says, you can only go into fullscreen as a result of a mouse click or keyboard input ( http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/Stage.html#displayState ).
Full-screen mode is initiated in response to a mouse click or key press by the user; the movie cannot change Stage.displayState without user input. Flash runtimes restrict keyboard input in full-screen mode. Acceptable keys include keyboard shortcuts that terminate full-screen mode and non-printing keys such as arrows, Space, Shift, and Tab keys. (Use full-screen interactive mode to support input from additional keys.) Keyboard shortcuts that terminate full-screen mode are: Escape (Windows, Linux, and Mac), Control+W (Windows), Command+W (Mac), and Alt+F4.