kgbearcat

Members
  • Content count

    1
  • Joined

  • Last visited

About kgbearcat

  • Rank
    Forum Newbie
  1. setdataurl path

    I apologize if this is not in the correct forum. I want the xml file to be in a different location than the flash file. If I have the code as follows, it works correctly. var map = new FusionMaps("/flash/FCMap_USA.swf", "Map1Id", "750", "460", "0", "0"); map.setDataURL("/flash/CustomerIndex.xml"); If I change the path to the following, it errors. var map = new FusionMaps("/flash/FCMap_USA.swf", "Map1Id", "750", "460", "0", "0"); map.setDataURL("/App_Data/map.xml"); The error in the html page is "Error in loading data". I have verified the path is correct, and the xml file is the exact same file in both. Is there an obvious fix to this, or is it not possible to put the xml file in a different location?