Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
5answers
25k views

Set cursor position on contentEditable <div>

I am after a definitive, cross-browser solution to set the cursor/caret position to the last known position when a contentEditable='on' <div> regains focus. It appears default functionality of a ...
8
votes
3answers
7k views

How to find cursor position in a contenteditable DIV?

I am writing a autocompleter for a content editable DIV (need to render html content in the text box. So preferred to use contenteditable DIV over TEXTAREA). Now I need to find the cursor position ...
7
votes
2answers
166 views

Drag and Drop in GUI

Is it possible to create an object in a GUI whose position I can define by the cursor position (drag when clicked) by setting its 'Position' property to whatever the cursor position is? What function ...
7
votes
5answers
921 views

emacs equivalent of vim's shift-h and shift-l

i'm wondering if emacs has these cursor movement commands built in or if i'm going to have to write them or find a snippet somewhere. i find them pretty spiffy and use them in vim regularly. i haven't ...
6
votes
2answers
2k views

Get caret position in contentEditable div

I'm finding tons of good, crossbrowser anwers on how to SET the cursor or caret position in a contentEditable DIV, but none on how to GET or find its position... What I want to do is know the ...
6
votes
4answers
4k views

Getting cursor position in a Textarea

I am trying to implement Autocomplete in a text area (similar to http://www.pengoworks.com/workshop/jquery/autocomplete.htm). What I am trying to do is when a user enters a specific set of characters ...
5
votes
1answer
352 views

How can I lock the cursor to the inside of a window on Mac OS X?

I'm trying to put together a game for Mac OS X which involves a lot of fast action and flinging around of the mouse cursor. If the user wants to play in windowed mode, I'd quite like to lock the ...
5
votes
3answers
1k views

Change cursor position in the contenteditable div after changing innerHTML

I have a simple contenteditable div with some text in it. On onkeyup event i want to replace whole content (innerHTML) of the div based on regex. For example, HTML: some text, more text and $even ...
5
votes
5answers
2k views

Setting the Cursor Position in a Win32 Console Application

How can I set the cursor position in a Win32 Console application? Preferably, I would like to avoid making a handle and using the Windows Console Functions. (I spent all morning running down that ...
5
votes
4answers
1k views

C moving the cursor to the beginning of the current line

I want to print current time (by using printf) in same place, but i want to do it in infinite loop eg: while(1) {printf("Date and Time are %s", asctime(localtime(&current))); } . So before i ...
5
votes
4answers
4k views

how can i get cursor position in a textarea?

how can i get cursor position in a textarea using jQuery? thanks
4
votes
2answers
348 views

terminal: where am I?

Is there a variable or a function, which can tell me the actual position of the cursor? #!/usr/bin/env perl use warnings; use 5.012; use Term::ReadKey; use Term::Cap; use POSIX; my( $col, $row ) = ...
4
votes
3answers
690 views

How to move screen without moving cursor in Vim?

I recently discovered Ctrl+E and Ctrl+Y shortcuts for Vim that respectively move the screen up and down with a one line step, without moving the cursor. Do you know any command that leaves the cursor ...
3
votes
1answer
73 views

How do you move the cursor to the next element in a contenteditable div in Chrome/Safari?

I have logic to insert a tag in a contenteditable div. I want to set the cursor to the start of the following element after the insertion. The code I have to do this is: function ...
3
votes
1answer
111 views

Pygtk TextView setting cursor at the beginning

I have a gtk.TextView() and every time the user puts text in it and hit return I want to print the text in the terminal and erase everything in the text area and so, put the cursor at the beginning of ...
3
votes
2answers
1k views

How to set caret(cursor) position in contenteditable element (div)?

I have this simple HTML as an example: <div id="editable" contenteditable="true"> text text text<br> text text text<br> text text text<br> </div> <button ...
3
votes
2answers
97 views

moveToNext() is false

//row --> 2 int row = mCursor.getCount(); for (int i = 0; i < row; i++) { if (mCursor.moveToPosition(i)){ int val = mCursor.getInt(mCursor.getColumnIndexOrThrow(UTILI_COLLOC_ID_UTILI)) } } ...
3
votes
1answer
330 views

Wrap mouse around screen edges

problem description I've got a Delphi component. To set a value, you can click and drag. However, when you reach the edge of the screen, you can't go any further. You then need to go back to the ...
3
votes
4answers
726 views

Does XCode have a cursor navigation stack like Visual Studio?

Visual Studio tracks cursor positions and lets you move forward and backward through these positions. For example, you can type Ctrl+- to navigate backwards and Ctrl+Shift- to navigate forwards. I ...
3
votes
2answers
5k views

How to move cursor to end of contenteditable entity

Hi I need to move caret to end of 'contenteditable' node like on gmail notes widget i read threads on stackoverflow, but that solutions use input's and doesn't work with content editable
3
votes
6answers
11k views

How do I find the position of a cursor in a text box? C#

I have a standard WinForms TextBox and I want to insert text at the cursor's position in the text. How can I get the cursor's position? Thanks
3
votes
1answer
5k views

How to get mouse position over a certain control

Windows Form I'm using the DragOver event on a layoutpanel and the DragEventArgs returns the X/Y coordinates of the mouse in relation to the screen. I know there is a function to translate this in to ...
2
votes
4answers
80 views

Understanding Classic ASP

I am looking through some old code and found a piece that i cant' seem to understand the point of....As far as i can tell, it's just a simple insert. but why did they do it this way? would it be okay ...
2
votes
2answers
108 views

Listview with TextView and Button. RowId of the clicked button

I hava a listview like the following. The text in the TextView comes from a database. ------------------------- TextView Button ------------------------- When I click on the button, I ...
2
votes
2answers
134 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"); ...
2
votes
1answer
140 views

Getting Caret Position Inside Any Application in VB 2010

I'm making a Singlish-English Word Prosessor.When user typing in a active window's TextBox those letters were automatically converted to the Sinhala language.I did that hard part with sendKeys() ...
2
votes
1answer
573 views

How can I get cursor position on the form?

I need to get cursor position on the form, but not on the screen!
2
votes
1answer
206 views

How can I lock the cursor to the inside of a window on Linux?

I'm trying to put together a game for Linux which involves a lot of fast action and flinging around of the mouse cursor. If the user wants to play in windowed mode, I'd quite like to lock the cursor ...
2
votes
3answers
7k views

jQuery: Get the cursor position of text in input without browser specific code?

Is there any way in jQuery to get the current cursor-position in an text input without doing ugly browser specific code? Like in: <input id="myTextInput" type="text" value="some text" > the ...
2
votes
2answers
713 views

How to show a TPopupMenu when you click a TButton?

i want to show a popupmenu when click a button. but this procedure has error in Delphi XE. procedure ShowPopupMenuEx(var mb1:TMouseButton;var X:integer;var Y:integer;var pPopUP:TPopupMenu); var ...
2
votes
1answer
1k views

C# Moving Cursor in RichTextBox on Right-Click

I have a RichTextBox control. When you left-click in the text the cursor jumps to where you clicked. I want this to happen when I right-click as well. I'm not sure how to do this. Thanks!
2
votes
1answer
2k views

Set the caret/cursor position to the end of the string value WPF textbox

I am try to set the caret/cursor position to the end of the string value in my WPF textbox when I open my window for the first time. I use the FocusManager to set the focus on my textbox when my ...
2
votes
2answers
647 views

How do I limit the following cursor to a specific area

I have a flash cs3 file where I want a mask to move on the y axis (up and down) when the user is scrolling over the navigation area. In my code, I have: maskMC.startdrag(); How do I limit the area ...
1
vote
1answer
140 views

Moving the Cursor in an Input text on Android web browser

After Much searching I have decided to ask my first stack overflow question: functioning example can be found at: http://www.mshare.net/mobiletexttest View page source for code, it is all on there. ...
1
vote
1answer
178 views

C++ SetConsoleCursorPosition (GetStdHandle(STD_OUTPUT_HANDLE), c) 2 arguments

How to use SetConsoleCursorPosition (GetStdHandle(STD_OUTPUT_HANDLE), c) function when I have not 1 "c" arguments but 2 for example 2 3? Maybe someone know better function than ...
1
vote
1answer
207 views

iOS - How to move cursor to the beginning of the current line in UITextView?

I want to have an insert tab button for my UITextView so that users be able to insert a tab at beginning of the current line. No matter where the cursor is in the line, the tab should be inserted at ...
1
vote
1answer
87 views

Overlay Mouse Image in Cocoa / OSX

I need to capture the framebuffer and save it into the file, i am using son of grab example code to capture the buffer, but it doesn't give me the mouse pointer, So i am drawming the mouse pointer ...
1
vote
1answer
61 views

contentEditable cursor's parent element

I have a contentEditable HTML element. I would like to get the cursor's parent element. For example, if the cursor is inside a table cell, I would like to display some controls for editing the table. ...
1
vote
1answer
128 views

Javascript - insert image tag at the position of the cursor in the textarea

I know there are a few posts with the similar title, but they don't seem to refer to the same question. I'm trying to put the image tag at the position of the cursor inside of the specific textarea ...
1
vote
2answers
277 views

How to get cursor position relative to window in Mac OS X?

I can use [NSEvent mouseLocation] to get the cursor's location, but this gives me the screen coordinates. How do I get the coordinates of the cursor relative to the view, when it is in it? I searched ...
1
vote
2answers
144 views

How do I set the position of the mouse cursor from a Console app in C#?

I've found many articles on how to set the mouse position in a C# windows forms project - I want to do this in a console application. How can I set the absolute mouse position from a C# windows ...
1
vote
2answers
304 views

Why does XWarpPointer only work once (while in a loop)?

Why does XWarpPointer only work once? When I run: #include <stdio.h> #include <X11/Xlib.h> #include <X11/Xutil.h> #include <X11/Xatom.h> int main() { Display *dpy = ...
1
vote
1answer
115 views

TinyMCE - Tabbing to editor causes cursor to right align? FF4 problem maybe?

When I view my site in Firefox 4, if I tab to the tinyMCE editor, it right aligns the cursor, when I begin typing it adds an empty line to the top and then the typing begins left-aligned on the next ...
1
vote
0answers
713 views

Android EditText's cursor coordinates (absoulte position)

How can I get the coordinates of the cursor in the EditText ? I am not trying to get the cursor position here but the EditText coordinates of the cursor. In my case, when I send a number via KeyEvent ...
1
vote
1answer
460 views

how can i get selectedRange.location value?

i want to get a cursor position from UITextview, i have implement the code in How to find a pixel-positon of a cursor in UITextView? post, the algorithm is based on algorithm in Pixel-Position of ...
1
vote
1answer
755 views

iOS — dealing with the inability to set the cursor position in a UITextField

I am working on an app that will use a custom keyboard for text entry. The keyboard should have "forward" and "back" keys. Some hunting on SO suggests it is impossible to programmatically set the ...
1
vote
4answers
259 views

Vim: Stop Cursor Moving When The Page Scrolls

It happens to me many times that I want to look at other parts of the code while writing a statement, but whenever I scroll the page and the cursor reaches the bottom or top of the page it starts ...
1
vote
1answer
313 views

MacOS keyboard: a way to speed up the left and right arrow keys for editing text?

Is it just me, or do other people find that the left and right arrow keys on MacOS are unusually slow for editing text? Compared to my Windows machines, positioning the cursor with left/right arrow ...
1
vote
1answer
274 views

How lower the uitextview current position in landscape mode?

I have a scrollview which cointains a uitextfield, a uitextview and two label The uitextfield and the two label don't scroll. In portrait mode all works fine. In landscape mode, I resize the scroll ...
1
vote
1answer
763 views

how to find xy position in javascript with offset

hello i have some problem with my javascript code.. i want to get xy position the selected text in javascript, and i use offside function like this : function findPosX(obj) { var curleft = 0; ...

1 2 3