Hi,I am trying to display a set of false eastings and false northings alongside my already displayed coordinates which are in degrees. I had hoped by creating a new MapPoint in my mousemoveHandler inside my coordinates widgetvar eastnorth:MapPoint = map.toMapFromStage(event.stageX, event.stageY);
And then setting a new spatial reference eastnorth.spatialReference = new SpatialReference(28351);
it would update this change and instead of displaying in degrees change it into False eastings which is the correct output unit for spatial reference 28351, however it accepts the change to the spatial reference but almost like the spatial reference value has nothing to do with the coordinates the MapPoint will display as it stays in degrees.Can anyone offer any help?