How do you access the Point object in DigitizePoint()? The documentations says that you pass it a function as a handler, and it passes a Point parameter to that function.<br><br>The first problem is that my taskpane does not know what a point is, so I made one:<br><br>function Point(x,y) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; this.x = x;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; this.y = y;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br><br>Next I made a Point object named "o":<br><br>var o = new Point(1,0)<br><br>Next I made a handler for DigitizePoint:<br><br>&nbsp;&nbsp;&nbsp; function digitizePointHandler(o)<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; }<br><br>Next I called the DigitizePoint function from another function:<br><br>&nbsp;&nbsp;&nbsp; function getDigitizePoint()<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; f = new digitizePointHandler(o)<br>&nbsp;&nbsp;&nbsp;
 &nbsp;&nbsp;&nbsp; parent.ViewerFrame.mapFrame.DigitizePoint(f)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; alert("o.x is" + o.x)<br>&nbsp;&nbsp;&nbsp; }<br><br>Hopefully DigitizePoint() takes that o parameter and fills it with the x and y points that the user's mouse has clicked. However, the final alert shows that o.x is still the same as it was in the beginning.<br><br>Any help would be appreciated.<br><p>&#32;
                <hr size=1><a href="http://us.rd.yahoo.com/evt=40705/*http://mrd.mail.yahoo.com/try_beta?.intl=ca"><b>All new Yahoo! Mail </b></a> 
<hr size=1>Get news delivered. Enjoy RSS feeds right on your Mail page.