folder - html setup - path - info of the 3D charts flash 9 as3 version 

HTML SETUP INFO
Two different html setups can be found in this folder/directory.  

1) combi_chart_detect_incAC.html, donut_detect_incAC.html these html files feature a flash plug-in detection (required version 9,0,124) and do include the (usually external) javascript AC_RunActiveContent.js file to embed flash content proper all in just 1 file. Note their file size is 12KB.

Simply change the script part below of combi_chart_detect_incAC.html, donut_detect_incAC.html (with any text editor) to test the flash detection and to prepare your html page for the case if no flash plug is detected or the plug-in requires an update:
<!--
// -----------------------------------------------------------------------------
// Globals
// Major version of Flash required
var requiredMajorVersion = 9;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Revision of Flash required
var requiredRevision = 124;
// -----------------------------------------------------------------------------
// -->


If changing the line " var requiredMajorVersion = 9; " to a release that's not availabe as yet like 'var requiredMajorVersion = 12;' and test run the file with a browser than the alternative content will show (here preset to: // flash is too old or we can't detect the plugin ...) instead of showing the 3D charts movie. Now you are able to edit and check that part to match your site design and requirements.     

Second exception, javascript was not enabled and thus no detection nor flash embed. 
This exception is unlikely because today most websites do require javascript to be turned on for navigation, popups, ...
Yet testing this case is easy with the firefox browser. In Firefox click -> Tools -> Options... ->  Content -> (untick) Enable JavaScript -> OK (do not mix up with Enable Java) and test browse refresh the html file once again. Now the content of the <noscript> part will show.  

<noscript>
	<font color="#808080">// Provide alternate content for browsers that do not support scripting<br>
	// or for those that have scripting disabled.<br>
  	Alternate HTML content should be placed here.<br> This content requires the Adobe Flash Player.</font>
  	<a href="http://www.adobe.com/go/getflashplayer/"  target="_blank"><font color="#808080">Get Flash</font></a>
</noscript>


You should think about 3 options here for the <noscript> part.
- your site requires javascript anyway. In this case simply cut out the whole noscript part from <noscript> to </noscript>, the setup will work without this tag.
- your site does not require javascript. In this case you should consider to edit this noscript part to match your site design and requirements.
- your site does not require javascript and you would like to embed and show the 3D charts flash without any javascript. (no detection, or detection is handled in another way on your site and the plug-in space will make the browser prompt the user anyway if no sufficient plug-in was found). In this case look in the file combi_chart_externAC.html or donut_externAC.html and copy/paste the embed part inside that <noscript> tag into this html setup file. Note: The 3D charts flash movie will show all fine in firefox but in IE6/7 a gray activation frame will show if choosing this option. That's why this option is not recommendet.



2) combi_chart_externAC.html, donut_externAC.html these html setup files (just 3KB size) require the external AC_RunActiveContent.js (4 KB size, current path/location is '../User_Manual/html/AC_RunActiveContent.js') which will be loaded once and any second movie may load the same as cached version from the browser. No detection! You could mix it with the detection snippet from the above example but that requires minor programmer skills or you could if appropriate use the version with detection on an entrance door page of your homepage ... or simply let the plugin-space handle the detection ... you will be able to find many approaches how to detect flash on the web ... explaining all would be beyond the scope of this manual.   
Anyway this setup is recommended for embedding multiple instances of flash movies while keeping loading time small. You should consider the same options for the <noscript> part as in the setup described above. 






How to change the location of this folder/directory?

Note: The files in this folder do require files located in other folders/directories of this zip archive!
Changing the location of this folder (without changing the location of the other folders called: User_Manual, AMcharts_evaluation_f10, ...) will require to provide these files plus altering their path: 


1) AC_RunActiveContent.js file's current path/location is '../User_Manual/html/AC_RunActiveContent.js'. Only html setup 2 (combi_chart_externAC.html, donut_externAC.html) will require changing the path which can be found inside of the respective <head> tag. (Two optional paths to the browser's favicon which shows in IE6/7 if online and in Firefox online and offline even as animated gif can be altered inside of the <head> tag too)
 
2) the current path/name to the flash movie (swf) files of this flash 9 as3 version points to the folder/sub-directory called 'swf' inside of this very folder and can be changed in the html setup. Its current path/name is (swf/AMchart_as3 or swf/AMchartPie_as3) This path has to be set up to 4 times to suit all browsers and scripted embedding depending on your choice of the html setup. In html setups without <noscript> part you will have to set the path 2 times only. Note only inside the <noscript> part the name requires its .swf suffix!

3) the data xml files are the same as the once used by the flash 10 version and can be found inside the folder called 'AMcharts_evaluation_f10/xml'  and the path/name can be altered too in the html setup of:  combi_chart.html and donut.html The current path points to: dataURL=../AMcharts_evaluation_f10/xml/minus_highlight.xml and  dataURL=../AMcharts_evaluation_f10/xml/donut.xml ... plus initializing vars of the query string (up to 4 times)
 
4)  the mp3 external rollOver sound path can be found in the minus_highlight.xml and donut.xml files (located inside the folder 'xml') as described under point 3. The sound's xml attribute which determines that path/name is currently set to sndMP3='../User_Manual/mp3/digital_over.mp3' and sndMP3='../User_Manual/mp3/digital_release.mp3' respectively.  


(../ dot dot forward slash is the notation for a relative path up one directory/folder)


All changes can be made with any text editor.      
