﻿<?xml version="1.0" encoding="utf-8"?>
<settings>
	<object param="totalHeight" 				value="110" /> <!-- the desired height of the movie clip -->
	<object param="totalWidth" 					value="750" /> <!-- the desired width of the movie clip -->
	<object param="menuPosition"				value="-20" /> <!-- the top(horizontal) or left(vertical) padding for the dockmenu. useful for reflections in top/left position. -->
	<object param="menuSize"					value="150" /><!-- the size of the dockmenu starting from the menuPosition. the images will align inside the rectangle determined by the menuPosition, menuSize and totalWidth or totalHeight -->
	<object param="itemMinHeight" 				value="60" /><!-- default minimum height of the images -->
	<object param="itemMaxHeight" 				value="100" /><!-- default maximum height of the images -->
	<object param="itemMinWidth" 				value="60" /><!-- default minimum width of the images -->
	<object param="itemMaxWidth" 				value="100" /><!-- default maximum width of the images -->
	<object param="menuOrientation"				value="1" /> <!--"1" = horizontal, "0" = vertical-->
	
	<object param="stageBorder"					value="10" />
	<!-- value in pixels. The size of an invisible border inside of the stage that will determine an mouse rollout event. 
	this helps with the bug within AS2 that reports the same mouse position ad infinitum everytime the mouse leaves the stage.-->
	
	<object param="slidingDuration"				value="1" /> <!-- in seconds. the time it takes for the menu to slide from one position to the next -->
	<object param="slidingTransitionType"		value="expo" /> <!-- the type of transition used when moving the menu sideways -->	
	<object param="slidingTransitionMethod"		value="easeout" />
