Mouse position: Difference between revisions

Content added Content deleted
m (→‎{{header|Rust}}: Update to Rust 0.9)
No edit summary
Line 706: Line 706:
<lang seed7>xPos := pointerXPos(curr_win);
<lang seed7>xPos := pointerXPos(curr_win);
yPos := pointerYPos(curr_win);</lang>
yPos := pointerYPos(curr_win);</lang>

=={{header|Smalltalk}}==
Sending the message <tt>position</tt> to the <tt>activeHand</tt> of the <tt>World</tt> returns a <tt>Point</tt> object:

<lang smalltalk>
World activeHand position. " (394@649.0)"
</lang>


=={{header|Tcl}}==
=={{header|Tcl}}==