Melinda Frost helped me with the answer on another post:Load WGS84 Local Shapefile and Display in Web Mercator Application
http://forums.arcgis.com/threads/17440-Load-WGS84-Local-Shapefile-and-Display-in-Web-Mercator-Applic... Here's the final code for "loadShapefile":private function loadShapefile(shpByteArray:ByteArray, dbfByteArray:ByteArray):void{var index:int = 0;const array:Array = [];const shpReader:ShpReader = new ShpReader(shpByteArray);const dbfHeaderbfRecord = DbfTools.getRecord(dbfByteArray, dbfHeader, index++);//geoToWebM Start var myGraphic:Graphic = new Graphic();myGraphic.geometry = WebMercatorUtil.geographicToWebMercator(shpPolygon.toPolygon());myGraphic.symbol = myPoly; graphicsLayer.add(myGraphic);//geoToWebM End//array.push(new Graphic(shpPolygon, shpSymbol, dbfRecord.values));}//graphicsLayer.graphicProvider = new ArrayCollection(array); map.addLayer(graphicsLayer);//map.extent = shpReader.extent.expand(1.5);//geoToWebM Startmap.extent = WebMercatorUtil.geographicToWebMercator(shpReader.extent.expand(2.0)) as Extent;//geoToWebM EndmsgBox.htmlText = "Polygon footprint has been successfully loaded.";}I also attached the mxml.Thanks again Melinda!