<!-- 
        type values: back, bounce, circ, cubic, elastic, expo, linear, quad, quart, quint, sine
        for a more detailed view of these types of transitions you can visit http://hosted.zeh.com.br/tweener/docs/en-us/

        method values: easeIn, easeOut, easeInOut, easeOutIn
        for the linear type no ease function is available

        some transitions may break the menu. test carefully.        -->	
	<object param="mouseInfluence"				value="150" /> <!-- if the distance between the mouse and the item (depending on rollOverZoom) is less than mouseInfluence, the item will be zoomed -->
	<object param="rollOverZoom"				value="0" />
	<!-- boolean. if (0) the mouseInfluence distance is calculated from the edges of the item. if (1) the distance is calculated from the center -->
	
	<!-- image border settings -->
	<object param="borderAlpha"					value="50" /> <!-- 0..100 - border transparency -->
	<object param="borderColor"					value="0xEEE5DE" /><!-- 0x000000..0xFFFFFF - border color -->
	<object param="borderSize"					value="1" /> <!-- in pixels - this will represent the size when the image is at max width and height -->
	<!-- overshadow settings -->
	<object param="overShadowAlpha"				value="0" /><!-- 0..100 - overshadow transparency -->
	<object param="overShadowColor"				value="0xaaaaaa" /><!-- 0x000000..0xFFFFFF - overshadow color -->
	<!-- highlighting settings -->
	<object param="useRollOverColoring"			value="1" /><!-- 0 or 1 - if 0 there is no rollOver highlighting effect used -->
	<object param="rollOverColorIntensity"		value="30" /><!-- 40 par défaut color intensity while mouse cursor is over the item -->
	<object param="rollOutColorIntensity"		value="-10" /><!-- initial intensity -->
	<object param="coloringSpeed"				value="5" />
	
	<!-- reflection properties -->
	<object param="reflectAlpha"				value="0" /><!-- 0..100 - reflection transparency - the reflection alpha will also affect the overshadow movieclip over the reflection, making it more transparent-->
	<object param="reflectDistance"				value="0" /><!-- 0..N - distance from the original image to the reflection, in pixels -->
	<object param="reflectPercentage"			value="0" /><!-- 0..100 - the size of the reflection, in percentages; full image reflection = 100 -->
	<object param="reflectDirection"			value="bottom" /><!-- the position of the reflection. values are: "top", "bottom", "left", "right" -->
	
	<!-- tooltip properties -->
	<object param="useTooltip"					value="1" /><!-- 0 or 1 - if 0 there will be no tooltip displayed -->
	<object param="tooltipAlpha"				value="80" /><!-- 0..100 - tooltip transparency - will NOT affect the tooltip border -->
	<object param="tooltipColor"				value="0x88a6b7" /><!-- 0x000000..0xFFFFFF - tooltip background color -->
	<object param="tooltipCornerRadius"			value="4" /><!-- 0..N - for "0" - square corners, for value != "0" the corners are rounded -->
	<object param="tooltipWidth"				value="-1" /> <!-- tooltip text size (does not include padding and border sizes); for an autosizing tooltip do not define this parameter or leave as "-1" -->
		<!-- tooltip border -->
	<object param="tooltipBorderAlpha"			value="240" /> <!-- 0..100 - tooltip border transparency -->
	<object param="tooltipBorderColor"			value="0xa4a27c" /> <!-- 0x000000..0xFFFFFF - tooltip border color -->
	<object param="tooltipBorderSize"			value="2" /><!-- 0..N - tooltip border size in pixels -->
	<object param="tooltipUseRoundBorder"		value="1" /><!-- 0 or 1, if "1" the border will try to round the border corners depending on the tooltip corner radius -->
		<!-- tooltip positioning -->
	<object param="tooltipPosition"				value="bl" /> 
	<!-- the default position of the tooltip in relation to the mouse pointer.
		values are: "tl", "tc", "tr", "cl", "cc", "cr", "bl", "bc", "br" or "topleft", "topcenter", "topright", "centerleft", "centercenter", "centerright", "bottomleft", "bottomcenter", "bottomright".
		the tooltip will try to remain within the dockmenu [trying to change its default position - if no position is completely within the menu, it will default to the closest one]
	-->
	<object param="tooltipForcePosition"		value="0" /> <!-- 0 or 1. if "1" the tooltip will not change its default position to avoid getting offscreen -->
	<object param="tooltipMouseHDistance"		value="5" /> <!-- value in pixels. the horizontal distance from the mouse icon to the tooltip -->
	<object param="tooltipMouseVDistance"		value="10" /> <!-- value in pixels. the vertical distance from the mouse icon to the tooltip -->
	<object param="tooltipLeftPadding"			value="5" /><!-- value in pixels. the horizontal distance from tooltip's edge to the text inside it -->
	<object param="tooltipTopPadding"			value="5" /><!-- value in pixels. the vertical distance from tooltip's edge to the text inside it -->
		<!-- tooltip in animation -->
	<object param="tooltipTransitionType"		value="cubic" /><!-- tooltip transitions for the fade in animation -->
	<object param="tooltipTransitionMethod"		value="easeOut" />
