Inside the flash file i have the following actionscript:
/*
Scene Name: MapLoad
===========================================================================
This entire scene acts as a preloader for FusionCharts Flash map movie.
In this scene, we first initialize the map by setting/calculating a few
values that will be used later in this map. Next, we create the preloader
progress bar for the movie and show it till the moment the movie hasn't loaded.
Once the entire map movie is loaded, we shift the play pointer to DataLoad scene.
External Includes in the scene:
com/fusionmaps/LoadingFunctions.as - Contains getFirstValue function and preloader functions
com/fusionmaps/AppMessages.as - Contains application message strings to be displayed to end user
com/fusionmaps/Init.as - Contains map initialization scripts
com/fusionmaps/PreLoad.as
AND then after the preloader I have this:
//Include relevant external AS files
/**
* LoadingFunctions.as - Contains getFirstValue function
* and preloader functions
*/
#include "com/fusionmaps/includes/LoadingFunctions.as"
/**
* Init.as - Contains map initialization scripts
*/
#include "com/fusionmaps/includes/Init.as"
/**
* AppMessages.as - Contains application message strings to
* be displayed to end user
*/
#include "com/fusionmaps/includes/AppMessages.as"
/**
* PreLoad.as - Contains map pre-loading scripts
*/
#include "com/fusionmaps/includes/PreLoad.as"
//Stop here - till the script invokes some play event
stop();
The map works this way but when I changed all the
com/fusionmaps/includes/
to
www.edub9intl.com/rooftop/includes/maps etc etc
the entire map broke.