To add/customize template buttons :
Open HTML pages and replace item_text (flash button name) and item_link (flash button link) by your own values as in this example :
<!-- "About us" button -->
<script type="text/javascript">
AC_FL_RunContent( ...,'xml_filename=menu.xml&item_text=About us&item_link=aboutus.htm&item_text_size=20&item_ajust=35&item_selected=0' ); //end AC code
</script>
NOTICE 1 : If item_text contains a single quote ('), you must preceed the single quote with a backslash (\). For example you shoud write " It\'s my home page " instead of " It's my home page ".
NOTICE 2 : In this example the flash button "About us" is active (clickable). If you want it to be inactive replace characters 'item_ajust=35&item_selected=0' by these ones : 'item_ajust=1&item_selected=1'.
To customize flash buttons colors open file ''flash/menu.xml' and replace colors by yours :
<main item_bg_color="0xFFFFFF" item_text_color="0x953C32" item_hover_bg_color="0x953C32" item_hover_text_color="0xFFFFFF" ></main>
NOTICE 1 : Don't forget to add "0x" before the color code.
NOTICE 2 : You may add unlimited flash buttons on each page.
-------------------------
To customize flash header :
Open the file "flash/header.xml" in notepad and insert your own values as in this example :
<?xml version='1.0' encoding='UTF-8' ?>
<main top_line_color="0x000000" header_bg_color="0x953C32" font_color_sup="0xffffff" font_size_sup="36" font_color_inf="0xffffff" font_size_inf="24"></main>
<url>
<url1>
<val1>BUSINESS</val1>
<val2>PERSPECTIVES</val2>
</url1>
</url>
If you need to change flash header image : open HTML pages and replace header_image_1 value (image name) by your own values as in this example :
<!-- Flash Intro Header -->
<script type="text/javascript">
AC_FL_RunContent(...'&xml_filename=header.xml&header_image_1=myimage.jpg&text_sup_y=50&text_inf_y=10' ); //end AC code
</script>
NOTICE : Your image must be under the "/flash' folder and must be at least 548 pixels wide and 158 pixels hight.
-------------------------
To customize flash footer text and music :
Open the file "flash/footer.xml" and insert your own values as in this example :
<?xml version='1.0' encoding='UTF-8' ?>
<url>
<url1>
<footer_text>Copyright Companyname - 2014</footer_text>
<footer_sound>flash/01.mp3</footer_sound>
</url1>
</url>
NOTICE: Your mp3 music file must not be to heavy if you don't want to wait too long before you can hear it..
If you don't want any music on a page just open HTML page and change playsound parameter to no as in the example below :
<!-- Flash footer -->
<script type="text/javascript">
AC_FL_RunContent( ...','xml_filename=footer.xml&playsound=no ); //end AC code
</script>