The cursor-position tag has no wiki summary.
-1
votes
0answers
31 views
Cursor Location Display in a Readonly TextBox
I have a couple of textbox controls in my WPF Application. In one of the textboxes, I have implemented search words. I could able to search; highlight the found word, etc., I am keeping track of the ...
0
votes
0answers
23 views
cakePHP, processing a huge table in a loop
I have a table (3,000,000 records) which I need to process.
I've created a for loop, using SQL COUNT result for the upper boundary.
Now I need to iterate through each row, manipulate some data and ...
0
votes
0answers
28 views
QT C++ QCursor::pos() threads error
I am using Ubuntu 12.10 and QT 5.
This is the code of a run() method of a class inherited from QThread
void CheckIdleThread::run()
{
while(isAlive())
{
bool newIdle = idle;
...
0
votes
0answers
37 views
Set Cursor Position to end of text in contenteditable div
I have two issues in following scinario:
<div id="test" contenteditable="true">
<font face="arial"> this test text </font>
</div>
When i replace the text of font tag by ...
0
votes
1answer
43 views
Editable ComboBox setting caret position using mvvm
I have a editable wpf combobox. I want to set the caret position to the end of the text whenever it gets focus.
1
vote
1answer
209 views
Python. Return current cursor position and position last left mouse click
I want to be able to define the cursor position of the last left mouse click as a point and the current cursor position as a point in real-world coordinates. The code I have so far has the Tkinter ...
1
vote
2answers
57 views
Simple and portable method for managing console cursors action in C++
When dealing with console input (stdin,std::cin) is there a portable way in C++ to manage the various actions that a user may perform like:
Backspace/Delete
List item
Left/Right arrow keys (moving ...
1
vote
1answer
34 views
Matlab Axes Current Point does not work as it is supposed to
I am using mesh to plot a 2D color surface on a 3-D axes. Then I need to move this surface dragging with the mouse. My problem is get(ax,'CurrentPoint') gives me same values for two different points ...
0
votes
3answers
110 views
mouse_event vs real mouse event
Is there a difference between a real mouse click (by hand) and execution of the click from code (by mouse_event in c#)?
Similarly, is there a difference between the real moving the mouse cursor and ...
0
votes
2answers
36 views
how to write on file after the text already present int that file (cursor movement to the end of the file)
This is my code for reading file and writing file ; i want to write string content to the end of the text file. My aim is to have command on cursor movement/controlling in a text file.
please help me ...
0
votes
0answers
94 views
How set the cursor position in a content editable div - Jquery
Before decalring it duplicate, please read my question -:
I have been through the net, getting tons of solutions to set cursor position, but most of them are over-complicated. Currently I have this ...
0
votes
4answers
132 views
How to know where mouse will be prior to MouseMove
I am trying to implement a functionality in my application to snap cursor to edge of a grid in my scene. As it stands I do have the framework to take the current MouseMove provided e.Location and ...
0
votes
0answers
106 views
Dyanmically updating time string on mouse location on matplotlib plot
I've got a relatively "simple" plot created by matplotlib where x-axis is time (float value) and y-axis is just data. My last addition to it is a dynamically updating vertical cursor with a string ...
1
vote
1answer
144 views
Compare two rows using a single cursor in SQL
I have the following table
+-------+-------+----------+------+
| icode | iname | icatcode | slno |
+-------+-------+----------+------+
| 10 | a | 11 | 0 |
| 20 | b | 31 | ...
0
votes
0answers
65 views
i want to compare the current row and previous row using a “single cursor” and update the rows in sql
I have the following table
icode iname icatcode slno
10 a 11 0
20 b 31 0
30 c 11 0
40 d 21 ...
0
votes
1answer
232 views
How to get the cursor position in contentEditable containing HTML?
I need to get the cursor position in a contentEditable div. I get some helpful function from Get a range's start and end offset's relative to its parent container and ...
1
vote
1answer
369 views
How does QTP click if no coordinates are specified?
Original title: Why aren't my .Click actions completely registering while testing in QTP?
I am working on a WPF & .Net application that has many WPFbuttons that I must click. When I attempt to ...
0
votes
1answer
510 views
Set caret position in contenteditable div
Intro
When editing the content of a contenteditable DOM Object, different browsers have different behaviours. For instance, Firefox 18.0 creates a new paragraph (<p>) or a line break ...
3
votes
1answer
155 views
SetCursorPos malfunctions?
I wanted to write a procedure in delphi to simulate a moving mouse pointer with a specific speed (similar to the AutoIT MouseMove function).
Either my code is wrong or SetCursorPos malfunctions after ...
0
votes
1answer
86 views
How can I stop iOS Safari from keeping the cursor in the topleft pixel of the browser pane?
I have a website, http://ADHD.BHStudios.org, which has a sidebar that is supposed to stay hidden until you hover your mouse cursor over it (pure CSS). However, in iOS Safari, the browser pane is ...
1
vote
0answers
63 views
Allow entering text except the space occupied by the image in UITextview
In my application I have a UITextView. In that UITextView, when I click camera button in the toolbar, I am getting two options: use photos or take new photo. Then I add the taken photo by creating a ...
0
votes
1answer
143 views
Cursor positioning in Terminal using C program
My program will open a file and print the contents in the terminal. As the file is large, the terminal goes two or more page. I'll have to slide up to the first line of the file to read from the ...
0
votes
0answers
109 views
correct positioning of textcursor when entering a combobox
I want to write a custom windows-forms combobox which implements the same behaviour as a textbox when receiving focus: the textbox remembers the last textcursor-position and resets the cursor to this ...
1
vote
0answers
126 views
How to scroll caret into view inside a textbox with JavaScript?
I need a way of scrolling to the caret position in a textbox no matter where the caret is. The problem I am having is very similar to this one:
Possible to scroll caret into view inside a single HTML ...
0
votes
1answer
262 views
Android OnTouchListener schedule a thread to position cursor
The answer posted at "In Android EditText how to get the cursor position in an OnTouchListener after it is set" indicates that a thread can be scheduled for 100MS in the future to give Android time to ...
0
votes
0answers
169 views
How to get index position in textBox using javascript
How do i get the index position when user click in textBox using JavaScript?
for example in my textBox have this string :
`this is best| of the world`.
it should be return 13.
0
votes
1answer
229 views
C++ NCurses how to get current cursor position?
How do I get the current position of the cursor in terminal with NCurses using C++? I searched around a bit and saw "getxy(int x, int y)". I tried that and got the error "'getxy' was not declared in ...
0
votes
0answers
42 views
[C++]How do I set cursor position in Linux? [duplicate]
Possible Duplicate:
How could I achieve gotoxy() in gcc
I'm trying to make a simple timer, and I need something like the "gotoxy(x, y)" function in the "windows.h" header, but for Linux. ...
0
votes
1answer
53 views
Moving MongoCursor back?
MongoCursor has a method to get next object, what is the best solution to access previous items?
0
votes
0answers
317 views
How to set cursor position in contenteditable element (div) in safari?
<body>
<div id="content" contenteditable="true" style="font-family: Helvetica">This Editing View
<span>Editor</span> </div>
</body>
<button ...
1
vote
1answer
496 views
Inserting text in TinyMCE Editor where the cursor is
I've been trying to insert text into the TinyMCE Editor at the focused paragraph element () exactly where the cursor is but got no luck!!
var elem = tinyMCE.activeEditor.dom.get('tinymce');
...
1
vote
2answers
797 views
Getting RGB value from under mouse cursor
I am trying to build a program that detects the color that is under the mouse cursor and then displays the color and RGB values in a window on the screen. I am VERY new to Java so do not know much of ...
4
votes
1answer
87 views
Caret shifted down on second line if using CSS line-height – Is there a workaround?
Using the line-height property in a contenteditable div causes the caret to be shifted down once you move it to the second line. This is more apparent with some custom web-fonts but also happens with ...
0
votes
0answers
167 views
Why does QTP click the bottom-right corner of the screen after selecting an item in a JavaList?
I find that whenever I attempt to select a value in a JavaList, QTP selects the value then instantly moves my cursor and clicks the bottom-right corner of the screen. This happens on lines such as: ...
0
votes
0answers
107 views
Modifying text in dijit.form.textbox in InternetExplorer externally (IE8 issue)
I have one dijit.form.textbox and two buttons ButtonA and ButtonB in my application. When I click on ButtonA "foo" gets inserted into textbox next to the current cursor position and when I click on ...
0
votes
0answers
66 views
how to find the closest tag to cursor in editable iframe and then put a tag using jquery
i am trying to create a addon for adding and removing table row in freetextbox, (famous asp.net editor), the problem i am facing is i am not able to get the closest tag in iframe and then put a new ...
0
votes
0answers
125 views
Strange IE behavior while getting cursor position in textarea
I'm in Internet Explorer 8 -
Below is the method that
alerts the [start, end] values when a text is selected in a textarea field.
alerts the position value, when the cursor is just placed at a ...
0
votes
1answer
241 views
What's the difference between screen coordinates and device coordinates?
I've come across this code:
//handler for context menu element; to move an element
void CRTS_SketcherView::OnElementMove()
{
CClientDC aDC(this);
OnPrepareDC(&aDC); ...
0
votes
0answers
96 views
Tracking phone position with Android
I am working on an app that uses the phone's position. Since I'm working with small distances(not more than a meter), I cannot use GPS. Basically, what I want to do is very similar to a wireless mouse ...
1
vote
1answer
123 views
Vim: restore cursor position after undo of imap
I have modified the IMAP function from vim-latex, so that an undo is possible, by changing the final return line of LookupCharacter to
return a:char . "^Gu\<bs>" . bs . ...
0
votes
1answer
172 views
Change cursor aligment vertically in multi-line JTextField
I have the following JTextField where I would like to change the cursor position from the middle to the TOP of the JTextField:
How do I accomplish that?
3
votes
1answer
2k views
How to display coordinates and use ginput
I cannot seem to get my image to display the coordinates of my mouse cursor, and also use ginput to store points at the same time.
I currently am trying the following:
MriHotrod = ...
2
votes
2answers
369 views
GetCursorPos only returning x value
I saw a thread on an MSDN forum where there was an issue with 32-bit vs. 64-bit integers. I'm not sure if that is my issue, but it seems as though this code should work, so I'm a bit confused.
I'm ...
1
vote
0answers
207 views
Get and Set cursor position in text area in Internet Explorer
How to get and set cursor position in dojo text area widget in Internet Explorer 8 or 9(even after losing focus)?
Please do not mark this question as duplicate as I could not find any answer which ...
2
votes
2answers
181 views
Phpstorm cursor jumping back constantly at long lines
When I have a long line and want to type text at the end, the cursor constantly jumping back to the middle of the text, for example:
from here: to here: .
Is it a bug or a feature ? How can I turn it ...
1
vote
2answers
2k views
Inserting text into a textbox at the cursor position VB
I am trying to work out how I can insert the string "End" into my textbox at a specific cursor point?
(where the '???' is in the code below)
As you can see by the code below this will happen when ...
0
votes
0answers
67 views
xterm active line screen position
Is it possible to configure the active line in an xterm window to appear somewhere other than the bottom of the screen?
While there are advantages, my monitor is not positioned for the bottom of the ...
1
vote
1answer
506 views
How can I get cursor position in a textbox as a pixel value?
I'm trying to do something like that:
When use enter "#" in the textbox, the colorpicker div must be opened in bottom of the cursor position. I can get the order of the cursor with ...
1
vote
1answer
2k views
How to get caret position within contenteditable div with html child elements in Internet Explorer
I am working with a contenteditable div that will have the option to have inline html elements such as tags " <p> <font> <br>
" in the text flow.
At certain points I need to grab ...
1
vote
2answers
552 views
dijit.form.TextBox Add strings on click of a buton based on the last selection
How to retain cursor position even after loosing focus in dijit.form.TextBox?
I have the textbox and button in my form. When I click on the button I want some text to be added in that textbox at ...
