<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
Hi every one,<br>
<br>
&nbsp;&nbsp;&nbsp; I'm trying to write a script that will allow the display of the
coordinates underneath the mouse to be continuously displayed. The
following code snippet will do it but requires the user to click the
mouse to update the position information:<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'set lat -90 -40'<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'set lon 0 180'<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'set cint 4'<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'set ccolor 6'<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'd mslp'<br>
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; while (1)<br>
<font color="#000099">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; 'q pos'<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; x=subwrd(result,3)<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; y=subwrd(result,4)<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; 'q xy2w 'x' 'y<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; lon=subwrd(result,3)<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; lat=subwrd(result,6)<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; 'draw recf 6.0 0.0 10.0 0.5'<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; 'draw string 6.1 0.1 'lat' 'lon<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; endwhile<br>
</font><br>
I want the the code to work without having to click. From reading the
manual I though that using <font color="#000099">'q pos nowait'</font>
instead of <font color="#000099">'q pos'</font> would do the trick but
it ends up behaving exactly the same as 'q pos'. Any clues as to how to
get this functionality into a display ? I've tested the script on
v1.9b4 32-bit and on v2.0.a5<br>
<br>
Cheers<br>
Neil<br>
<pre class="moz-signature" cols="72">--
_________________________________________________________________
Dr. Neil Adams (SPOB),
Regional Manager Antarctic Meteorological Section, Tasmania and Antarctica Region,
Bureau of Meteorology, GPO Box 727 Hobart TAS 7001.
Ph +61 3 62212032       Fax +61 3 62212080      Mobile +61 417331181
Email: <a class="moz-txt-link-abbreviated" href="mailto:N.Adams@bom.gov.au">N.Adams@bom.gov.au</a>
_________________________________________________________________
</pre>
</body>
</html>