Tagged Questions
0
votes
1answer
54 views
How to check if button is clicked while text input has focus using jQuery
I'm relatively new to code and have been building a little project called http://keyboardcalculator.com/ to improve my jQuery.
I'm trying to add some more features to improve some things - and I've ...
0
votes
1answer
47 views
Cannot simply force focus on text input in stand-alone Google App using HtmlService?
I want to script a click on an input box.
Here is an example where the focus() should do just that, but it doesn't! Why?
Code.gs:
function doGet(e) {
return ...
1
vote
1answer
144 views
Setting focus on a TextField when application starts when there are two states
I have next application header:
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init()" creationPolicy="all" ...
0
votes
1answer
277 views
Setting focus of input field in externally loaded swf
I'm loading a swf form into my swf movie (to save on file size). I have a 'faux-form' of static MCs in the main swf, and when a user clicks one, it loads the 'real form' which is its own swf file. ...
2
votes
0answers
562 views
How do I set cursor focus to end of input after using keyup function
I got this script off 9lessons.info and it is supposed to auto suggest friends when you type an @ symbol.
The Problem is after getting name from database, the curser points to the beginning of the ...
0
votes
0answers
355 views
TextInput focusOut not behaving as expected
(using flex SDK 3.5 here)
I think I can easily demonstrate a bug in Flex concerning the focusOut event. In my program this is fired not only for the control actually losing focus but the focusOut ...
-1
votes
2answers
206 views
How to return the focus to a textInput in a browser
I need to focus a text input into the Facebook login popup. I am using a virtual keyboard to simulate a physical one, but when I click a key, the text input lose focus and the letter is not written ...
3
votes
2answers
635 views
jQuery: How to focus on input text field such that the cursor is placed at the end of the text?
Consider the following example: (demo here)
HTML:
<input type="text" />
<div>Click here to set focus</div>
JS:
$(function() {
$("input").val("Hello");
...
1
vote
2answers
2k views
How set the focus of a input-TextField without having a stagereference?
I got a text-InputField:
var textfield:TextField = new TextField();
textfield.text = "";
textfield.type = TextFieldType.INPUT;
addChild(textfield);
because this textfield don't reside in the ...
2
votes
2answers
966 views
Global eventListener, when focus inside the texiInput
I'm trying to make a global eventListener. Everything works fine, the KeyboardEvent.KEY_DOWN fires all the time .. except the cases when the textInput has a focus.
Here's how I attach listener:
...
0
votes
2answers
1k views
Word suggestions make EditText lose focus
I have a ListView with items that contain an ImageView and an EditText. When I touch EditText, it gets focus, virtual keyboard appears and when suggestions appear above the keyboard, EditText loses ...
4
votes
3answers
4k views
Setting focus on a Popup's textInput control
I'm trying to have a popup window with an immediately editable TextInput. This means that the user should be able to type inside the TextInput once the popup is displayed.
The problem is that I can't ...