<!-- 
        type values: back, bounce, circ, cubic, elastic, expo, linear, quad, quart, quint, sine
        for a more detailed view of these types of transitions you can visit http://hosted.zeh.com.br/tweener/docs/en-us/

        method values: easeIn, easeOut, easeInOut, easeOutIn
        for the linear type no ease function is available

        some transitions may break the menu. test carefully.        -->	
	<object param="tooltipDuration"				value="0.7" /> <!-- tooltip transition duration -->
	<object param="tooltipDelay"				value="0" /> <!-- tooltip transition delay -->
	<object param="tooltipAnimation"			value="zbc" /> 
	<!-- the position and type of fade in animation the tooltip will use for fading in.
		values are: "moveTop", "moveBottom", "moveLeft", "moveRight", "moveAlpha", "zoomTopLeft", "zoomTopCenter", "zoomTopRight", "zoomCenterLeft", "zoomCenterCenter", "zoomCenterRight", "zoomBottomLeft", "zoomBottomCenter", "zoomBottomRight" 
		or the abreviations (for example "zoomTopLeft" = "ztl")
	-->
	<object param="tooltipEmbeddedFont"			value="font_Default" /><!-- the font linkaged id used by the tooltip -->
	<object param="tooltipCSS"					value="css/style.css" /><!-- the path to the css file used by the tooltip -->
	
	<!-- autoplay -->
	<object param="autoPlayType"				value="1" /> <!-- 0 - disabled; 1 - simulate mouse scrolling; 2 - select individual items -->
	<object param="autoPlaySpeed"				value="1.5" /> <!-- if (autoPlayType == 1) : value added to mouse position; else if (autoPlayType == 2) : the time it takes for the item to zoom, in seconds -->
	<object param="globalDelay"					value="0.5" /> <!-- time in seconds. used ONLY when autoPlayType == 2 -->
	<object param="endPlayBehavior"				value="1" /> <!-- 0 - stop when it hits the end; 1 - move autoplay backwards when it hits the end; 2 - start over from the first item -->
	<object param="startItem"					value="-1" /> <!-- used ONLY when autoPlayType == 2. the default start item for autoplay [0..n-1]. if "-1" the menu either starts with the last selected or with item 0 -->
	<object param="startDirection"				value="1" /> <!-- used ONLY when autoPlayType == 2. tells the direction the menu should go ("1":0 -> n; "-1":n -> 0) -->
	
	<!-- description box -->
	<object param="showDescription"				value="0" /> <!-- 0 - description box disabled;  1 -  description box visible -->
	<object param="descriptionTextWidth"		value="130" /> <!-- value in pixels - if <= 0 or not defined : the description box is using the autosize feature -->
	<object param="descriptionTextAlpha"		value="100" /> <!-- text transparency 0..100 -->	
	<object param="descriptionTopPadding"		value="3" /> <!-- value in pixels - determines the distance from the text to the edge of the box -->
	<object param="descriptionLeftPadding"		value="2" /> <!-- value in pixels - determines the distance from the text to the edge of the box -->
	<object param="descriptionColor"			value="0x000000" /> <!-- hexa color value for box background -->
	<object param="descriptionAlpha"			value="90" /> <!-- description box transparency 0..100 -->
	<object param="descriptionCornerRadius"		value="1" /> <!-- description box corner radius -->
	<object param="descriptionCSS"				value="css/style.css" /> <!-- path to the description box css file -->
	<object param="descriptionBorderAlpha"		value="100" /> <!-- description box border transparency 0..100 -->
	<object param="descriptionBorderColor"		value="0xefefef" /> <!-- description box border color -->
	<object param="descriptionBorderSize"		value="3" /> <!-- description box border size -->
	<object param="descriptionUseRoundBorder"	value="1" /> <!-- 0 or 1: if 0 the borders will be right angled, 1 for round borders -->
	<object param="descriptionEmbeddedFont"		value="font_Default" /> <!-- font linkage id from the library -->
	<object param="descriptionPositionX"		value="70" /> <!-- x position of description box, "-1" for centered -->
	<object param="descriptionPositionY"		value="-1" /> <!-- y position of description box, "-1" for bottom alligned -->
	<object param="descriptionTransition"		value="fade" /> <!-- type of transition the description box uses for changing information. either "none" or "fade". for "none" it will remain visible even if nothing is displayed -->
	<object param="descriptionTransitionSpeed"	value="1" /> <!-- time in seconds for the transition  -->	
	<object param="descriptionCentered"			value="1" /> <!-- "0" or "1". if "1" the movieclip is centered (x,y position will represent it's center). if "0" x,y position refers to the top left corner-->
	
	<!-- autoplacement -->
	<object param="startingPosition"			value="-1" /> <!-- value in pixels. the position the dock menu starts at.-->
	<object param="alwaysGoToStart"				value="0" /> <!-- "0" or "1". if "1" the menu will always try to move to the starting position when the mouse rolls out-->
	
	<!--object param=""							value="" /> <!-- -->
	<object param="contentXML"					value="dock-contents.xml" /><!-- path to the xml file with the content info. if missing it defaults to "dock-contents.xml". FlashVars takes priority over this property-->
</settings>
