﻿<?xml version="1.0" encoding="utf-8"?>
<!-- This file generated from help file documentation on 12/3/2007 -->
<toolbox>
    <actionspanel>
        <folder name="Top Level" id="Top Level" sort="true" tiptext="The top level contains the core ActionScript classes and global functions.">
        <folder name="ArgumentError" id="ArgumentError" sort="true" index="true" asAncestors="Error,Object" tiptext="The ArgumentError class represents an error that occurs when the arguments supplied in a function do not match the arguments defined for that function." helpurl="HelpPanel/Help/ActionScriptLangRefV3/ArgumentError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ArgumentError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/ArgumentError.html">
                <string name="ArgumentError" object="ArgumentError" text="new ArgumentError(%message:String%)" constructor="true" tiptext="Creates an ArgumentError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/ArgumentError.html#ArgumentError()"/>
            </folder>
        </folder>
        <folder name="arguments" id="arguments" sort="true" index="true" asAncestors="Object" tiptext="An arguments object is used to store and access a function&apos;s arguments." helpurl="HelpPanel/Help/ActionScriptLangRefV3/arguments.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class arguments" helpurl="HelpPanel/Help/ActionScriptLangRefV3/arguments.html">
                <string name="callee" object="arguments" text=".callee" tiptext="A reference to the currently executing function." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/arguments.html#callee"/>
                <string name="length" object="arguments" text=".length" tiptext="The number of arguments passed to the function." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/arguments.html#length"/>
            </folder>
        </folder>
        <folder name="Array" id="Array" sort="true" index="true" asAncestors="Object" tiptext="The Array class lets you access and manipulate arrays." helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Array" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html">
                <string name="Array" object="Array" text="new Array(%[numElements:int=0]%)" constructor="true" tiptext="Lets you create an array of the specified number of elements." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#Array()"/>
                <string name="Array" object="Array" text="new Array(%values:restParam%)" constructor="true" tiptext="Lets you create an array that contains the specified elements." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#Array()"/>
                <string name="concat" object="Array" text=".concat(%args:restParam%):Array" tiptext="Concatenates the elements specified in the parameters." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#concat()"/>
                <string name="every" object="Array" text=".every(%callback:Function[,thisObject:*=null]%):Boolean" tiptext="Executes a test function on each item in the array until an item is reached that returns false for the specified function." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#every()"/>
                <string name="filter" object="Array" text=".filter(%callback:Function[,thisObject:*=null]%):Array" tiptext="Executes a test function on each item in the array and constructs a new array for all items that return true for the specified function." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#filter()"/>
                <string name="forEach" object="Array" text=".forEach(%callback:Function[,thisObject:*=null]%):void" tiptext="Executes a function on each item in the array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#forEach()"/>
                <string name="indexOf" object="Array" text=".indexOf(%searchElement:*[,fromIndex:int=0]%):int" tiptext="Searches for an item in an array by using strict equality (===) and returns the index position of the item." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#indexOf()"/>
                <string name="join" object="Array" text=".join(%[sep:*=unknown]%):String" tiptext="Converts the elements in an array to strings." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#join()"/>
                <string name="lastIndexOf" object="Array" text=".lastIndexOf(%searchElement:*[,fromIndex:int=0x7fffffff]%):int" tiptext="Searches for an item in an array, working backward from the last item, and returns the index position of the matching item using strict equality (===)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#lastIndexOf()"/>
                <string name="map" object="Array" text=".map(%callback:Function[,thisObject:*=null]%):Array" tiptext="Executes a function on each item in an array, and constructs a new array of items corresponding to the results of the function on each item in the original array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#map()"/>
                <string name="pop" object="Array" text=".pop(%%)" tiptext="Removes the last element from an array and returns the value of that element." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#pop()"/>
                <string name="push" object="Array" text=".push(%args:restParam%):uint" tiptext="Adds one or more elements to the end of an array and returns the new length of the array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#push()"/>
                <string name="reverse" object="Array" text=".reverse(%%):Array" tiptext="Reverses the array in place." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#reverse()"/>
                <string name="shift" object="Array" text=".shift(%%)" tiptext="Removes the first element from an array and returns that element." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#shift()"/>
                <string name="slice" object="Array" text=".slice(%[startIndex:int=0,endIndex:int=16777215]%):Array" tiptext="Returns a new array that consists of a range of elements from the original array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#slice()"/>
                <string name="some" object="Array" text=".some(%callback:Function[,thisObject:*=null]%):Boolean" tiptext="Executes a test function on each item in the array until an item is reached that returns true." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#some()"/>
                <string name="sort" object="Array" text=".sort(%args:restParam%):Array" tiptext="Sorts the elements in an array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#sort()"/>
                <string name="sortOn" object="Array" text=".sortOn(%fieldName:Object[,options:Object=null]%):Array" tiptext="Sorts the elements in an array according to one or more fields in the array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#sortOn()"/>
                <string name="splice" object="Array" text=".splice(%startIndex:int,deleteCount:uint,values:restParam%):Array" tiptext="Adds elements to and removes elements from an array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#splice()"/>
                <string name="toString" object="Array" text=".toString(%%):String" tiptext="Returns a string that represents the elements in the specified array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#toString()"/>
                <string name="toLocaleString" object="Array" text=".toLocaleString(%%):String" tiptext="Returns a string that represents the elements in the specified array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#toLocaleString()"/>
                <string name="unshift" object="Array" text=".unshift(%args:restParam%):uint" tiptext="Adds one or more elements to the beginning of an array and returns the new length of the array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#unshift()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Array" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html">
                <string name="CASEINSENSITIVE" object="Array" text="Array.CASEINSENSITIVE" constant="true" tiptext="Specifies case-insensitive sorting for the Array class sorting methods." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#CASEINSENSITIVE"/>
                <string name="DESCENDING" object="Array" text="Array.DESCENDING" constant="true" tiptext="Specifies descending sorting for the Array class sorting methods." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#DESCENDING"/>
                <string name="NUMERIC" object="Array" text="Array.NUMERIC" constant="true" tiptext="Specifies numeric (instead of character-string) sorting for the Array class sorting methods." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#NUMERIC"/>
                <string name="RETURNINDEXEDARRAY" object="Array" text="Array.RETURNINDEXEDARRAY" constant="true" tiptext="Specifies that a sort returns an array that consists of array indices." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#RETURNINDEXEDARRAY"/>
                <string name="UNIQUESORT" object="Array" text="Array.UNIQUESORT" constant="true" tiptext="Specifies the unique sorting requirement for the Array class sorting methods." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#UNIQUESORT"/>
                <string name="length" object="Array" text=".length" tiptext="A non-negative integer specifying the number of elements in the array." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Array.html#length"/>
            </folder>
        </folder>
        <folder name="Boolean" id="Boolean" sort="true" index="true" asAncestors="Object" tiptext="A Boolean object is a data type that can have one of two values, either true or false, used for logical operations." helpurl="HelpPanel/Help/ActionScriptLangRefV3/Boolean.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Boolean" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Boolean.html">
                <string name="Boolean" object="Boolean" text="new Boolean(%[expression:Object=false]%)" constructor="true" tiptext="Creates a Boolean object with the specified value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Boolean.html#Boolean()"/>
                <string name="toString" object="Boolean" text=".toString(%%):String" tiptext="Returns the string representation (&quot;true&quot; or &quot;false&quot;) of the Boolean object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Boolean.html#toString()"/>
                <string name="valueOf" object="Boolean" text=".valueOf(%%):Boolean" tiptext="Returns true if the value of the specified Boolean object is true; false otherwise." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Boolean.html#valueOf()"/>
            </folder>
        </folder>
        <folder name="Date" id="Date" sort="true" index="true" asAncestors="Object" tiptext="The Date class represents date and time information." helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Date" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html">
                <string name="Date" object="Date" text="new Date(%yearOrTimevalue:Object,month:Number[,date:Number=1,hour:Number=0,minute:Number=0,second:Number=0,millisecond:Number=0]%)" constructor="true" tiptext="Constructs a new Date object that holds the specified date and time." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#Date()"/>
                <string name="UTC" object="Date" text="Date.UTC(%year:Number,month:Number[,date:Number=1,hour:Number=0,minute:Number=0,second:Number=0,millisecond:Number=0]%):Number" static="true" tiptext="Returns the number of milliseconds between midnight on January 1, 1970, universal time, and the time specified in the parameters." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#UTC()"/>
                <string name="getDate" object="Date" text=".getDate(%%):Number" tiptext="Returns the day of the month (an integer from 1 to 31) specified by a Date object according to local time." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getDate()"/>
                <string name="getDay" object="Date" text=".getDay(%%):Number" tiptext="Returns the day of the week (0 for Sunday, 1 for Monday, and so on) specified by this Date according to local time." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getDay()"/>
                <string name="getFullYear" object="Date" text=".getFullYear(%%):Number" tiptext="Returns the full year (a four-digit number, such as 2000) of a Date object according to local time." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getFullYear()"/>
                <string name="getHours" object="Date" text=".getHours(%%):Number" tiptext="Returns the hour (an integer from 0 to 23) of the day portion of a Date object according to local time." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getHours()"/>
                <string name="getMilliseconds" object="Date" text=".getMilliseconds(%%):Number" tiptext="Returns the milliseconds (an integer from 0 to 999) portion of a Date object according to local time." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getMilliseconds()"/>
                <string name="getMinutes" object="Date" text=".getMinutes(%%):Number" tiptext="Returns the minutes (an integer from 0 to 59) portion of a Date object according to local time." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getMinutes()"/>
                <string name="getMonth" object="Date" text=".getMonth(%%):Number" tiptext="Returns the month (0 for January, 1 for February, and so on) portion of this  Date according to local time." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getMonth()"/>
                <string name="getSeconds" object="Date" text=".getSeconds(%%):Number" tiptext="Returns the seconds (an integer from 0 to 59) portion of a Date object according to local time." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getSeconds()"/>
                <string name="getTime" object="Date" text=".getTime(%%):Number" tiptext="Returns the number of milliseconds since midnight January 1, 1970, universal time, for a Date object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getTime()"/>
                <string name="getTimezoneOffset" object="Date" text=".getTimezoneOffset(%%):Number" tiptext="Returns the difference, in minutes, between universal time (UTC) and the computer&apos;s local time." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getTimezoneOffset()"/>
                <string name="getUTCDate" object="Date" text=".getUTCDate(%%):Number" tiptext="Returns the day of the month (an integer from 1 to 31) of a Date object, according to universal time (UTC)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getUTCDate()"/>
                <string name="getUTCDay" object="Date" text=".getUTCDay(%%):Number" tiptext="Returns the day of the week (0 for Sunday, 1 for Monday, and so on) of this Date  according to universal time (UTC)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getUTCDay()"/>
                <string name="getUTCFullYear" object="Date" text=".getUTCFullYear(%%):Number" tiptext="Returns the four-digit year of a Date object according to universal time (UTC)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getUTCFullYear()"/>
                <string name="getUTCHours" object="Date" text=".getUTCHours(%%):Number" tiptext="Returns the hour (an integer from 0 to 23) of the day of a Date object according to universal time (UTC)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getUTCHours()"/>
                <string name="getUTCMilliseconds" object="Date" text=".getUTCMilliseconds(%%):Number" tiptext="Returns the milliseconds (an integer from 0 to 999) portion of a Date object according to universal time (UTC)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getUTCMilliseconds()"/>
                <string name="getUTCMinutes" object="Date" text=".getUTCMinutes(%%):Number" tiptext="Returns the minutes (an integer from 0 to 59) portion of a Date object according to universal time (UTC)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getUTCMinutes()"/>
                <string name="getUTCMonth" object="Date" text=".getUTCMonth(%%):Number" tiptext="Returns the month (0 [January] to 11 [December]) portion of a Date object according to universal time (UTC)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getUTCMonth()"/>
                <string name="getUTCSeconds" object="Date" text=".getUTCSeconds(%%):Number" tiptext="Returns the seconds (an integer from 0 to 59) portion of a Date object according to universal time (UTC)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#getUTCSeconds()"/>
                <string name="parse" object="Date" text="Date.parse(%date:String%):Number" static="true" tiptext="Converts a string representing a date into a number equaling the number of milliseconds elapsed since January 1, 1970, UTC." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#parse()"/>
                <string name="setDate" object="Date" text=".setDate(%day:Number%):Number" tiptext="Sets the day of the month, according to local time, and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setDate()"/>
                <string name="setFullYear" object="Date" text=".setFullYear(%year:Number,month:Number,day:Number%):Number" tiptext="Sets the year, according to local time, and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setFullYear()"/>
                <string name="setHours" object="Date" text=".setHours(%hour:Number,minute:Number,second:Number,millisecond:Number%):Number" tiptext="Sets the hour, according to local time, and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setHours()"/>
                <string name="setMilliseconds" object="Date" text=".setMilliseconds(%millisecond:Number%):Number" tiptext="Sets the milliseconds, according to local time, and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setMilliseconds()"/>
                <string name="setMinutes" object="Date" text=".setMinutes(%minute:Number,second:Number,millisecond:Number%):Number" tiptext="Sets the minutes, according to local time, and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setMinutes()"/>
                <string name="setMonth" object="Date" text=".setMonth(%month:Number,day:Number%):Number" tiptext="Sets the month and optionally the day of the month, according to local time, and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setMonth()"/>
                <string name="setSeconds" object="Date" text=".setSeconds(%second:Number,millisecond:Number%):Number" tiptext="Sets the seconds, according to local time, and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setSeconds()"/>
                <string name="setTime" object="Date" text=".setTime(%millisecond:Number%):Number" tiptext="Sets the date in milliseconds since midnight on January 1, 1970, and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setTime()"/>
                <string name="setUTCDate" object="Date" text=".setUTCDate(%day:Number%):Number" tiptext="Sets the day of the month, in universal time (UTC), and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setUTCDate()"/>
                <string name="setUTCFullYear" object="Date" text=".setUTCFullYear(%year:Number,month:Number,day:Number%):Number" tiptext="Sets the year, in universal time (UTC), and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setUTCFullYear()"/>
                <string name="setUTCHours" object="Date" text=".setUTCHours(%hour:Number,minute:Number,second:Number,millisecond:Number%):Number" tiptext="Sets the hour, in universal time (UTC), and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setUTCHours()"/>
                <string name="setUTCMilliseconds" object="Date" text=".setUTCMilliseconds(%millisecond:Number%):Number" tiptext="Sets the milliseconds, in universal time (UTC), and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setUTCMilliseconds()"/>
                <string name="setUTCMinutes" object="Date" text=".setUTCMinutes(%minute:Number,second:Number,millisecond:Number%):Number" tiptext="Sets the minutes, in universal time (UTC), and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setUTCMinutes()"/>
                <string name="setUTCMonth" object="Date" text=".setUTCMonth(%month:Number,day:Number%):Number" tiptext="Sets the month, and optionally the day, in universal time(UTC) and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setUTCMonth()"/>
                <string name="setUTCSeconds" object="Date" text=".setUTCSeconds(%second:Number,millisecond:Number%):Number" tiptext="Sets the seconds, and optionally the milliseconds, in universal time (UTC) and returns the new time in milliseconds." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#setUTCSeconds()"/>
                <string name="toDateString" object="Date" text=".toDateString(%%):String" tiptext="Returns a string representation of the day and date only, and does not include the time or timezone." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#toDateString()"/>
                <string name="toTimeString" object="Date" text=".toTimeString(%%):String" tiptext="Returns a String representation of the time and timezone only, and does not include the day and date." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#toTimeString()"/>
                <string name="toLocaleString" object="Date" text=".toLocaleString(%%):String" tiptext="Returns a String representation of the day, date, time, given in local time." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#toLocaleString()"/>
                <string name="toLocaleDateString" object="Date" text=".toLocaleDateString(%%):String" tiptext="Returns a String representation of the day and date only, and does not include the time or timezone." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#toLocaleDateString()"/>
                <string name="toLocaleTimeString" object="Date" text=".toLocaleTimeString(%%):String" tiptext="Returns a String representation of the time only, and does not include the day, date, year, or timezone." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#toLocaleTimeString()"/>
                <string name="toUTCString" object="Date" text=".toUTCString(%%):String" tiptext="Returns a String representation of the day, date, and time in universal time (UTC)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#toUTCString()"/>
                <string name="toString" object="Date" text=".toString(%%):String" tiptext="Returns a String representation of the day, date, time, and timezone." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#toString()"/>
                <string name="valueOf" object="Date" text=".valueOf(%%):Number" tiptext="Returns the number of milliseconds since midnight January 1, 1970, universal time, for a Date object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#valueOf()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Date" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html">
                <string name="fullYear" object="Date" text=".fullYear" tiptext="The full year (a four-digit number, such as 2000) of a Date object according to local time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#fullYear"/>
                <string name="month" object="Date" text=".month" tiptext="The month (0 for January, 1 for February, and so on) portion of a  Date object according to local time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#month"/>
                <string name="date" object="Date" text=".date" tiptext="The day of the month (an integer from 1 to 31) specified by a Date object according to local time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#date"/>
                <string name="hours" object="Date" text=".hours" tiptext="The hour (an integer from 0 to 23) of the day portion of a Date object according to local time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#hours"/>
                <string name="minutes" object="Date" text=".minutes" tiptext="The minutes (an integer from 0 to 59) portion of a Date object according to local time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#minutes"/>
                <string name="seconds" object="Date" text=".seconds" tiptext="The seconds (an integer from 0 to 59) portion of a Date object according to local time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#seconds"/>
                <string name="milliseconds" object="Date" text=".milliseconds" tiptext="The milliseconds (an integer from 0 to 999) portion of a Date object according to local time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#milliseconds"/>
                <string name="fullYearUTC" object="Date" text=".fullYearUTC" tiptext="The four-digit year of a Date object according to universal time (UTC)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#fullYearUTC"/>
                <string name="monthUTC" object="Date" text=".monthUTC" tiptext="The month (0 [January] to 11 [December]) portion of a Date object according to universal time (UTC)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#monthUTC"/>
                <string name="dateUTC" object="Date" text=".dateUTC" tiptext="The day of the month (an integer from 1 to 31) of a Date object according to universal time (UTC)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#dateUTC"/>
                <string name="hoursUTC" object="Date" text=".hoursUTC" tiptext="The hour (an integer from 0 to 23) of the day of a Date object according to universal time (UTC)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#hoursUTC"/>
                <string name="minutesUTC" object="Date" text=".minutesUTC" tiptext="The minutes (an integer from 0 to 59) portion of a Date object according to universal time (UTC)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#minutesUTC"/>
                <string name="secondsUTC" object="Date" text=".secondsUTC" tiptext="The seconds (an integer from 0 to 59) portion of a Date object according to universal time (UTC)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#secondsUTC"/>
                <string name="millisecondsUTC" object="Date" text=".millisecondsUTC" tiptext="The milliseconds (an integer from 0 to 999) portion of a Date object according to universal time (UTC)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#millisecondsUTC"/>
                <string name="time" object="Date" text=".time" tiptext="The number of milliseconds since midnight January 1, 1970, universal time, for a Date object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#time"/>
                <string name="timezoneOffset" object="Date" text=".timezoneOffset" tiptext="The difference, in minutes, between universal time (UTC) and the computer&apos;s local time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#timezoneOffset"/>
                <string name="day" object="Date" text=".day" tiptext="The day of the week (0 for Sunday, 1 for Monday, and so on) specified by this Date according to local time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#day"/>
                <string name="dayUTC" object="Date" text=".dayUTC" tiptext="The day of the week (0 for Sunday, 1 for Monday, and so on) of this Date  according to universal time (UTC)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Date.html#dayUTC"/>
            </folder>
        </folder>
        <folder name="DefinitionError" id="DefinitionError" sort="true" index="true" asAncestors="Error,Object" tiptext="The DefinitionError class represents an error that occurs when user code attempts to define an identifier that is already defined." helpurl="HelpPanel/Help/ActionScriptLangRefV3/DefinitionError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DefinitionError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/DefinitionError.html">
                <string name="DefinitionError" object="DefinitionError" text="new DefinitionError(%message:String%)" constructor="true" tiptext="Creates a new DefinitionError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/DefinitionError.html#DefinitionError()"/>
            </folder>
        </folder>
        <folder name="Error" id="Error" sort="true" index="true" asAncestors="Object" tiptext="The Error class contains information about an error that occurred in a script." helpurl="HelpPanel/Help/ActionScriptLangRefV3/Error.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Error" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Error.html">
                <string name="Error" object="Error" text="new Error(%message:String[,id:int=0]%)" constructor="true" tiptext="Creates a new Error instance with the specified error message." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Error.html#Error()"/>
                <string name="getStackTrace" object="Error" text=".getStackTrace(%%):String" tiptext="Returns the call stack for an error in a readable form." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Error.html#getStackTrace()"/>
                <string name="toString" object="Error" text=".toString(%%):String" tiptext="Returns the error message, or the word &quot;Error&quot; if the message is undefined." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Error.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Error" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Error.html">
                <string name="message" object="Error" text=".message" tiptext="Contains the message associated with the Error object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Error.html#message"/>
                <string name="name" object="Error" text=".name" tiptext="Contains the name of the Error object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Error.html#name"/>
                <string name="errorID" object="Error" text=".errorID" tiptext="Contains the reference number associated with the specific error message." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Error.html#errorID"/>
            </folder>
        </folder>
        <folder name="EvalError" id="EvalError" sort="true" index="true" asAncestors="Error,Object" tiptext="The EvalError class represents an error that occurs when user code calls the eval() function or attempts to use the new operator with the Function object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/EvalError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class EvalError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/EvalError.html">
                <string name="EvalError" object="EvalError" text="new EvalError(%message:String%)" constructor="true" tiptext="Creates a new EvalError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/EvalError.html#EvalError()"/>
            </folder>
        </folder>
        <folder name="Function" id="Function" sort="true" index="true" asAncestors="Object" tiptext="A function is the basic unit of code that can be invoked in ActionScript." helpurl="HelpPanel/Help/ActionScriptLangRefV3/Function.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Function" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Function.html">
                <string name="apply" object="Function" text=".apply(%thisObject:Object[,argArray:Array=null]%):void" tiptext="Specifies the object instance on which the Function is called." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Function.html#apply()"/>
                <string name="call" object="Function" text=".call(%thisObject:Object[,parameter1:String=null]%):void" tiptext="Invokes this Function." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Function.html#call()"/>
            </folder>
        </folder>
        <folder name="int" id="int" sort="true" index="true" asAncestors="Object" tiptext="The int class lets you work with the data type representing a 32-bit signed integer." helpurl="HelpPanel/Help/ActionScriptLangRefV3/int.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class int" helpurl="HelpPanel/Help/ActionScriptLangRefV3/int.html">
                <string name="int" object="int" text="new int(%num:Object%)" constructor="true" tiptext="Constructor; creates a new int object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/int.html#int()"/>
                <string name="toString" object="int" text=".toString(%radix:uint%):String" tiptext="Returns the string representation of an int object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/int.html#toString()"/>
                <string name="valueOf" object="int" text=".valueOf(%%):int" tiptext="Returns the primitive value of the specified int object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/int.html#valueOf()"/>
                <string name="toFixed" object="int" text=".toFixed(%fractionDigits:uint%):String" tiptext="Returns a string representation of the number in fixed-point notation." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/int.html#toFixed()"/>
                <string name="toExponential" object="int" text=".toExponential(%fractionDigits:uint%):String" tiptext="Returns a string representation of the number in exponential notation." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/int.html#toExponential()"/>
                <string name="toPrecision" object="int" text=".toPrecision(%precision:uint%):String" tiptext="Returns a string representation of the number either in exponential notation or in fixed-point notation." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/int.html#toPrecision()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class int" helpurl="HelpPanel/Help/ActionScriptLangRefV3/int.html">
                <string name="MAX_VALUE" object="int" text="int.MAX_VALUE" constant="true" tiptext="The largest representable 32-bit signed integer, which is 2,147,483,647." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/int.html#MAX_VALUE"/>
                <string name="MIN_VALUE" object="int" text="int.MIN_VALUE" constant="true" tiptext="The smallest representable 32-bit signed integer, which is -2,147,483,648." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/int.html#MIN_VALUE"/>
            </folder>
        </folder>
        <folder name="Math" id="Math" sort="true" index="true" asAncestors="Object" tiptext="The Math class contains methods and constants that represent common mathematical functions and values." helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Math" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html">
                <string name="abs" object="Math" text="Math.abs(%val:Number%):Number" static="true" tiptext="Returns the absolute value of the specified Number." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#abs()"/>
                <string name="acos" object="Math" text="Math.acos(%val:Number%):Number" static="true" tiptext="Returns the arc cosine, in radians, of the specified Number." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#acos()"/>
                <string name="asin" object="Math" text="Math.asin(%val:Number%):Number" static="true" tiptext="Returns the value, in radians, of the arc sine of the specified Number parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#asin()"/>
                <string name="atan" object="Math" text="Math.atan(%val:Number%):Number" static="true" tiptext="Returns the angle, in radians, whose tangent is specified by parameter val." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#atan()"/>
                <string name="atan2" object="Math" text="Math.atan2(%y:Number,x:Number%):Number" static="true" tiptext="Returns the angle of the point y/x in radians, when measured counterclockwise from a circle&apos;s x axis." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#atan2()"/>
                <string name="ceil" object="Math" text="Math.ceil(%val:Number%):Number" static="true" tiptext="Returns the ceiling of the specified number or expression." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#ceil()"/>
                <string name="cos" object="Math" text="Math.cos(%angleRadians:Number%):Number" static="true" tiptext="Returns the cosine of the specified angle." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#cos()"/>
                <string name="exp" object="Math" text="Math.exp(%val:Number%):Number" static="true" tiptext="Returns the value of the base of the natural logarithm (e), to the power of the exponent specified in the parameter val." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#exp()"/>
                <string name="floor" object="Math" text="Math.floor(%val:Number%):Number" static="true" tiptext="Returns the floor of the number or expression specified in the parameter val." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#floor()"/>
                <string name="log" object="Math" text="Math.log(%val:Number%):Number" static="true" tiptext="Returns the natural logarithm of parameter val." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#log()"/>
                <string name="max" object="Math" text="Math.max(%val1:Number,val2:Number,rest:restParam%):Number" static="true" tiptext="Evaluates parameters val1 and val2 and returns the larger value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#max()"/>
                <string name="min" object="Math" text="Math.min(%val1:Number,val2:Number,rest:restParam%):Number" static="true" tiptext="Evaluates parameters val1 and val2 and returns the smaller value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#min()"/>
                <string name="pow" object="Math" text="Math.pow(%val1:Number,val2:Number%):Number" static="true" tiptext="Returns val1 to the power of val2." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#pow()"/>
                <string name="random" object="Math" text="Math.random(%%):Number" static="true" tiptext="Returns a pseudo-random number n, where 0 &amp;lt;= n &amp;lt; 1." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#random()"/>
                <string name="round" object="Math" text="Math.round(%val:Number%):Number" static="true" tiptext="Returns the value of parameter val rounded up or down to the nearest integer." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#round()"/>
                <string name="sin" object="Math" text="Math.sin(%angleRadians:Number%):Number" static="true" tiptext="Returns the sine of the specified angle." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#sin()"/>
                <string name="sqrt" object="Math" text="Math.sqrt(%val:Number%):Number" static="true" tiptext="Returns the square root of the specified number." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#sqrt()"/>
                <string name="tan" object="Math" text="Math.tan(%angleRadians:Number%):Number" static="true" tiptext="Returns the tangent of the specified angle." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#tan()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Math" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html">
                <string name="E" object="Math" text="Math.E" constant="true" tiptext="A mathematical constant for the base of natural logarithms, expressed as e." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#E"/>
                <string name="LN10" object="Math" text="Math.LN10" constant="true" tiptext="A mathematical constant for the natural logarithm of 10, expressed as loge10, with an approximate value of 2.302585092994046." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#LN10"/>
                <string name="LN2" object="Math" text="Math.LN2" constant="true" tiptext="A mathematical constant for the natural logarithm of 2, expressed as loge2, with an approximate value of 0.6931471805599453." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#LN2"/>
                <string name="LOG10E" object="Math" text="Math.LOG10E" constant="true" tiptext="A mathematical constant for the base-10 logarithm of the constant e (Math.E), expressed as log10e, with an approximate value of 0.4342944819032518." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#LOG10E"/>
                <string name="LOG2E" object="Math" text="Math.LOG2E" constant="true" tiptext="A mathematical constant for the base-2 logarithm of the constant e, expressed as log2e, with an approximate value of 1.442695040888963387." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#LOG2E"/>
                <string name="PI" object="Math" text="Math.PI" constant="true" tiptext="A mathematical constant for the ratio of the circumference of a circle to its diameter, expressed as pi, with a value of 3.141592653589793." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#PI"/>
                <string name="SQRT1_2" object="Math" text="Math.SQRT1_2" constant="true" tiptext="A mathematical constant for the square root of one-half, with an approximate value of 0.7071067811865476." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#SQRT1_2"/>
                <string name="SQRT2" object="Math" text="Math.SQRT2" constant="true" tiptext="A mathematical constant for the square root of 2, with an approximate value of 1.4142135623730951." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Math.html#SQRT2"/>
            </folder>
        </folder>
        <folder name="Namespace" id="Namespace" sort="true" index="true" asAncestors="Object" tiptext="The Namespace class contains methods and properties for defining and working with namespaces." helpurl="HelpPanel/Help/ActionScriptLangRefV3/Namespace.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Namespace" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Namespace.html">
                <string name="Namespace" object="Namespace" text="new Namespace(%uriValue:*%)" constructor="true" tiptext="Creates a Namespace object, given the uriValue." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Namespace.html#Namespace()"/>
                <string name="Namespace" object="Namespace" text="new Namespace(%prefixValue:*,uriValue:*%)" constructor="true" tiptext="Creates a Namespace object, given the prefixValue and uriValue." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Namespace.html#Namespace()"/>
                <string name="toString" object="Namespace" text=".toString(%%):String" tiptext="Equivalent to the Namespace.uri property." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Namespace.html#toString()"/>
                <string name="valueOf" object="Namespace" text=".valueOf(%%):String" tiptext="Equivalent to the Namespace.uri property." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Namespace.html#valueOf()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Namespace" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Namespace.html">
                <string name="prefix" object="Namespace" text=".prefix" tiptext="The prefix of the namespace." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Namespace.html#prefix"/>
                <string name="uri" object="Namespace" text=".uri" tiptext="The Uniform Resource Identifier (URI) of the namespace." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Namespace.html#uri"/>
            </folder>
        </folder>
        <folder name="Number" id="Number" sort="true" index="true" asAncestors="Object" tiptext="A data type representing an IEEE-754 double-precision floating-point number." helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Number" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html">
                <string name="Number" object="Number" text="new Number(%num:Object%)" constructor="true" tiptext="Creates a Number with the specified value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html#Number()"/>
                <string name="toString" object="Number" text=".toString(%[radix:Number=10]%):String" tiptext="Returns the string representation of this Number using the specified radix parameter as the numeric base." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html#toString()"/>
                <string name="valueOf" object="Number" text=".valueOf(%%):Number" tiptext="Returns the primitive value type of the specified Number object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html#valueOf()"/>
                <string name="toFixed" object="Number" text=".toFixed(%fractionDigits:uint%):String" tiptext="Returns a string representation of the number in fixed-point notation." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html#toFixed()"/>
                <string name="toExponential" object="Number" text=".toExponential(%fractionDigits:uint%):String" tiptext="Returns a string representation of the number in exponential notation." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html#toExponential()"/>
                <string name="toPrecision" object="Number" text=".toPrecision(%precision:uint%):String" tiptext="Returns a string representation of the number either in exponential notation or in fixed-point notation." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html#toPrecision()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Number" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html">
                <string name="MAX_VALUE" object="Number" text="Number.MAX_VALUE" constant="true" tiptext="The largest representable number (double-precision IEEE-754)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html#MAX_VALUE"/>
                <string name="MIN_VALUE" object="Number" text="Number.MIN_VALUE" constant="true" tiptext="The smallest representable non-negative, non-zero, number (double-precision IEEE-754)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html#MIN_VALUE"/>
                <string name="NaN" object="Number" text="Number.NaN" constant="true" tiptext="The IEEE-754 value representing Not a Number (NaN)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html#NaN"/>
                <string name="NEGATIVE_INFINITY" object="Number" text="Number.NEGATIVE_INFINITY" constant="true" tiptext="Specifies the IEEE-754 value representing negative infinity." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html#NEGATIVE_INFINITY"/>
                <string name="POSITIVE_INFINITY" object="Number" text="Number.POSITIVE_INFINITY" constant="true" tiptext="Specifies the IEEE-754 value representing positive infinity." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Number.html#POSITIVE_INFINITY"/>
            </folder>
        </folder>
        <folder name="Object" id="Object" sort="true" index="true" tiptext="The Object class is at the root of the ActionScript class hierarchy." helpurl="HelpPanel/Help/ActionScriptLangRefV3/Object.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Object" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Object.html">
                <string name="Object" object="Object" text="new Object(%%)" constructor="true" tiptext="Creates an Object object and stores a reference to the object&apos;s constructor method in the object&apos;s constructor property." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Object.html#Object()"/>
                <string name="hasOwnProperty" object="Object" text=".hasOwnProperty(%name:String%):Boolean" tiptext="Indicates whether an object has a specified property defined." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Object.html#hasOwnProperty()"/>
                <string name="propertyIsEnumerable" object="Object" text=".propertyIsEnumerable(%name:String%):Boolean" tiptext="Indicates whether the specified property exists and is enumerable." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Object.html#propertyIsEnumerable()"/>
                <string name="isPrototypeOf" object="Object" text=".isPrototypeOf(%theClass:Object%):Boolean" tiptext="Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Object.html#isPrototypeOf()"/>
                <string name="setPropertyIsEnumerable" object="Object" text=".setPropertyIsEnumerable(%name:String[,isEnum:Boolean=true]%):void" tiptext="Sets the availability of a dynamic property for loop operations." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Object.html#setPropertyIsEnumerable()"/>
                <string name="toString" object="Object" text=".toString(%%):String" tiptext="Returns the string representation of the specified object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Object.html#toString()"/>
                <string name="valueOf" object="Object" text=".valueOf(%%):Object" tiptext="Returns the primitive value of the specified object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/Object.html#valueOf()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Object" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Object.html">
                <string name="prototype" object="Object" text=".prototype" tiptext="A reference to the prototype object of a class or function object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Object.html#prototype"/>
                <string name="constructor" object="Object" text=".constructor" tiptext="A reference to the class object or constructor function for a given object instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/Object.html#constructor"/>
            </folder>
        </folder>
        <folder name="QName" id="QName" sort="true" index="true" asAncestors="Object" tiptext="QName objects represent qualified names of XML elements and attributes." helpurl="HelpPanel/Help/ActionScriptLangRefV3/QName.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class QName" helpurl="HelpPanel/Help/ActionScriptLangRefV3/QName.html">
                <string name="QName" object="QName" text="new QName(%uri:Namespace,localName:QName%)" constructor="true" tiptext="Creates a QName object with a URI from a Namespace object and a localName from a QName object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/QName.html#QName()"/>
                <string name="QName" object="QName" text="new QName(%qname:QName%)" constructor="true" tiptext="Creates a QName object that is a copy of another QName object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/QName.html#QName()"/>
                <string name="toString" object="QName" text=".toString(%%):String" tiptext="Returns a string composed of the URI, and the local name for the QName object, separated by &quot;::&quot;." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/QName.html#toString()"/>
                <string name="valueOf" object="QName" text=".valueOf(%%):QName" tiptext="Returns the QName object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/QName.html#valueOf()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class QName" helpurl="HelpPanel/Help/ActionScriptLangRefV3/QName.html">
                <string name="localName" object="QName" text=".localName" tiptext="The local name of the QName object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/QName.html#localName"/>
                <string name="uri" object="QName" text=".uri" tiptext="The Uniform Resource Identifier (URI) of the QName object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/QName.html#uri"/>
            </folder>
        </folder>
        <folder name="RangeError" id="RangeError" sort="true" index="true" asAncestors="Error,Object" tiptext="A RangeError exception is thrown when a numeric value is outside the acceptable range." helpurl="HelpPanel/Help/ActionScriptLangRefV3/RangeError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class RangeError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/RangeError.html">
                <string name="RangeError" object="RangeError" text="new RangeError(%message:String%)" constructor="true" tiptext="Creates a new RangeError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/RangeError.html#RangeError()"/>
            </folder>
        </folder>
        <folder name="ReferenceError" id="ReferenceError" sort="true" index="true" asAncestors="Error,Object" tiptext="A ReferenceError exception is thrown when a reference to an undefined property is attempted on a sealed (nondynamic) object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/ReferenceError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ReferenceError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/ReferenceError.html">
                <string name="ReferenceError" object="ReferenceError" text="new ReferenceError(%message:String%)" constructor="true" tiptext="Creates a new ReferenceError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/ReferenceError.html#ReferenceError()"/>
            </folder>
        </folder>
        <folder name="RegExp" id="RegExp" sort="true" index="true" asAncestors="Object" tiptext="The RegExp class lets you work with regular expressions, which are patterns that you can use to perform searches in strings and to replace text in strings." helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class RegExp" helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html">
                <string name="RegExp" object="RegExp" text="new RegExp(%re:String,flags:String%)" constructor="true" tiptext="Lets you construct a regular expression from two strings." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html#RegExp()"/>
                <string name="exec" object="RegExp" text=".exec(%str:String%):Object" tiptext="Performs a search for the regular expression on the given string str." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html#exec()"/>
                <string name="test" object="RegExp" text=".test(%str:String%):Boolean" tiptext="Tests for the match of the regular expression in the given string str." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html#test()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class RegExp" helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html">
                <string name="dotall" object="RegExp" text=".dotall" tiptext="Specifies whether the dot character (.) in a regular expression pattern matches new-line characters." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html#dotall"/>
                <string name="extended" object="RegExp" text=".extended" tiptext="Specifies whether to use extended mode for the regular expression." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html#extended"/>
                <string name="global" object="RegExp" text=".global" tiptext="Specifies whether to use global matching for the regular expression." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html#global"/>
                <string name="ignoreCase" object="RegExp" text=".ignoreCase" tiptext="Specifies whether the regular expression ignores case sensitivity." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html#ignoreCase"/>
                <string name="lastIndex" object="RegExp" text=".lastIndex" tiptext="Specifies the index position in the string at which to start the next search." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html#lastIndex"/>
                <string name="multiline" object="RegExp" text=".multiline" tiptext="Specifies whether the m (multiline) flag is set." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html#multiline"/>
                <string name="source" object="RegExp" text=".source" tiptext="Specifies the pattern portion of the regular expression." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/RegExp.html#source"/>
            </folder>
        </folder>
        <folder name="SecurityError" id="SecurityError" sort="true" index="true" asAncestors="Error,Object" tiptext="The SecurityError exception is thrown when some type of security violation takes place." helpurl="HelpPanel/Help/ActionScriptLangRefV3/SecurityError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SecurityError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/SecurityError.html">
                <string name="SecurityError" object="SecurityError" text="new SecurityError(%message:String%)" constructor="true" tiptext="Creates a new SecurityError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/SecurityError.html#SecurityError()"/>
            </folder>
        </folder>
        <folder name="String" id="String" sort="true" index="true" asAncestors="Object" tiptext="The String class is a data type that represents a string of characters." helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class String" helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html">
                <string name="String" object="String" text="new String(%val:String%)" constructor="true" tiptext="Creates a new String object initialized to the specified string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#String()"/>
                <string name="fromCharCode" object="String" text="String.fromCharCode(%charCodes:restParam%):String" static="true" tiptext="Returns a string comprising the characters represented by the Unicode character codes in the parameters." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#fromCharCode()"/>
                <string name="charAt" object="String" text=".charAt(%[index:Number=0]%):String" tiptext="Returns the character in the position specified by the index parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#charAt()"/>
                <string name="charCodeAt" object="String" text=".charCodeAt(%[index:Number=0]%):Number" tiptext="Returns the numeric Unicode character code of the character at the specified index." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#charCodeAt()"/>
                <string name="concat" object="String" text=".concat(%args:restParam%):String" tiptext="Appends the supplied arguments to the end of the String object, converting them to strings if necessary, and returns the resulting string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#concat()"/>
                <string name="indexOf" object="String" text=".indexOf(%val:String[,startIndex:Number=0]%):int" tiptext="Searches the string and returns the position of the first occurrence of val found at or after startIndex within the calling string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#indexOf()"/>
                <string name="lastIndexOf" object="String" text=".lastIndexOf(%val:String[,startIndex:Number=0x7FFFFFFF]%):int" tiptext="Searches the string from right to left and returns the index of the last occurrence of val found before startIndex." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#lastIndexOf()"/>
                <string name="localeCompare" object="String" text=".localeCompare(%other:String,values:restParam%):int" tiptext="Compares the sort order of two or more strings and returns the result of the comparison as an integer." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#localeCompare()"/>
                <string name="replace" object="String" text=".replace(%pattern:*,repl:Object%):String" tiptext="Matches the specifed pattern against the string and returns a new string in which the first match of pattern is replaced with the content specified by repl." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#replace()"/>
                <string name="match" object="String" text=".match(%pattern:*%):Array" tiptext="Matches the specifed pattern against the string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#match()"/>
                <string name="search" object="String" text=".search(%pattern:*%):int" tiptext="Searches for the specifed pattern and returns the index of the first matching substring." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#search()"/>
                <string name="slice" object="String" text=".slice(%[startIndex:Number=0,endIndex:Number=0x7fffffff]%):String" tiptext="Returns a string that includes the startIndex character and all characters up to, but not including, the endIndex character." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#slice()"/>
                <string name="split" object="String" text=".split(%delimiter:*[,limit:Number=0x7fffffff]%):Array" tiptext="Splits a String object into an array of substrings by dividing it wherever the specified delimiter parameter occurs." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#split()"/>
                <string name="substr" object="String" text=".substr(%[startIndex:Number=0,len:Number=0x7fffffff]%):String" tiptext="Returns a substring consisting of the characters that start at the specified  startIndex and with a length specified by len." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#substr()"/>
                <string name="substring" object="String" text=".substring(%[startIndex:Number=0,endIndex:Number=0x7fffffff]%):String" tiptext="Returns a string consisting of the character specified by startIndex and all characters up to endIndex - 1." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#substring()"/>
                <string name="toLowerCase" object="String" text=".toLowerCase(%%):String" tiptext="Returns a copy of this string, with all uppercase characters converted to lowercase." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#toLowerCase()"/>
                <string name="toLocaleLowerCase" object="String" text=".toLocaleLowerCase(%%):String" tiptext="Returns a copy of this string, with all uppercase characters converted to lowercase." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#toLocaleLowerCase()"/>
                <string name="toUpperCase" object="String" text=".toUpperCase(%%):String" tiptext="Returns a copy of this string, with all lowercase characters converted to uppercase." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#toUpperCase()"/>
                <string name="toLocaleUpperCase" object="String" text=".toLocaleUpperCase(%%):String" tiptext="Returns a copy of this string, with all lowercase characters converted to uppercase." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#toLocaleUpperCase()"/>
                <string name="valueOf" object="String" text=".valueOf(%%):String" tiptext="Returns the primitive value of a String instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#valueOf()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class String" helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html">
                <string name="length" object="String" text=".length" tiptext="An integer specifying the number of characters in the specified String object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/String.html#length"/>
            </folder>
        </folder>
        <folder name="SyntaxError" id="SyntaxError" sort="true" index="true" asAncestors="Error,Object" tiptext="A SyntaxError exception is thrown when a parsing error occurs." helpurl="HelpPanel/Help/ActionScriptLangRefV3/SyntaxError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SyntaxError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/SyntaxError.html">
                <string name="SyntaxError" object="SyntaxError" text="new SyntaxError(%message:String%)" constructor="true" tiptext="Creates a new SyntaxError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/SyntaxError.html#SyntaxError()"/>
            </folder>
        </folder>
        <folder name="TypeError" id="TypeError" sort="true" index="true" asAncestors="Error,Object" tiptext="A TypeError exception is thrown when the actual type of an operand is different from the expected type." helpurl="HelpPanel/Help/ActionScriptLangRefV3/TypeError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TypeError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/TypeError.html">
                <string name="TypeError" object="TypeError" text="new TypeError(%message:String%)" constructor="true" tiptext="Creates a new TypeError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/TypeError.html#TypeError()"/>
            </folder>
        </folder>
        <folder name="uint" id="uint" sort="true" index="true" asAncestors="Object" tiptext="The uint class provides methods for working with a data type representing a 32-bit unsigned integer." helpurl="HelpPanel/Help/ActionScriptLangRefV3/uint.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class uint" helpurl="HelpPanel/Help/ActionScriptLangRefV3/uint.html">
                <string name="uint" object="uint" text="new uint(%num:Object%)" constructor="true" tiptext="Creates a new uint object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/uint.html#uint()"/>
                <string name="toString" object="uint" text=".toString(%radix:uint%):String" tiptext="Returns the string representation of a uint object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/uint.html#toString()"/>
                <string name="valueOf" object="uint" text=".valueOf(%%):uint" tiptext="Returns the primitive uint type value of the specified uint object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/uint.html#valueOf()"/>
                <string name="toFixed" object="uint" text=".toFixed(%fractionDigits:uint%):String" tiptext="Returns a string representation of the number in fixed-point notation." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/uint.html#toFixed()"/>
                <string name="toExponential" object="uint" text=".toExponential(%fractionDigits:uint%):String" tiptext="Returns a string representation of the number in exponential notation." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/uint.html#toExponential()"/>
                <string name="toPrecision" object="uint" text=".toPrecision(%precision:uint%):String" tiptext="Returns a string representation of the number either in exponential notation or in fixed-point notation." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/uint.html#toPrecision()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class uint" helpurl="HelpPanel/Help/ActionScriptLangRefV3/uint.html">
                <string name="MAX_VALUE" object="uint" text="uint.MAX_VALUE" constant="true" tiptext="The largest representable 32-bit unsigned integer, which is 4,294,967,295." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/uint.html#MAX_VALUE"/>
                <string name="MIN_VALUE" object="uint" text="uint.MIN_VALUE" constant="true" tiptext="The smallest representable unsigned integer, which is 0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/uint.html#MIN_VALUE"/>
            </folder>
        </folder>
        <folder name="URIError" id="URIError" sort="true" index="true" asAncestors="Error,Object" tiptext="A URIError exception is thrown when one of the global URI handling functions is used in a way that is incompatible with its definition." helpurl="HelpPanel/Help/ActionScriptLangRefV3/URIError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class URIError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/URIError.html">
                <string name="URIError" object="URIError" text="new URIError(%message:String%)" constructor="true" tiptext="Creates a new URIError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/URIError.html#URIError()"/>
            </folder>
        </folder>
        <folder name="VerifyError" id="VerifyError" sort="true" index="true" asAncestors="Error,Object" tiptext="The VerifyError class represents an error that occurs when a malformed or corrupted SWF file is encountered." helpurl="HelpPanel/Help/ActionScriptLangRefV3/VerifyError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class VerifyError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/VerifyError.html">
                <string name="VerifyError" object="VerifyError" text="new VerifyError(%message:String%)" constructor="true" tiptext="Creates a new VerifyError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/VerifyError.html#VerifyError()"/>
            </folder>
        </folder>
        <folder name="XML" id="XML" sort="true" index="true" asAncestors="Object" tiptext="The XML class contains methods and properties for working with XML objects." helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class XML" helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html">
                <string name="XML" object="XML" text="new XML(%value:Object%)" constructor="true" tiptext="Creates a new XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#XML()"/>
                <string name="addNamespace" object="XML" text=".addNamespace(%ns:Object%):XML" tiptext="Adds a namespace to the set of in-scope namespaces for the XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#addNamespace()"/>
                <string name="appendChild" object="XML" text=".appendChild(%child:Object%):XML" tiptext="Appends the given child to the end of the XML object&apos;s properties." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#appendChild()"/>
                <string name="attribute" object="XML" text=".attribute(%attributeName:*%):XMLList" tiptext="Returns the XML value of the attribute that has the name matching the attributeName parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#attribute()"/>
                <string name="attributes" object="XML" text=".attributes(%%):XMLList" tiptext="Returns a list of attribute values for the given XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#attributes()"/>
                <string name="child" object="XML" text=".child(%propertyName:Object%):XMLList" tiptext="Lists the children of an XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#child()"/>
                <string name="childIndex" object="XML" text=".childIndex(%%):int" tiptext="Identifies the zero-indexed position of this XML object within the context of its parent." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#childIndex()"/>
                <string name="children" object="XML" text=".children(%%):XMLList" tiptext="Lists the children of the XML object in the sequence in which they appear." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#children()"/>
                <string name="comments" object="XML" text=".comments(%%):XMLList" tiptext="Lists the properties of the XML object that contain XML comments." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#comments()"/>
                <string name="contains" object="XML" text=".contains(%value:XML%):Boolean" tiptext="Compares the XML object against the given value parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#contains()"/>
                <string name="copy" object="XML" text=".copy(%%):XML" tiptext="Returns a copy of the given XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#copy()"/>
                <string name="descendants" object="XML" text=".descendants(%[name:Object=*]%):XMLList" tiptext="Returns all descendants (children, grandchildren, great-grandchildren, and so on) of the XML object that have the given name parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#descendants()"/>
                <string name="defaultSettings" object="XML" text="XML.defaultSettings(%%):Object" static="true" tiptext="Returns an object with the following properties set to the default values: ignoreComments, ignoreProcessingInstructions, ignoreWhitespace, prettyIndent, and prettyPrinting." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#defaultSettings()"/>
                <string name="elements" object="XML" text=".elements(%[name:Object=*]%):XMLList" tiptext="Lists the elements of an XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#elements()"/>
                <string name="hasOwnProperty" object="XML" text=".hasOwnProperty(%p:String%):Boolean" tiptext="Checks to see whether the object has the property specified by the p parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#hasOwnProperty()"/>
                <string name="hasComplexContent" object="XML" text=".hasComplexContent(%%):Boolean" tiptext="Checks to see whether the XML object contains complex content." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#hasComplexContent()"/>
                <string name="hasSimpleContent" object="XML" text=".hasSimpleContent(%%):Boolean" tiptext="Checks to see whether the XML object contains simple content." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#hasSimpleContent()"/>
                <string name="inScopeNamespaces" object="XML" text=".inScopeNamespaces(%%):Array" tiptext="Lists the namespaces for the XML object, based on the object&apos;s parent." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#inScopeNamespaces()"/>
                <string name="insertChildAfter" object="XML" text=".insertChildAfter(%child1:Object,child2:Object%)" tiptext="Inserts the given child2 parameter after the child1 parameter in this XML object and returns the resulting object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#insertChildAfter()"/>
                <string name="insertChildBefore" object="XML" text=".insertChildBefore(%child1:Object,child2:Object%)" tiptext="Inserts the given child2 parameter before the child1 parameter in this XML object and returns the resulting object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#insertChildBefore()"/>
                <string name="length" object="XML" text=".length(%%):int" tiptext="For XML objects, this method always returns the integer 1." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#length()"/>
                <string name="localName" object="XML" text=".localName(%%):Object" tiptext="Gives the local name portion of the qualified name of the XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#localName()"/>
                <string name="name" object="XML" text=".name(%%):Object" tiptext="Gives the qualified name for the XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#name()"/>
                <string name="namespace" object="XML" text=".namespace(%[prefix:String=null]%)" tiptext="If no parameter is provided, gives the namespace associated with the qualified name of this XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#namespace()"/>
                <string name="namespaceDeclarations" object="XML" text=".namespaceDeclarations(%%):Array" tiptext="Lists namespace declarations associated with the XML object in the context of its parent." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#namespaceDeclarations()"/>
                <string name="nodeKind" object="XML" text=".nodeKind(%%):String" tiptext="Specifies the type of node: text, comment, processing-instruction, attribute, or element." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#nodeKind()"/>
                <string name="normalize" object="XML" text=".normalize(%%):XML" tiptext="For the XML object and all descendant XML objects, merges adjacent text nodes and eliminates empty text nodes." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#normalize()"/>
                <string name="parent" object="XML" text=".parent(%%)" tiptext="Returns the parent of the XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#parent()"/>
                <string name="processingInstructions" object="XML" text=".processingInstructions(%[name:String=*]%):XMLList" tiptext="If a name parameter is provided, lists all the children of the XML object that contain processing instructions with that name." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#processingInstructions()"/>
                <string name="prependChild" object="XML" text=".prependChild(%value:Object%):XML" tiptext="Inserts a copy of the provided child object into the XML element before any existing XML properties for that element." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#prependChild()"/>
                <string name="propertyIsEnumerable" object="XML" text=".propertyIsEnumerable(%p:String%):Boolean" tiptext="Checks whether the property p is in the set of properties that can be iterated in a for..in statement applied to the XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#propertyIsEnumerable()"/>
                <string name="removeNamespace" object="XML" text=".removeNamespace(%ns:Namespace%):XML" tiptext="Removes the given namespace for this object and all descendants." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#removeNamespace()"/>
                <string name="replace" object="XML" text=".replace(%propertyName:Object,value:XML%):XML" tiptext="Replaces the properties specified by the propertyName parameter with the given value parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#replace()"/>
                <string name="setChildren" object="XML" text=".setChildren(%value:Object%):XML" tiptext="Replaces the child properties of the XML object with the specified set of XML properties, provided in the value parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#setChildren()"/>
                <string name="setLocalName" object="XML" text=".setLocalName(%name:String%):void" tiptext="Changes the local name of the XML object to the given name parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#setLocalName()"/>
                <string name="setName" object="XML" text=".setName(%name:String%):void" tiptext="Sets the name of the XML object to the given qualified name or attribute name." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#setName()"/>
                <string name="setNamespace" object="XML" text=".setNamespace(%ns:Namespace%):void" tiptext="Sets the namespace associated with the XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#setNamespace()"/>
                <string name="setSettings" object="XML" text="XML.setSettings(%rest:restParam%):void" static="true" tiptext="Sets values for the following XML properties: ignoreComments, ignoreProcessingInstructions, ignoreWhitespace, prettyIndent, and prettyPrinting." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#setSettings()"/>
                <string name="settings" object="XML" text="XML.settings(%%):Object" static="true" tiptext="Retrieves the following properties: ignoreComments, ignoreProcessingInstructions, ignoreWhitespace, prettyIndent, and prettyPrinting." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#settings()"/>
                <string name="text" object="XML" text=".text(%%):XMLList" tiptext="Returns an XMLList object of all XML properties of the XML object that represent XML text nodes." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#text()"/>
                <string name="toString" object="XML" text=".toString(%%):String" tiptext="Returns a string representation of the XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#toString()"/>
                <string name="toXMLString" object="XML" text=".toXMLString(%%):String" tiptext="Returns a string representation of the XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#toXMLString()"/>
                <string name="valueOf" object="XML" text=".valueOf(%%):XML" tiptext="Returns the XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#valueOf()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class XML" helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html">
                <string name="ignoreComments" object="XML" text=".ignoreComments" tiptext="Determines whether XML comments are ignored when XML objects parse the source XML data." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#ignoreComments"/>
                <string name="ignoreProcessingInstructions" object="XML" text=".ignoreProcessingInstructions" tiptext="Determines whether XML processing instructions are ignored when XML objects parse the source XML data." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#ignoreProcessingInstructions"/>
                <string name="ignoreWhitespace" object="XML" text=".ignoreWhitespace" tiptext="Determines whether white space characters at the beginning and end of text nodes are ignored during parsing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#ignoreWhitespace"/>
                <string name="prettyPrinting" object="XML" text=".prettyPrinting" tiptext="Determines whether the toString() and toXMLString() methods normalize white space characters between some tags." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#prettyPrinting"/>
                <string name="prettyIndent" object="XML" text=".prettyIndent" tiptext="Determines the amount of indentation applied by the toString() and toXMLString() methods when the XML.prettyPrinting property is set to true." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/XML.html#prettyIndent"/>
            </folder>
        </folder>
        <folder name="XMLList" id="XMLList" sort="true" index="true" asAncestors="Object" tiptext="The XMLList class contains methods for working with one or more XML elements." helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class XMLList" helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html">
                <string name="XMLList" object="XMLList" text="new XMLList(%value:Object%)" constructor="true" tiptext="Creates a new XMLList object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#XMLList()"/>
                <string name="attribute" object="XMLList" text=".attribute(%attributeName:*%):XMLList" tiptext="Calls the attribute() method of each XML object and returns an XMLList object of the results." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#attribute()"/>
                <string name="attributes" object="XMLList" text=".attributes(%%):XMLList" tiptext="Calls the attributes() method of each XML object and returns an XMLList object of attributes for each XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#attributes()"/>
                <string name="child" object="XMLList" text=".child(%propertyName:Object%):XMLList" tiptext="Calls the child() method of each XML object and returns an XMLList object that contains the results in order." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#child()"/>
                <string name="children" object="XMLList" text=".children(%%):XMLList" tiptext="Calls the children() method of each XML object and returns an XMLList object that contains the results." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#children()"/>
                <string name="comments" object="XMLList" text=".comments(%%):XMLList" tiptext="Calls the comments() method of each XML object and returns an XMLList of comments." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#comments()"/>
                <string name="contains" object="XMLList" text=".contains(%value:XML%):Boolean" tiptext="Checks whether the XMLList object contains an XML object that is equal to the given value parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#contains()"/>
                <string name="copy" object="XMLList" text=".copy(%%):XMLList" tiptext="Returns a copy of the given XMLList object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#copy()"/>
                <string name="descendants" object="XMLList" text=".descendants(%[name:Object=*]%):XMLList" tiptext="Returns all descendants (children, grandchildren, great-grandchildren, and so on) of the XML object that have the given name parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#descendants()"/>
                <string name="elements" object="XMLList" text=".elements(%[name:Object=*]%):XMLList" tiptext="Calls the elements() method of each XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#elements()"/>
                <string name="hasOwnProperty" object="XMLList" text=".hasOwnProperty(%p:String%):Boolean" tiptext="Checks for the property specified by p." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#hasOwnProperty()"/>
                <string name="hasComplexContent" object="XMLList" text=".hasComplexContent(%%):Boolean" tiptext="Checks whether the XMLList object contains complex content." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#hasComplexContent()"/>
                <string name="hasSimpleContent" object="XMLList" text=".hasSimpleContent(%%):Boolean" tiptext="Checks whether the XMLList object contains simple content." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#hasSimpleContent()"/>
                <string name="length" object="XMLList" text=".length(%%):int" tiptext="Returns the number of properties in the XMLList object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#length()"/>
                <string name="normalize" object="XMLList" text=".normalize(%%):XMLList" tiptext="Merges adjacent text nodes and eliminates empty text nodes for each of the following: all text nodes in the XMLList, all the XML objects contained in the XMLList, and the descendants of all the XML objects in the XMLList." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#normalize()"/>
                <string name="parent" object="XMLList" text=".parent(%%):Object" tiptext="Returns the parent of the XMLList object if all items in the XMLList object have the same parent." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#parent()"/>
                <string name="processingInstructions" object="XMLList" text=".processingInstructions(%[name:String=*]%):XMLList" tiptext="If a name parameter is provided, lists all the children of the XMLList object that contain processing instructions with that name." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#processingInstructions()"/>
                <string name="propertyIsEnumerable" object="XMLList" text=".propertyIsEnumerable(%p:String%):Boolean" tiptext="Checks whether the property p is in the set of properties that can be iterated in a for..in statement applied to the XMLList object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#propertyIsEnumerable()"/>
                <string name="text" object="XMLList" text=".text(%%):XMLList" tiptext="Calls the text() method of each XML object and returns an XMLList object that contains the results." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#text()"/>
                <string name="toString" object="XMLList" text=".toString(%%):String" tiptext="Returns a string representation of all the XML objects in an XMLList object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#toString()"/>
                <string name="toXMLString" object="XMLList" text=".toXMLString(%%):String" tiptext="Returns a string representation of all the XML objects in an XMLList object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#toXMLString()"/>
                <string name="valueOf" object="XMLList" text=".valueOf(%%):XMLList" tiptext="Returns the XMLList object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/XMLList.html#valueOf()"/>
            </folder>
        </folder>
    </folder>
        <folder name="Language Elements" id="Language Elements" sort="true" index="true" tiptext="Language elements that perform or specify an action at runtime">
            <folder name="Global Functions" id="Global Functions" tiptext="Methods available in every script" helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#methodSummary">
                <string name="trace" quickey="tr" text="trace(%arguments:restParam%):void" tiptext="Displays expressions, or writes to log files, while debugging." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#trace()"/>
                <string name="Array" text="Array(%args:restParam%):Array" tiptext="Creates a new array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#Array()"/>
                <string name="Boolean" text="Boolean(%expression:Object%):Boolean" tiptext="Converts the expression parameter to a Boolean value and returns the value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#Boolean()"/>
                <string name="Date" text="Date(%%):String" tiptext="Returns a String representation of the current day, date, time, and timezone." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#Date()"/>
                <string name="decodeURI" text="decodeURI(%uri:String%):String" tiptext="Decodes an encoded URI into a string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#decodeURI()"/>
                <string name="decodeURIComponent" text="decodeURIComponent(%uri:String%):String" tiptext="Decodes an encoded URI component into a string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#decodeURIComponent()"/>
                <string name="encodeURI" text="encodeURI(%uri:String%):String" tiptext="Encodes a string into a valid URI (Uniform Resource Identifier)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#encodeURI()"/>
                <string name="encodeURIComponent" text="encodeURIComponent(%uri:String%):String" tiptext="Encodes a string into a valid URI component." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#encodeURIComponent()"/>
                <string name="escape" text="escape(%str:String%):String" tiptext="Converts the parameter to a string and encodes it in a URL-encoded format, where most nonalphanumeric characters are replaced with % hexadecimal sequences." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#escape()"/>
                <string name="int" text="int(%value:Number%):int" tiptext="Converts a given numeric value to an integer value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#int()"/>
                <string name="isFinite" text="isFinite(%num:Number%):Boolean" tiptext="Returns true if the value is a finite number, or false if the value is Infinity or -Infinity." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#isFinite()"/>
                <string name="isNaN" text="isNaN(%num:Number%):Boolean" tiptext="Returns true if the value is NaN(not a number)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#isNaN()"/>
                <string name="isXMLName" text="isXMLName(%str:String%):Boolean" tiptext="Determines whether the specified string is a valid name for an XML element or attribute." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#isXMLName()"/>
                <string name="Number" text="Number(%expression:Object%):Number" tiptext="Converts a given value to a Number value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#Number()"/>
                <string name="Object" text="Object(%value:Object%):Object" tiptext="Every value in ActionScript 3.0 is an object, which means that calling Object() on a value returns that value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#Object()"/>
                <string name="parseInt" text="parseInt(%str:String[,radix:uint=0]%):Number" tiptext="Converts a string to an integer." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#parseInt()"/>
                <string name="parseFloat" text="parseFloat(%str:String%):Number" tiptext="Converts a string to a floating-point number." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#parseFloat()"/>
                <string name="String" text="String(%expression:Object%):String" tiptext="Returns a string representation of the specified parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#String()"/>
                <string name="unescape" text="unescape(%str:String%):String" tiptext="Evaluates the parameter str as a string, decodes the string from URL-encoded format (converting all hexadecimal sequences to ASCII characters), and returns the string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#unescape()"/>
                <string name="uint" text="uint(%value:Number%):uint" tiptext="Converts a given numeric value to an unsigned integer value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#uint()"/>
                <string name="XML" text="XML(%expression:Object%):XML" tiptext="Converts an object to an XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#XML()"/>
                <string name="XMLList" text="XMLList(%expression:Object%):XMLList" tiptext="Converts an object to an XMLList object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#XMLList()"/>
            </folder>
            <folder name="Global Constants" id="Global Constants" tiptext="Constants availabe in every script" helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#constantSummary">
                <string name="Infinity" text="Infinity" constant="true" tiptext="A special value representing positive Infinity." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#Infinity"/>
                <string name="-Infinity" text="-Infinity" constant="true" tiptext="A special value representing negative Infinity." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#-Infinity"/>
                <string name="NaN" text="NaN" constant="true" tiptext="A special member of the Number data type that represents a value that is &quot;not a number&quot; (NaN)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#NaN"/>
                <string name="undefined" text="undefined" constant="true" tiptext="A special value that applies to untyped variables that have not been initialized or dynamic object properties that are not initialized." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/package.html#undefined"/>
            </folder>
            </folder>
        <folder name="adobe.utils" id="adobe.utils" sort="true" tiptext="Classes for package adobe.utils" helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/package-detail.html">
        <folder name="CustomActions" id="[adobe.utils.CustomActions]" sort="true" index="true" asAncestors="Object" tiptext="The methods of the CustomActions class allow a SWF file playing in the Flash authoring tool to manage any custom actions that are registered with the authoring tool." helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/CustomActions.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class CustomActions" helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/CustomActions.html">
                <string name="installActions" object="[adobe.utils.CustomActions]" text="CustomActions.installActions(%name:String,data:String%):void" static="true" tiptext="Installs a new custom action XML definition file indicated by the name parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/CustomActions.html#installActions()"/>
                <string name="uninstallActions" object="[adobe.utils.CustomActions]" text="CustomActions.uninstallActions(%name:String%):void" static="true" tiptext="Removes the Custom Actions XML definition file named name." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/CustomActions.html#uninstallActions()"/>
                <string name="getActions" object="[adobe.utils.CustomActions]" text="CustomActions.getActions(%name:String%):String" static="true" tiptext="Reads the contents of the custom action XML definition file named name." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/CustomActions.html#getActions()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class CustomActions" helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/CustomActions.html">
                <string name="actionsList" object="[adobe.utils.CustomActions]" text=".actionsList" tiptext="Returns an Array object containing the names of all the custom actions that are registered with the Flash authoring tool." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/CustomActions.html#actionsList"/>
            </folder>
        </folder>
        <folder name="Methods" id="Methods" tiptext="Methods for package adobe.utils" helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/package-detail.html">
            <string name="MMExecute" text="MMExecute(%name:String%):String" tiptext="Lets you issue Flash JavaScript API (JSAPI) commands from ActionScript." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/package.html#MMExecute()"/>
        </folder>
        <folder name="XMLUI" id="[adobe.utils.XMLUI]" sort="true" index="true" asAncestors="Object" tiptext="The XMLUI class enables communication with SWF files that are used as custom user interfaces for the Flash authoring tool&apos;s extensibility features." helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/XMLUI.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class XMLUI" helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/XMLUI.html">
                <string name="getProperty" object="[adobe.utils.XMLUI]" text="XMLUI.getProperty(%name:String%):String" static="true" tiptext="Retrieves the value of the specified property of the current XMLUI dialog box." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/XMLUI.html#getProperty()"/>
                <string name="setProperty" object="[adobe.utils.XMLUI]" text="XMLUI.setProperty(%name:String,value:String%):void" static="true" tiptext="Modifies the value of the specified property of the current XMLUI dialog." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/XMLUI.html#setProperty()"/>
                <string name="accept" object="[adobe.utils.XMLUI]" text="XMLUI.accept(%%):void" static="true" tiptext="Makes the current XMLUI dialog box close with an &quot;accept&quot; state." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/XMLUI.html#accept()"/>
                <string name="cancel" object="[adobe.utils.XMLUI]" text="XMLUI.cancel(%%):void" static="true" tiptext="Makes the current XMLUI dialog box close with a &quot;cancel&quot; state." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/adobe/utils/XMLUI.html#cancel()"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.accessibility" id="fl.accessibility" sort="true" tiptext="Classes for package fl.accessibility" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/package-detail.html">
        <folder name="AccImpl" id="[fl.accessibility.AccImpl]" sort="true" index="true" tiptext="The AccImpl class, also called the Accessibility Implementation class, is the base class for the implementation of accessibility in components." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/AccImpl.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class AccImpl" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/AccImpl.html">
                <string name="enableAccessibility" object="[fl.accessibility.AccImpl]" text="AccImpl.enableAccessibility(%%):void" static="true" tiptext="Enables accessibility for a component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/AccImpl.html#enableAccessibility()"/>
            </folder>
        </folder>
        <folder name="ButtonAccImpl" id="[fl.accessibility.ButtonAccImpl]" sort="true" index="true" asAncestors="fl.accessibility:LabelButtonAccImpl,fl.accessibility:AccImpl" tiptext="The ButtonAccImpl class, also called the Button Accessibility Implementation class, enables communication between a Button component and a screen reader." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/ButtonAccImpl.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ButtonAccImpl" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/ButtonAccImpl.html">
                <string name="enableAccessibility" object="[fl.accessibility.ButtonAccImpl]" text="ButtonAccImpl.enableAccessibility(%%):void" static="true" tiptext="Enables accessibility for a Button component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/ButtonAccImpl.html#enableAccessibility()"/>
            </folder>
        </folder>
        <folder name="CheckBoxAccImpl" id="[fl.accessibility.CheckBoxAccImpl]" sort="true" index="true" asAncestors="fl.accessibility:LabelButtonAccImpl,fl.accessibility:AccImpl" tiptext="The CheckBoxAccImpl class, also called the CheckBox Accessibility Implementation class, is used to make a CheckBox component accessible." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/CheckBoxAccImpl.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class CheckBoxAccImpl" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/CheckBoxAccImpl.html">
                <string name="enableAccessibility" object="[fl.accessibility.CheckBoxAccImpl]" text="CheckBoxAccImpl.enableAccessibility(%%):void" static="true" tiptext="Enables accessibility for a CheckBox component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/CheckBoxAccImpl.html#enableAccessibility()"/>
            </folder>
        </folder>
        <folder name="ComboBoxAccImpl" id="[fl.accessibility.ComboBoxAccImpl]" sort="true" index="true" asAncestors="fl.accessibility:AccImpl" tiptext="The ComboBoxAccImpl class, also called the ComboBox Accessibility Implementation class, is used to make a ComboBox component accessible." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/ComboBoxAccImpl.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ComboBoxAccImpl" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/ComboBoxAccImpl.html">
                <string name="enableAccessibility" object="[fl.accessibility.ComboBoxAccImpl]" text="ComboBoxAccImpl.enableAccessibility(%%):void" static="true" tiptext="Enables accessibility for a ComboBox component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/ComboBoxAccImpl.html#enableAccessibility()"/>
            </folder>
        </folder>
        <folder name="DataGridAccImpl" id="[fl.accessibility.DataGridAccImpl]" sort="true" index="true" asAncestors="fl.accessibility:SelectableListAccImpl,fl.accessibility:AccImpl" tiptext="The DataGridAccImpl class, also called the DataGrid Accessibility Implementation class, is used to make a DataGrid component accessible." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/DataGridAccImpl.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DataGridAccImpl" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/DataGridAccImpl.html">
                <string name="enableAccessibility" object="[fl.accessibility.DataGridAccImpl]" text="DataGridAccImpl.enableAccessibility(%%):void" static="true" tiptext="Enables accessibility for a DataGrid component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/DataGridAccImpl.html#enableAccessibility()"/>
            </folder>
        </folder>
        <folder name="LabelButtonAccImpl" id="[fl.accessibility.LabelButtonAccImpl]" sort="true" index="true" asAncestors="fl.accessibility:AccImpl" tiptext="The LabelButtonAccImpl class, also called the LabelButton Accessibility Implementation class, is used to make a LabelButton component accessible." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/LabelButtonAccImpl.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class LabelButtonAccImpl" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/LabelButtonAccImpl.html">
                <string name="enableAccessibility" object="[fl.accessibility.LabelButtonAccImpl]" text="LabelButtonAccImpl.enableAccessibility(%%):void" static="true" tiptext="Enables accessibility for a LabelButton component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/LabelButtonAccImpl.html#enableAccessibility()"/>
            </folder>
        </folder>
        <folder name="ListAccImpl" id="[fl.accessibility.ListAccImpl]" sort="true" index="true" asAncestors="fl.accessibility:SelectableListAccImpl,fl.accessibility:AccImpl" tiptext="The ListAccImpl class, also called the List Accessiblity Implementation class, is used to make a List component accessible." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/ListAccImpl.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ListAccImpl" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/ListAccImpl.html">
                <string name="enableAccessibility" object="[fl.accessibility.ListAccImpl]" text="ListAccImpl.enableAccessibility(%%):void" static="true" tiptext="Enables accessibility for a List component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/ListAccImpl.html#enableAccessibility()"/>
            </folder>
        </folder>
        <folder name="RadioButtonAccImpl" id="[fl.accessibility.RadioButtonAccImpl]" sort="true" index="true" asAncestors="fl.accessibility:CheckBoxAccImpl,fl.accessibility:LabelButtonAccImpl,fl.accessibility:AccImpl" tiptext="The RadioButtonAccImpl class, also called the RadioButton Accessibility Implementation class, is used to make a RadioButton component accessible." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/RadioButtonAccImpl.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class RadioButtonAccImpl" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/RadioButtonAccImpl.html">
                <string name="enableAccessibility" object="[fl.accessibility.RadioButtonAccImpl]" text="RadioButtonAccImpl.enableAccessibility(%%):void" static="true" tiptext="Enables accessibility for a RadioButton component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/RadioButtonAccImpl.html#enableAccessibility()"/>
            </folder>
        </folder>
        <folder name="SelectableListAccImpl" id="[fl.accessibility.SelectableListAccImpl]" sort="true" index="true" asAncestors="fl.accessibility:AccImpl" tiptext="The SelectableListAccImpl class, also called the SelectableList Accessibility Implementation class, is used to make a SelectableList component accessible." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/SelectableListAccImpl.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SelectableListAccImpl" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/SelectableListAccImpl.html">
                <string name="enableAccessibility" object="[fl.accessibility.SelectableListAccImpl]" text="SelectableListAccImpl.enableAccessibility(%%):void" static="true" tiptext="Enables accessibility for a SelectableList component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/SelectableListAccImpl.html#enableAccessibility()"/>
            </folder>
        </folder>
        <folder name="TileListAccImpl" id="[fl.accessibility.TileListAccImpl]" sort="true" index="true" asAncestors="fl.accessibility:SelectableListAccImpl,fl.accessibility:AccImpl" tiptext="The TileListAccImpl class, also called the Tile List Accessibility Implementation class, is used to make a TileList component accessible." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/TileListAccImpl.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TileListAccImpl" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/TileListAccImpl.html">
                <string name="enableAccessibility" object="[fl.accessibility.TileListAccImpl]" text="TileListAccImpl.enableAccessibility(%%):void" static="true" tiptext="Enables accessibility for a TileList component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/TileListAccImpl.html#enableAccessibility()"/>
            </folder>
        </folder>
        <folder name="UIComponentAccImpl" id="[fl.accessibility.UIComponentAccImpl]" sort="true" index="true" asAncestors="flash.accessibility:AccessibilityProperties,Object" tiptext="The UIComponentAccImpl class, also called the UIComponent Accessibility Implementation class, is used to make a UIComponent accessible." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/UIComponentAccImpl.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class UIComponentAccImpl" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/UIComponentAccImpl.html">
                <string name="enableAccessibility" object="[fl.accessibility.UIComponentAccImpl]" text="UIComponentAccImpl.enableAccessibility(%%):void" static="true" tiptext="Enables accessibility for a UIComponent component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/accessibility/UIComponentAccImpl.html#enableAccessibility()"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.containers" id="fl.containers" sort="true" tiptext="Classes for package fl.containers" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/package-detail.html">
        <folder name="BaseScrollPane" id="[fl.containers.BaseScrollPane]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The BaseScrollPane class handles basic scroll pane functionality including events, styling, drawing the mask and background, the layout of scroll bars, and the handling of scroll positions." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class BaseScrollPane" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html">
                <string name="BaseScrollPane" object="[fl.containers.BaseScrollPane]" text="new BaseScrollPane(%%)" constructor="true" tiptext="Creates a new BaseScrollPane component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#BaseScrollPane()"/>
                <string name="getStyleDefinition" object="[fl.containers.BaseScrollPane]" text="BaseScrollPane.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#getStyleDefinition()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class BaseScrollPane" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html">
                <string name="horizontalScrollPolicy" object="[fl.containers.BaseScrollPane]" text=".horizontalScrollPolicy" tiptext="Gets or sets a value that indicates the state of the horizontal scroll bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#horizontalScrollPolicy"/>
                <string name="verticalScrollPolicy" object="[fl.containers.BaseScrollPane]" text=".verticalScrollPolicy" tiptext="Gets or sets a value that indicates the state of the vertical scroll bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#verticalScrollPolicy"/>
                <string name="horizontalLineScrollSize" object="[fl.containers.BaseScrollPane]" text=".horizontalLineScrollSize" tiptext="Gets or sets a value that describes the amount of content to be scrolled, horizontally, when a scroll arrow is clicked." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#horizontalLineScrollSize"/>
                <string name="verticalLineScrollSize" object="[fl.containers.BaseScrollPane]" text=".verticalLineScrollSize" tiptext="Gets or sets a value that describes how many pixels to scroll vertically when a scroll arrow is clicked." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#verticalLineScrollSize"/>
                <string name="horizontalScrollPosition" object="[fl.containers.BaseScrollPane]" text=".horizontalScrollPosition" tiptext="Gets or sets a value that describes the horizontal position of the horizontal scroll bar in the scroll pane, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#horizontalScrollPosition"/>
                <string name="verticalScrollPosition" object="[fl.containers.BaseScrollPane]" text=".verticalScrollPosition" tiptext="Gets or sets a value that describes the vertical position of the vertical scroll bar in the scroll pane, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#verticalScrollPosition"/>
                <string name="maxHorizontalScrollPosition" object="[fl.containers.BaseScrollPane]" text=".maxHorizontalScrollPosition" tiptext="Gets the maximum horizontal scroll position for the current content, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#maxHorizontalScrollPosition"/>
                <string name="maxVerticalScrollPosition" object="[fl.containers.BaseScrollPane]" text=".maxVerticalScrollPosition" tiptext="Gets the maximum vertical scroll position for the current content, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#maxVerticalScrollPosition"/>
                <string name="useBitmapScrolling" object="[fl.containers.BaseScrollPane]" text=".useBitmapScrolling" tiptext="When set to true, the cacheAsBitmap property for the scrolling content is set to true; when set to false this value is turned off." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#useBitmapScrolling"/>
                <string name="horizontalPageScrollSize" object="[fl.containers.BaseScrollPane]" text=".horizontalPageScrollSize" tiptext="Gets or sets the count of pixels by which to move the scroll thumb on the horizontal scroll bar when the scroll bar track is pressed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#horizontalPageScrollSize"/>
                <string name="verticalPageScrollSize" object="[fl.containers.BaseScrollPane]" text=".verticalPageScrollSize" tiptext="Gets or sets the count of pixels by which to move the scroll thumb on the vertical scroll bar when the scroll bar track is pressed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#verticalPageScrollSize"/>
                <string name="horizontalScrollBar" object="[fl.containers.BaseScrollPane]" text=".horizontalScrollBar" tiptext="Gets a reference to the horizontal scroll bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#horizontalScrollBar"/>
                <string name="verticalScrollBar" object="[fl.containers.BaseScrollPane]" text=".verticalScrollBar" tiptext="Gets a reference to the vertical scroll bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#verticalScrollBar"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class BaseScrollPane" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html">
                <string name="scroll" object="[fl.containers.BaseScrollPane]" text=".addEventListener(%type:String=ScrollEvent.SCROLL{ScrollEvent.SCROLL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user scrolls content by using the scroll bars on the component or the wheel on a mouse device." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/BaseScrollPane.html#event:scroll"/>
            </folder>
        </folder>
        <folder name="ScrollPane" id="[fl.containers.ScrollPane]" sort="true" index="true" asAncestors="fl.containers:BaseScrollPane,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The ScrollPane component displays display objects and JPEG, GIF, and PNG files, as well as SWF files, in a scrollable area." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ScrollPane" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html">
                <string name="ScrollPane" object="[fl.containers.ScrollPane]" text="new ScrollPane(%%)" constructor="true" tiptext="Creates a new ScrollPane component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#ScrollPane()"/>
                <string name="getStyleDefinition" object="[fl.containers.ScrollPane]" text="ScrollPane.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#getStyleDefinition()"/>
                <string name="refreshPane" object="[fl.containers.ScrollPane]" text=".refreshPane(%%):void" tiptext="Reloads the contents of the scroll pane." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#refreshPane()"/>
                <string name="update" object="[fl.containers.ScrollPane]" text=".update(%%):void" tiptext="Refreshes the scroll bar properties based on the width and height of the content." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#update()"/>
                <string name="load" object="[fl.containers.ScrollPane]" text=".load(%request:flash.net:URLRequest[,context:flash.system:LoaderContext=null]%):void" tiptext="The request parameter of this method accepts only a URLRequest object whose source property contains a string, a class, or a URLRequest object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#load()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ScrollPane" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html">
                <string name="scrollDrag" object="[fl.containers.ScrollPane]" text=".scrollDrag" tiptext="Gets or sets a value that indicates whether scrolling occurs when a user drags on content within the scroll pane." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#scrollDrag"/>
                <string name="percentLoaded" object="[fl.containers.ScrollPane]" text=".percentLoaded" tiptext="Gets a number between 0 and 100 indicating what percentage of the content is loaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#percentLoaded"/>
                <string name="bytesLoaded" object="[fl.containers.ScrollPane]" text=".bytesLoaded" tiptext="Gets the count of bytes of content that have been loaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#bytesLoaded"/>
                <string name="bytesTotal" object="[fl.containers.ScrollPane]" text=".bytesTotal" tiptext="Gets the count of bytes of content to be loaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#bytesTotal"/>
                <string name="content" object="[fl.containers.ScrollPane]" text=".content" tiptext="Gets a reference to the content loaded into the scroll pane." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#content"/>
                <string name="source" object="[fl.containers.ScrollPane]" text=".source" tiptext="Gets or sets an absolute or relative URL that identifies the location of the SWF or image file to load, the class name of a movie clip in the library, a reference to a display object, or a instance name of a movie clip on the same level as the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#source"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class ScrollPane" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html">
                <string name="complete" object="[fl.containers.ScrollPane]" text=".addEventListener(%type:String=Event.COMPLETE{Event.COMPLETE,ProgressEvent.PROGRESS,ScrollEvent.SCROLL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when content has finished loading." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#event:complete"/>
                <string name="progress" object="[fl.containers.ScrollPane]" text=".addEventListener(%type:String=ProgressEvent.PROGRESS{Event.COMPLETE,ProgressEvent.PROGRESS,ScrollEvent.SCROLL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched while content is loading." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#event:progress"/>
                <string name="scroll" object="[fl.containers.ScrollPane]" text=".addEventListener(%type:String=ScrollEvent.SCROLL{Event.COMPLETE,ProgressEvent.PROGRESS,ScrollEvent.SCROLL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user scrolls content by using the scroll bars on the component or the wheel on a mouse device." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/ScrollPane.html#event:scroll"/>
            </folder>
        </folder>
        <folder name="UILoader" id="[fl.containers.UILoader]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The UILoader class makes it possible to set content to load and to then monitor the loading operation at run time." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class UILoader" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html">
                <string name="UILoader" object="[fl.containers.UILoader]" text="new UILoader(%%)" constructor="true" tiptext="Creates a new UILoader component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#UILoader()"/>
                <string name="getStyleDefinition" object="[fl.containers.UILoader]" text="UILoader.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#getStyleDefinition()"/>
                <string name="setSize" object="[fl.containers.UILoader]" text=".setSize(%w:Number,h:Number%):void" tiptext="Resizes the component to the requested size." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#setSize()"/>
                <string name="loadBytes" object="[fl.containers.UILoader]" text=".loadBytes(%bytes:flash.utils:ByteArray[,context:flash.system:LoaderContext=null]%):void" tiptext="Loads binary data that is stored in a ByteArray object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#loadBytes()"/>
                <string name="load" object="[fl.containers.UILoader]" text=".load(%[request:flash.net:URLRequest=null,context:flash.system:LoaderContext=null]%):void" tiptext="Loads the specified content or, if no content is specified, loads the content from the location identified by the source property." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#load()"/>
                <string name="unload" object="[fl.containers.UILoader]" text=".unload(%%):void" tiptext="Removes a child of this UILoader object that was loaded by using either the load() method or the source property." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#unload()"/>
                <string name="close" object="[fl.containers.UILoader]" text=".close(%%):void" tiptext="Cancels a load() method operation that is currently in progress for the Loader instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#close()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class UILoader" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html">
                <string name="autoLoad" object="[fl.containers.UILoader]" text=".autoLoad" tiptext="Gets or sets a value that indicates whether the UILoader instance automatically loads the specified content." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#autoLoad"/>
                <string name="scaleContent" object="[fl.containers.UILoader]" text=".scaleContent" tiptext="Gets or sets a value that indicates whether to automatically scale the image to the size of the UILoader instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#scaleContent"/>
                <string name="maintainAspectRatio" object="[fl.containers.UILoader]" text=".maintainAspectRatio" tiptext="Gets or sets a value that indicates whether to maintain the aspect ratio that was used in the original image or to resize the image at the curent width and height of the UILoader component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#maintainAspectRatio"/>
                <string name="bytesLoaded" object="[fl.containers.UILoader]" text=".bytesLoaded" tiptext="Gets the count of bytes of content that have been loaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#bytesLoaded"/>
                <string name="bytesTotal" object="[fl.containers.UILoader]" text=".bytesTotal" tiptext="Gets the count of bytes of content to be loaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#bytesTotal"/>
                <string name="content" object="[fl.containers.UILoader]" text=".content" tiptext="Contains the root display object of the SWF file or image file (a JPEG, PNG, or GIF format file) that was loaded by using the load() method or setting the source property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#content"/>
                <string name="source" object="[fl.containers.UILoader]" text=".source" tiptext="Gets or sets an absolute or relative URL that identifies the location of the SWF or image file to load, the class name of a movie clip in the library, a reference to a display object, or a instance name of a movie clip on the same level as the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#source"/>
                <string name="percentLoaded" object="[fl.containers.UILoader]" text=".percentLoaded" tiptext="Gets a number between 0 and 100 indicating what percentage of the content is loaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#percentLoaded"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class UILoader" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html">
                <string name="securityError" object="[fl.containers.UILoader]" text=".addEventListener(%type:String=SecurityErrorEvent.SECURITY_ERROR{SecurityErrorEvent.SECURITY_ERROR,ComponentEvent.RESIZE,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after a security error occurs while content is loading." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#event:securityError"/>
                <string name="resize" object="[fl.containers.UILoader]" text=".addEventListener(%type:String=ComponentEvent.RESIZE{SecurityErrorEvent.SECURITY_ERROR,ComponentEvent.RESIZE,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after the component is resized." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#event:resize"/>
                <string name="progress" object="[fl.containers.UILoader]" text=".addEventListener(%type:String=ProgressEvent.PROGRESS{SecurityErrorEvent.SECURITY_ERROR,ComponentEvent.RESIZE,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when content is loading." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#event:progress"/>
                <string name="open" object="[fl.containers.UILoader]" text=".addEventListener(%type:String=Event.OPEN{SecurityErrorEvent.SECURITY_ERROR,ComponentEvent.RESIZE,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after a network operation starts." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#event:open"/>
                <string name="ioError" object="[fl.containers.UILoader]" text=".addEventListener(%type:String=IOErrorEvent.IO_ERROR{SecurityErrorEvent.SECURITY_ERROR,ComponentEvent.RESIZE,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after an input or output error occurs." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#event:ioError"/>
                <string name="init" object="[fl.containers.UILoader]" text=".addEventListener(%type:String=Event.INIT{SecurityErrorEvent.SECURITY_ERROR,ComponentEvent.RESIZE,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the properties and methods of a loaded SWF file are accessible." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#event:init"/>
                <string name="complete" object="[fl.containers.UILoader]" text=".addEventListener(%type:String=Event.COMPLETE{SecurityErrorEvent.SECURITY_ERROR,ComponentEvent.RESIZE,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when content loading is complete." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/containers/UILoader.html#event:complete"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.controls" id="fl.controls" sort="true" tiptext="Classes for package fl.controls" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/package-detail.html">
        <folder name="BaseButton" id="[fl.controls.BaseButton]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The BaseButton class is the base class for all button components, defining properties and methods that are common to all buttons." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/BaseButton.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class BaseButton" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/BaseButton.html">
                <string name="BaseButton" object="[fl.controls.BaseButton]" text="new BaseButton(%%)" constructor="true" tiptext="Creates a new BaseButton instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/BaseButton.html#BaseButton()"/>
                <string name="getStyleDefinition" object="[fl.controls.BaseButton]" text="BaseButton.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/BaseButton.html#getStyleDefinition()"/>
                <string name="setMouseState" object="[fl.controls.BaseButton]" text=".setMouseState(%state:String%):void" tiptext="Set the mouse state via ActionScript." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/BaseButton.html#setMouseState()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class BaseButton" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/BaseButton.html">
                <string name="enabled" object="[fl.controls.BaseButton]" text=".enabled" tiptext="Gets or sets a value that indicates whether the component can accept user input." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/BaseButton.html#enabled"/>
                <string name="selected" object="[fl.controls.BaseButton]" text=".selected" tiptext="Gets or sets a Boolean value that indicates whether a toggle button is selected." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/BaseButton.html#selected"/>
                <string name="autoRepeat" object="[fl.controls.BaseButton]" text=".autoRepeat" tiptext="Gets or sets a Boolean value that indicates whether the buttonDown event is dispatched more than one time when the user holds the mouse button down over the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/BaseButton.html#autoRepeat"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class BaseButton" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/BaseButton.html">
                <string name="change" object="[fl.controls.BaseButton]" text=".addEventListener(%type:String=Event.CHANGE{Event.CHANGE,ComponentEvent.BUTTON_DOWN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the value of the selected property of a toggle Button component changes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/BaseButton.html#event:change"/>
                <string name="buttonDown" object="[fl.controls.BaseButton]" text=".addEventListener(%type:String=ComponentEvent.BUTTON_DOWN{Event.CHANGE,ComponentEvent.BUTTON_DOWN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user presses the Button component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/BaseButton.html#event:buttonDown"/>
            </folder>
        </folder>
        <folder name="Button" id="[fl.controls.Button]" sort="true" index="true" asAncestors="fl.controls:LabelButton,fl.controls:BaseButton,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The Button component represents a commonly used rectangular button." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Button.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Button" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Button.html">
                <string name="Button" object="[fl.controls.Button]" text="new Button(%%)" constructor="true" tiptext="Creates a new Button component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Button.html#Button()"/>
                <string name="getStyleDefinition" object="[fl.controls.Button]" text="Button.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Button.html#getStyleDefinition()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Button" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Button.html">
                <string name="emphasized" object="[fl.controls.Button]" text=".emphasized" tiptext="Gets or sets a Boolean value that indicates whether a border is drawn around the Button component when the button is in its up state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Button.html#emphasized"/>
            </folder>
        </folder>
        <folder name="ButtonLabelPlacement" id="[fl.controls.ButtonLabelPlacement]" sort="true" index="true" asAncestors="Object" tiptext="The ButtonLabelPlacement class defines constants for the values of the labelPlacement property of a Button, CheckBox, or RadioButton component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ButtonLabelPlacement.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class ButtonLabelPlacement" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ButtonLabelPlacement.html">
                <string name="BOTTOM" object="[fl.controls.ButtonLabelPlacement]" text="ButtonLabelPlacement.BOTTOM" constant="true" tiptext="The label appears below the icon." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ButtonLabelPlacement.html#BOTTOM"/>
                <string name="TOP" object="[fl.controls.ButtonLabelPlacement]" text="ButtonLabelPlacement.TOP" constant="true" tiptext="The label appears above the icon." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ButtonLabelPlacement.html#TOP"/>
                <string name="LEFT" object="[fl.controls.ButtonLabelPlacement]" text="ButtonLabelPlacement.LEFT" constant="true" tiptext="The label appears to the left of the icon." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ButtonLabelPlacement.html#LEFT"/>
                <string name="RIGHT" object="[fl.controls.ButtonLabelPlacement]" text="ButtonLabelPlacement.RIGHT" constant="true" tiptext="The label appears to the right of the icon." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ButtonLabelPlacement.html#RIGHT"/>
            </folder>
        </folder>
        <folder name="CheckBox" id="[fl.controls.CheckBox]" sort="true" index="true" asAncestors="fl.controls:LabelButton,fl.controls:BaseButton,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The CheckBox component displays a small box that can contain a check mark." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/CheckBox.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class CheckBox" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/CheckBox.html">
                <string name="CheckBox" object="[fl.controls.CheckBox]" text="new CheckBox(%%)" constructor="true" tiptext="Creates a new CheckBox component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/CheckBox.html#CheckBox()"/>
                <string name="getStyleDefinition" object="[fl.controls.CheckBox]" text="CheckBox.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/CheckBox.html#getStyleDefinition()"/>
                <string name="drawFocus" object="[fl.controls.CheckBox]" text=".drawFocus(%focused:Boolean%):void" tiptext="Shows or hides the focus indicator around this component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/CheckBox.html#drawFocus()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class CheckBox" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/CheckBox.html">
                <string name="toggle" object="[fl.controls.CheckBox]" text=".toggle" tiptext="A CheckBox toggles by definition, so the toggle property is set to true in the constructor and cannot be changed for a CheckBox." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/CheckBox.html#toggle"/>
                <string name="autoRepeat" object="[fl.controls.CheckBox]" text=".autoRepeat" tiptext="A CheckBox never auto-repeats by definition, so the autoRepeat property is set to false in the constructor and cannot be changed for a CheckBox." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/CheckBox.html#autoRepeat"/>
            </folder>
        </folder>
        <folder name="ColorPicker" id="[fl.controls.ColorPicker]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The ColorPicker component displays a list of one or more swatches from which the user can select a color." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ColorPicker" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html">
                <string name="ColorPicker" object="[fl.controls.ColorPicker]" text="new ColorPicker(%%)" constructor="true" tiptext="Creates an instance of the ColorPicker class." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#ColorPicker()"/>
                <string name="getStyleDefinition" object="[fl.controls.ColorPicker]" text="ColorPicker.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#getStyleDefinition()"/>
                <string name="open" object="[fl.controls.ColorPicker]" text=".open(%%):void" tiptext="Shows the color palette." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#open()"/>
                <string name="close" object="[fl.controls.ColorPicker]" text=".close(%%):void" tiptext="Hides the color palette." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#close()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ColorPicker" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html">
                <string name="textField" object="[fl.controls.ColorPicker]" text=".textField" tiptext="A reference to the internal text field of the ColorPicker component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#textField"/>
                <string name="selectedColor" object="[fl.controls.ColorPicker]" text=".selectedColor" tiptext="Gets or sets the swatch that is currently highlighted in the palette of the ColorPicker component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#selectedColor"/>
                <string name="hexValue" object="[fl.controls.ColorPicker]" text=".hexValue" tiptext="Gets the string value of the current color selection." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#hexValue"/>
                <string name="enabled" object="[fl.controls.ColorPicker]" text=".enabled" tiptext="Gets or sets a value that indicates whether the component can accept user interaction." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#enabled"/>
                <string name="editable" object="[fl.controls.ColorPicker]" text=".editable" tiptext="Gets or sets a Boolean value that indicates whether the internal text field of the ColorPicker component is editable." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#editable"/>
                <string name="showTextField" object="[fl.controls.ColorPicker]" text=".showTextField" tiptext="Gets or sets a Boolean value that indicates whether the internal text field of the ColorPicker component is displayed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#showTextField"/>
                <string name="colors" object="[fl.controls.ColorPicker]" text=".colors" tiptext="Gets or sets the array of custom colors that the ColorPicker component provides." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#colors"/>
                <string name="imeMode" object="[fl.controls.ColorPicker]" text=".imeMode" tiptext="Gets or sets the mode of the input method editor (IME)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#imeMode"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class ColorPicker" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html">
                <string name="enter" object="[fl.controls.ColorPicker]" text=".addEventListener(%type:String=ColorPickerEvent.ENTER{ColorPickerEvent.ENTER,ColorPickerEvent.ITEM_ROLL_OUT,ColorPickerEvent.ITEM_ROLL_OVER,ColorPickerEvent.CHANGE,Event.CLOSE,Event.OPEN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user presses the Enter key after editing the internal text field of the ColorPicker component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#event:enter"/>
                <string name="itemRollOut" object="[fl.controls.ColorPicker]" text=".addEventListener(%type:String=ColorPickerEvent.ITEM_ROLL_OUT{ColorPickerEvent.ENTER,ColorPickerEvent.ITEM_ROLL_OUT,ColorPickerEvent.ITEM_ROLL_OVER,ColorPickerEvent.CHANGE,Event.CLOSE,Event.OPEN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user rolls out of a swatch in the color palette." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#event:itemRollOut"/>
                <string name="itemRollOver" object="[fl.controls.ColorPicker]" text=".addEventListener(%type:String=ColorPickerEvent.ITEM_ROLL_OVER{ColorPickerEvent.ENTER,ColorPickerEvent.ITEM_ROLL_OUT,ColorPickerEvent.ITEM_ROLL_OVER,ColorPickerEvent.CHANGE,Event.CLOSE,Event.OPEN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user rolls over a swatch in the color palette." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#event:itemRollOver"/>
                <string name="change" object="[fl.controls.ColorPicker]" text=".addEventListener(%type:String=ColorPickerEvent.CHANGE{ColorPickerEvent.ENTER,ColorPickerEvent.ITEM_ROLL_OUT,ColorPickerEvent.ITEM_ROLL_OVER,ColorPickerEvent.CHANGE,Event.CLOSE,Event.OPEN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user clicks a color in the palette." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#event:change"/>
                <string name="close" object="[fl.controls.ColorPicker]" text=".addEventListener(%type:String=Event.CLOSE{ColorPickerEvent.ENTER,ColorPickerEvent.ITEM_ROLL_OUT,ColorPickerEvent.ITEM_ROLL_OVER,ColorPickerEvent.CHANGE,Event.CLOSE,Event.OPEN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user closes the color palette." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#event:close"/>
                <string name="open" object="[fl.controls.ColorPicker]" text=".addEventListener(%type:String=Event.OPEN{ColorPickerEvent.ENTER,ColorPickerEvent.ITEM_ROLL_OUT,ColorPickerEvent.ITEM_ROLL_OVER,ColorPickerEvent.CHANGE,Event.CLOSE,Event.OPEN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user opens the color palette." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ColorPicker.html#event:open"/>
            </folder>
        </folder>
        <folder name="ComboBox" id="[fl.controls.ComboBox]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The ComboBox component contains a drop-down list from which the user can select one value." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ComboBox" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html">
                <string name="ComboBox" object="[fl.controls.ComboBox]" text="new ComboBox(%%)" constructor="true" tiptext="Creates a new ComboBox component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#ComboBox()"/>
                <string name="getStyleDefinition" object="[fl.controls.ComboBox]" text="ComboBox.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#getStyleDefinition()"/>
                <string name="itemToLabel" object="[fl.controls.ComboBox]" text=".itemToLabel(%item:Object%):String" tiptext="Retrieves the string that the renderer displays for the given data object based on the labelField and labelFunction properties." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#itemToLabel()"/>
                <string name="addItem" object="[fl.controls.ComboBox]" text=".addItem(%item:Object%):void" tiptext="Appends an item to the end of the list of items." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#addItem()"/>
                <string name="addItemAt" object="[fl.controls.ComboBox]" text=".addItemAt(%item:Object,index:uint%):void" tiptext="Inserts an item into the list at the specified index location." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#addItemAt()"/>
                <string name="removeAll" object="[fl.controls.ComboBox]" text=".removeAll(%%):void" tiptext="Removes all items from the list." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#removeAll()"/>
                <string name="removeItem" object="[fl.controls.ComboBox]" text=".removeItem(%item:Object%):Object" tiptext="Removes the specified item from the list." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#removeItem()"/>
                <string name="removeItemAt" object="[fl.controls.ComboBox]" text=".removeItemAt(%index:uint%):void" tiptext="Removes the item at the specified index position." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#removeItemAt()"/>
                <string name="getItemAt" object="[fl.controls.ComboBox]" text=".getItemAt(%index:uint%):Object" tiptext="Retrieves the item at the specified index." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#getItemAt()"/>
                <string name="replaceItemAt" object="[fl.controls.ComboBox]" text=".replaceItemAt(%item:Object,index:uint%):Object" tiptext="Replaces the item at the specified index location with another item." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#replaceItemAt()"/>
                <string name="sortItems" object="[fl.controls.ComboBox]" text=".sortItems(%sortArgs:restParam%)" tiptext="Sorts the elements of the current data provider." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#sortItems()"/>
                <string name="sortItemsOn" object="[fl.controls.ComboBox]" text=".sortItemsOn(%field:String[,options:Object=null]%)" tiptext="Sorts the elements of the current data provider by one or more of its fields." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#sortItemsOn()"/>
                <string name="open" object="[fl.controls.ComboBox]" text=".open(%%):void" tiptext="Opens the drop-down list." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#open()"/>
                <string name="close" object="[fl.controls.ComboBox]" text=".close(%%):void" tiptext="Closes the drop-down list." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#close()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ComboBox" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html">
                <string name="editable" object="[fl.controls.ComboBox]" text=".editable" tiptext="Gets or sets a Boolean value that indicates whether the ComboBox component is editable or read-only." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#editable"/>
                <string name="rowCount" object="[fl.controls.ComboBox]" text=".rowCount" tiptext="Gets or sets the maximum number of rows that can appear in a drop-down  list that does not have a scroll bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#rowCount"/>
                <string name="restrict" object="[fl.controls.ComboBox]" text=".restrict" tiptext="Gets or sets the characters that a user can enter in the text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#restrict"/>
                <string name="selectedIndex" object="[fl.controls.ComboBox]" text=".selectedIndex" tiptext="Gets or sets the index of the item that is selected in a single-selection list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#selectedIndex"/>
                <string name="text" object="[fl.controls.ComboBox]" text=".text" tiptext="Gets or sets the text that the text box contains in an editable ComboBox component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#text"/>
                <string name="labelField" object="[fl.controls.ComboBox]" text=".labelField" tiptext="Gets or sets the name of the field in the dataProvider object to be displayed as the label for the TextInput field and drop-down list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#labelField"/>
                <string name="labelFunction" object="[fl.controls.ComboBox]" text=".labelFunction" tiptext="Gets or sets the function to be used to obtain the label for the item." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#labelFunction"/>
                <string name="selectedItem" object="[fl.controls.ComboBox]" text=".selectedItem" tiptext="Gets or sets the value of the item that is selected in the drop-down list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#selectedItem"/>
                <string name="dropdown" object="[fl.controls.ComboBox]" text=".dropdown" tiptext="Gets a reference to the List component that the ComboBox component contains." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#dropdown"/>
                <string name="length" object="[fl.controls.ComboBox]" text=".length" tiptext="Gets the number of items in the list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#length"/>
                <string name="textField" object="[fl.controls.ComboBox]" text=".textField" tiptext="Gets a reference to the TextInput component that the ComboBox component contains." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#textField"/>
                <string name="value" object="[fl.controls.ComboBox]" text=".value" tiptext="Gets the label of an item in an editable ComboBox component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#value"/>
                <string name="dataProvider" object="[fl.controls.ComboBox]" text=".dataProvider" tiptext="Gets or sets the data model of the list of items to be viewed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#dataProvider"/>
                <string name="dropdownWidth" object="[fl.controls.ComboBox]" text=".dropdownWidth" tiptext="Gets or sets the maximum width of the drop-down list, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#dropdownWidth"/>
                <string name="prompt" object="[fl.controls.ComboBox]" text=".prompt" tiptext="Gets or sets the prompt for the ComboBox component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#prompt"/>
                <string name="selectedLabel" object="[fl.controls.ComboBox]" text=".selectedLabel" tiptext="Gets the string that is displayed in the TextInput portion of the ComboBox component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#selectedLabel"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class ComboBox" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html">
                <string name="scroll" object="[fl.controls.ComboBox]" text=".addEventListener(%type:String=ScrollEvent.SCROLL{ScrollEvent.SCROLL,Event.OPEN,ComponentEvent.ENTER,Event.CLOSE,ListEvent.ITEM_ROLL_OUT,ListEvent.ITEM_ROLL_OVER,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user scrolls the drop-down list of the ComboBox component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#event:scroll"/>
                <string name="open" object="[fl.controls.ComboBox]" text=".addEventListener(%type:String=Event.OPEN{ScrollEvent.SCROLL,Event.OPEN,ComponentEvent.ENTER,Event.CLOSE,ListEvent.ITEM_ROLL_OUT,ListEvent.ITEM_ROLL_OVER,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user clicks the drop-down button to display the drop-down list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#event:open"/>
                <string name="enter" object="[fl.controls.ComboBox]" text=".addEventListener(%type:String=ComponentEvent.ENTER{ScrollEvent.SCROLL,Event.OPEN,ComponentEvent.ENTER,Event.CLOSE,ListEvent.ITEM_ROLL_OUT,ListEvent.ITEM_ROLL_OVER,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if the editable property is set to true and the user presses the Enter key while typing in the editable text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#event:enter"/>
                <string name="close" object="[fl.controls.ComboBox]" text=".addEventListener(%type:String=Event.CLOSE{ScrollEvent.SCROLL,Event.OPEN,ComponentEvent.ENTER,Event.CLOSE,ListEvent.ITEM_ROLL_OUT,ListEvent.ITEM_ROLL_OVER,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the drop-down list is dismissed for any reason." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#event:close"/>
                <string name="itemRollOut" object="[fl.controls.ComboBox]" text=".addEventListener(%type:String=ListEvent.ITEM_ROLL_OUT{ScrollEvent.SCROLL,Event.OPEN,ComponentEvent.ENTER,Event.CLOSE,ListEvent.ITEM_ROLL_OUT,ListEvent.ITEM_ROLL_OVER,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user rolls the pointer off of an item in the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#event:itemRollOut"/>
                <string name="itemRollOver" object="[fl.controls.ComboBox]" text=".addEventListener(%type:String=ListEvent.ITEM_ROLL_OVER{ScrollEvent.SCROLL,Event.OPEN,ComponentEvent.ENTER,Event.CLOSE,ListEvent.ITEM_ROLL_OUT,ListEvent.ITEM_ROLL_OVER,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user rolls the pointer over an item in the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#event:itemRollOver"/>
                <string name="change" object="[fl.controls.ComboBox]" text=".addEventListener(%type:String=Event.CHANGE{ScrollEvent.SCROLL,Event.OPEN,ComponentEvent.ENTER,Event.CLOSE,ListEvent.ITEM_ROLL_OUT,ListEvent.ITEM_ROLL_OVER,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user changes the selection in the ComboBox component or, if the ComboBox component is editable, each time the user enters a keystroke in the text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ComboBox.html#event:change"/>
            </folder>
        </folder>
        <folder name="DataGrid" id="[fl.controls.DataGrid]" sort="true" index="true" asAncestors="fl.controls:SelectableList,fl.containers:BaseScrollPane,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The DataGrid class is a list-based component that provides a grid of rows and columns." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DataGrid" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html">
                <string name="DataGrid" object="[fl.controls.DataGrid]" text="new DataGrid(%%)" constructor="true" tiptext="Creates a new DataGrid component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#DataGrid()"/>
                <string name="getStyleDefinition" object="[fl.controls.DataGrid]" text="DataGrid.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#getStyleDefinition()"/>
                <string name="addColumn" object="[fl.controls.DataGrid]" text=".addColumn(%column:*%):fl.controls.dataGridClasses:DataGridColumn" tiptext="Adds a column to the end of the columns array." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#addColumn()"/>
                <string name="addColumnAt" object="[fl.controls.DataGrid]" text=".addColumnAt(%column:*,index:uint%):fl.controls.dataGridClasses:DataGridColumn" tiptext="Inserts a column at the specified index in the columns array." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#addColumnAt()"/>
                <string name="removeColumnAt" object="[fl.controls.DataGrid]" text=".removeColumnAt(%index:uint%):fl.controls.dataGridClasses:DataGridColumn" tiptext="Removes the column that is located at the specified index of the columns array." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#removeColumnAt()"/>
                <string name="removeAllColumns" object="[fl.controls.DataGrid]" text=".removeAllColumns(%%):void" tiptext="Removes all columns from the DataGrid component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#removeAllColumns()"/>
                <string name="getColumnAt" object="[fl.controls.DataGrid]" text=".getColumnAt(%index:uint%):fl.controls.dataGridClasses:DataGridColumn" tiptext="Retrieves the column that is located at the specified index of the columns array." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#getColumnAt()"/>
                <string name="getColumnIndex" object="[fl.controls.DataGrid]" text=".getColumnIndex(%name:String%):int" tiptext="Retrieves the index of the column of the specified name, or -1 if no match is found." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#getColumnIndex()"/>
                <string name="getColumnCount" object="[fl.controls.DataGrid]" text=".getColumnCount(%%):uint" tiptext="Retrieves the number of columns in the DataGrid component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#getColumnCount()"/>
                <string name="spaceColumnsEqually" object="[fl.controls.DataGrid]" text=".spaceColumnsEqually(%%):void" tiptext="Resets the widths of the visible columns to the same size." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#spaceColumnsEqually()"/>
                <string name="editField" object="[fl.controls.DataGrid]" text=".editField(%index:uint,dataField:String,data:Object%):void" tiptext="Edits a given field or property in the DataGrid component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#editField()"/>
                <string name="itemToCellRenderer" object="[fl.controls.DataGrid]" text=".itemToCellRenderer(%item:Object%):fl.controls.listClasses:ICellRenderer" tiptext="The DataGrid component has multiple cells for any given item, so the itemToCellRenderer method always returns null." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#itemToCellRenderer()"/>
                <string name="createItemEditor" object="[fl.controls.DataGrid]" text=".createItemEditor(%colIndex:uint,rowIndex:uint%):void" tiptext="Uses the editor specified by the itemEditor property to create an item editor for the item renderer at the column and row index identified by the editedItemPosition property." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#createItemEditor()"/>
                <string name="destroyItemEditor" object="[fl.controls.DataGrid]" text=".destroyItemEditor(%%):void" tiptext="Closes an item editor that is currently open on an item renderer." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#destroyItemEditor()"/>
                <string name="getCellRendererAt" object="[fl.controls.DataGrid]" text=".getCellRendererAt(%row:uint,column:uint%):fl.controls.listClasses:ICellRenderer" tiptext="Get the instance of a cell renderer at the specified position in the DataGrid." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#getCellRendererAt()"/>
                <string name="scrollToIndex" object="[fl.controls.DataGrid]" text=".scrollToIndex(%newCaretIndex:int%):void" tiptext="Scrolls the list to the item at the specified index." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#scrollToIndex()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class DataGrid" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html">
                <string name="editable" object="[fl.controls.DataGrid]" text=".editable" tiptext="Indicates whether or not the user can edit items in the data provider." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#editable"/>
                <string name="resizableColumns" object="[fl.controls.DataGrid]" text=".resizableColumns" tiptext="Indicates whether the user can change the size of the columns." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#resizableColumns"/>
                <string name="sortableColumns" object="[fl.controls.DataGrid]" text=".sortableColumns" tiptext="Indicates whether the user can sort the items in the data provider by clicking on a column header cell." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#sortableColumns"/>
                <string name="itemEditorInstance" object="[fl.controls.DataGrid]" text=".itemEditorInstance" tiptext="A reference to the currently active instance of the item editor, if one exists." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#itemEditorInstance"/>
                <string name="horizontalScrollPolicy" object="[fl.controls.DataGrid]" text=".horizontalScrollPolicy" tiptext="Gets or sets a Boolean value that indicates whether the horizontal scroll bar is always on." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#horizontalScrollPolicy"/>
                <string name="columns" object="[fl.controls.DataGrid]" text=".columns" tiptext="Gets or sets an array of DataGridColumn objects, one for each column that can be displayed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#columns"/>
                <string name="minColumnWidth" object="[fl.controls.DataGrid]" text=".minColumnWidth" tiptext="Gets or sets the minimum width of a DataGrid column, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#minColumnWidth"/>
                <string name="labelFunction" object="[fl.controls.DataGrid]" text=".labelFunction" tiptext="Gets or sets a function that determines which fields of each item to use for the label text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#labelFunction"/>
                <string name="rowCount" object="[fl.controls.DataGrid]" text=".rowCount" tiptext="Gets or sets the number of rows that are at least partially visible in the list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#rowCount"/>
                <string name="rowHeight" object="[fl.controls.DataGrid]" text=".rowHeight" tiptext="Gets or sets the height of each row in the DataGrid component, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#rowHeight"/>
                <string name="headerHeight" object="[fl.controls.DataGrid]" text=".headerHeight" tiptext="Gets or sets the height of the DataGrid header, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#headerHeight"/>
                <string name="showHeaders" object="[fl.controls.DataGrid]" text=".showHeaders" tiptext="Gets or sets a Boolean value that indicates whether the DataGrid component shows column headers." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#showHeaders"/>
                <string name="sortIndex" object="[fl.controls.DataGrid]" text=".sortIndex" tiptext="Gets the index of the column to be sorted." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#sortIndex"/>
                <string name="sortDescending" object="[fl.controls.DataGrid]" text=".sortDescending" tiptext="Gets the order in which a column is sorted when the user clicks its header." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#sortDescending"/>
                <string name="imeMode" object="[fl.controls.DataGrid]" text=".imeMode" tiptext="Gets or sets the mode of the input method editor (IME)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#imeMode"/>
                <string name="editedItemRenderer" object="[fl.controls.DataGrid]" text=".editedItemRenderer" tiptext="Gets a reference to the item renderer in the DataGrid component whose item is currently being edited." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#editedItemRenderer"/>
                <string name="editedItemPosition" object="[fl.controls.DataGrid]" text=".editedItemPosition" tiptext="Gets or sets the column and row index of the item renderer for the data provider item that is being edited." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#editedItemPosition"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class DataGrid" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html">
                <string name="itemFocusOut" object="[fl.controls.DataGrid]" text=".addEventListener(%type:String=DataGridEvent.ITEM_FOCUS_OUT{DataGridEvent.ITEM_FOCUS_OUT,DataGridEvent.ITEM_FOCUS_IN,DataGridEvent.ITEM_EDIT_END,DataGridEvent.ITEM_EDIT_BEGIN,DataGridEvent.ITEM_EDIT_BEGINNING,DataGridEvent.COLUMN_STRETCH,DataGridEvent.HEADER_RELEASE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after an item loses focus." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#event:itemFocusOut"/>
                <string name="itemFocusIn" object="[fl.controls.DataGrid]" text=".addEventListener(%type:String=DataGridEvent.ITEM_FOCUS_IN{DataGridEvent.ITEM_FOCUS_OUT,DataGridEvent.ITEM_FOCUS_IN,DataGridEvent.ITEM_EDIT_END,DataGridEvent.ITEM_EDIT_BEGIN,DataGridEvent.ITEM_EDIT_BEGINNING,DataGridEvent.COLUMN_STRETCH,DataGridEvent.HEADER_RELEASE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after an item receives focus." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#event:itemFocusIn"/>
                <string name="itemEditEnd" object="[fl.controls.DataGrid]" text=".addEventListener(%type:String=DataGridEvent.ITEM_EDIT_END{DataGridEvent.ITEM_FOCUS_OUT,DataGridEvent.ITEM_FOCUS_IN,DataGridEvent.ITEM_EDIT_END,DataGridEvent.ITEM_EDIT_BEGIN,DataGridEvent.ITEM_EDIT_BEGINNING,DataGridEvent.COLUMN_STRETCH,DataGridEvent.HEADER_RELEASE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an item editing session ends for any reason." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#event:itemEditEnd"/>
                <string name="itemEditBegin" object="[fl.controls.DataGrid]" text=".addEventListener(%type:String=DataGridEvent.ITEM_EDIT_BEGIN{DataGridEvent.ITEM_FOCUS_OUT,DataGridEvent.ITEM_FOCUS_IN,DataGridEvent.ITEM_EDIT_END,DataGridEvent.ITEM_EDIT_BEGIN,DataGridEvent.ITEM_EDIT_BEGINNING,DataGridEvent.COLUMN_STRETCH,DataGridEvent.HEADER_RELEASE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after the editedItemPosition property is set and the item can be edited." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#event:itemEditBegin"/>
                <string name="itemEditBeginning" object="[fl.controls.DataGrid]" text=".addEventListener(%type:String=DataGridEvent.ITEM_EDIT_BEGINNING{DataGridEvent.ITEM_FOCUS_OUT,DataGridEvent.ITEM_FOCUS_IN,DataGridEvent.ITEM_EDIT_END,DataGridEvent.ITEM_EDIT_BEGIN,DataGridEvent.ITEM_EDIT_BEGINNING,DataGridEvent.COLUMN_STRETCH,DataGridEvent.HEADER_RELEASE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after a user prepares to edit an item, for example, by releasing the mouse button over the item." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#event:itemEditBeginning"/>
                <string name="columnStretch" object="[fl.controls.DataGrid]" text=".addEventListener(%type:String=DataGridEvent.COLUMN_STRETCH{DataGridEvent.ITEM_FOCUS_OUT,DataGridEvent.ITEM_FOCUS_IN,DataGridEvent.ITEM_EDIT_END,DataGridEvent.ITEM_EDIT_BEGIN,DataGridEvent.ITEM_EDIT_BEGINNING,DataGridEvent.COLUMN_STRETCH,DataGridEvent.HEADER_RELEASE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after a user expands a column horizontally." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#event:columnStretch"/>
                <string name="headerRelease" object="[fl.controls.DataGrid]" text=".addEventListener(%type:String=DataGridEvent.HEADER_RELEASE{DataGridEvent.ITEM_FOCUS_OUT,DataGridEvent.ITEM_FOCUS_IN,DataGridEvent.ITEM_EDIT_END,DataGridEvent.ITEM_EDIT_BEGIN,DataGridEvent.ITEM_EDIT_BEGINNING,DataGridEvent.COLUMN_STRETCH,DataGridEvent.HEADER_RELEASE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after the user clicks a header cell." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/DataGrid.html#event:headerRelease"/>
            </folder>
        </folder>
        <folder name="Label" id="[fl.controls.Label]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="A Label component displays one or more lines of plain or HTML-formatted text that can be formatted for alignment and size." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Label" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html">
                <string name="Label" object="[fl.controls.Label]" text="new Label(%%)" constructor="true" tiptext="Creates a new Label component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html#Label()"/>
                <string name="getStyleDefinition" object="[fl.controls.Label]" text="Label.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html#getStyleDefinition()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Label" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html">
                <string name="textField" object="[fl.controls.Label]" text=".textField" tiptext="A reference to the internal text field of the Label component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html#textField"/>
                <string name="text" object="[fl.controls.Label]" text=".text" tiptext="Gets or sets the plain text to be displayed by the Label component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html#text"/>
                <string name="htmlText" object="[fl.controls.Label]" text=".htmlText" tiptext="Gets or sets the text to be displayed by the Label component, including HTML markup that expresses the styles of that text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html#htmlText"/>
                <string name="condenseWhite" object="[fl.controls.Label]" text=".condenseWhite" tiptext="Gets or sets a value that indicates whether extra white space such as spaces and line breaks should be removed from a Label component that contains HTML text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html#condenseWhite"/>
                <string name="selectable" object="[fl.controls.Label]" text=".selectable" tiptext="Gets or sets a value that indicates whether the text can be selected." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html#selectable"/>
                <string name="wordWrap" object="[fl.controls.Label]" text=".wordWrap" tiptext="Gets or sets a value that indicates whether the text field supports word wrapping." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html#wordWrap"/>
                <string name="autoSize" object="[fl.controls.Label]" text=".autoSize" tiptext="Gets or sets a string that indicates how a label is sized and aligned to fit the value of its text property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html#autoSize"/>
                <string name="width" object="[fl.controls.Label]" text=".width" tiptext="Gets or sets the width of the component, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html#width"/>
                <string name="height" object="[fl.controls.Label]" text=".height" tiptext="Gets or sets the height of the component, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html#height"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class Label" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html">
                <string name="resize" object="[fl.controls.Label]" text=".addEventListener(%type:String=ComponentEvent.RESIZE{ComponentEvent.RESIZE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after there is a change in the width or height of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Label.html#event:resize"/>
            </folder>
        </folder>
        <folder name="LabelButton" id="[fl.controls.LabelButton]" sort="true" index="true" asAncestors="fl.controls:BaseButton,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The LabelButton class is an abstract class that extends the BaseButton class by adding a label, an icon, and toggle functionality." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class LabelButton" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html">
                <string name="LabelButton" object="[fl.controls.LabelButton]" text="new LabelButton(%%)" constructor="true" tiptext="Creates a new LabelButton component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html#LabelButton()"/>
                <string name="getStyleDefinition" object="[fl.controls.LabelButton]" text="LabelButton.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html#getStyleDefinition()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class LabelButton" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html">
                <string name="textField" object="[fl.controls.LabelButton]" text=".textField" tiptext="A reference to the component&apos;s internal text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html#textField"/>
                <string name="label" object="[fl.controls.LabelButton]" text=".label" tiptext="Gets or sets the text label for the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html#label"/>
                <string name="labelPlacement" object="[fl.controls.LabelButton]" text=".labelPlacement" tiptext="Position of the label in relation to a specified icon." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html#labelPlacement"/>
                <string name="toggle" object="[fl.controls.LabelButton]" text=".toggle" tiptext="Gets or sets a Boolean value that indicates whether a button can be toggled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html#toggle"/>
                <string name="selected" object="[fl.controls.LabelButton]" text=".selected" tiptext="Gets or sets a Boolean value that indicates whether a toggle button is toggled in the on or off position." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html#selected"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class LabelButton" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html">
                <string name="labelChange" object="[fl.controls.LabelButton]" text=".addEventListener(%type:String=ComponentEvent.LABEL_CHANGE{ComponentEvent.LABEL_CHANGE,MouseEvent.CLICK},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after the label value changes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html#event:labelChange"/>
                <string name="click" object="[fl.controls.LabelButton]" text=".addEventListener(%type:String=MouseEvent.CLICK{ComponentEvent.LABEL_CHANGE,MouseEvent.CLICK},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after the toggle button receives input from a mouse device or from the spacebar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/LabelButton.html#event:click"/>
            </folder>
        </folder>
        <folder name="List" id="[fl.controls.List]" sort="true" index="true" asAncestors="fl.controls:SelectableList,fl.containers:BaseScrollPane,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The List component displays list-based information and is ideally suited for the display of arrays of information." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class List" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html">
                <string name="List" object="[fl.controls.List]" text="new List(%%)" constructor="true" tiptext="Creates a new List component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html#List()"/>
                <string name="getStyleDefinition" object="[fl.controls.List]" text="List.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html#getStyleDefinition()"/>
                <string name="scrollToIndex" object="[fl.controls.List]" text=".scrollToIndex(%newCaretIndex:int%):void" tiptext="Scrolls the list to the item at the specified index." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html#scrollToIndex()"/>
                <string name="itemToLabel" object="[fl.controls.List]" text=".itemToLabel(%item:Object%):String" tiptext="Retrieves the string that the renderer displays for the given data object based on the labelField and labelFunction properties." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html#itemToLabel()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class List" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html">
                <string name="labelField" object="[fl.controls.List]" text=".labelField" tiptext="Gets or sets the name of the field in the dataProvider object to be displayed as the label for the TextInput field and drop-down list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html#labelField"/>
                <string name="labelFunction" object="[fl.controls.List]" text=".labelFunction" tiptext="Gets or sets the function to be used to obtain the label for the item." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html#labelFunction"/>
                <string name="iconField" object="[fl.controls.List]" text=".iconField" tiptext="Gets or sets the item field that provides the icon for the item." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html#iconField"/>
                <string name="iconFunction" object="[fl.controls.List]" text=".iconFunction" tiptext="Gets or sets the function to be used to obtain the icon for the item." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html#iconFunction"/>
                <string name="rowCount" object="[fl.controls.List]" text=".rowCount" tiptext="Gets or sets the number of rows that are at least partially visible in the list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html#rowCount"/>
                <string name="rowHeight" object="[fl.controls.List]" text=".rowHeight" tiptext="Gets or sets the height of each row in the list, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/List.html#rowHeight"/>
            </folder>
        </folder>
        <folder name="NumericStepper" id="[fl.controls.NumericStepper]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The NumericStepper component displays an ordered set of numbers from which the user can make a selection." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class NumericStepper" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html">
                <string name="NumericStepper" object="[fl.controls.NumericStepper]" text="new NumericStepper(%%)" constructor="true" tiptext="Creates a new NumericStepper component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#NumericStepper()"/>
                <string name="getStyleDefinition" object="[fl.controls.NumericStepper]" text="NumericStepper.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#getStyleDefinition()"/>
                <string name="drawFocus" object="[fl.controls.NumericStepper]" text=".drawFocus(%focused:Boolean%):void" tiptext="Shows or hides the focus indicator on this component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#drawFocus()"/>
                <string name="setFocus" object="[fl.controls.NumericStepper]" text=".setFocus(%%):void" tiptext="Sets focus to the component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#setFocus()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class NumericStepper" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html">
                <string name="enabled" object="[fl.controls.NumericStepper]" text=".enabled" tiptext="Gets or sets a value that indicates whether the component can accept user interaction." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#enabled"/>
                <string name="maximum" object="[fl.controls.NumericStepper]" text=".maximum" tiptext="Gets or sets the maximum value in the sequence of numeric values." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#maximum"/>
                <string name="minimum" object="[fl.controls.NumericStepper]" text=".minimum" tiptext="Gets or sets the minimum number in the sequence of numeric values." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#minimum"/>
                <string name="nextValue" object="[fl.controls.NumericStepper]" text=".nextValue" tiptext="Gets the next value in the sequence of values." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#nextValue"/>
                <string name="previousValue" object="[fl.controls.NumericStepper]" text=".previousValue" tiptext="Gets the previous value in the sequence of values." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#previousValue"/>
                <string name="stepSize" object="[fl.controls.NumericStepper]" text=".stepSize" tiptext="Gets or sets a nonzero number that describes the unit of change between values." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#stepSize"/>
                <string name="value" object="[fl.controls.NumericStepper]" text=".value" tiptext="Gets or sets the current value of the NumericStepper component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#value"/>
                <string name="textField" object="[fl.controls.NumericStepper]" text=".textField" tiptext="Gets a reference to the TextInput component that the NumericStepper component contains." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#textField"/>
                <string name="imeMode" object="[fl.controls.NumericStepper]" text=".imeMode" tiptext="Gets or sets the mode of the input method editor (IME)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#imeMode"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class NumericStepper" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html">
                <string name="change" object="[fl.controls.NumericStepper]" text=".addEventListener(%type:String=Event.CHANGE{Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user changes the value of the NumericStepper component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/NumericStepper.html#event:change"/>
            </folder>
        </folder>
        <folder name="ProgressBar" id="[fl.controls.ProgressBar]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The ProgressBar component displays the progress of content that is being loaded." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ProgressBar" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html">
                <string name="ProgressBar" object="[fl.controls.ProgressBar]" text="new ProgressBar(%%)" constructor="true" tiptext="Creates a new ProgressBar component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#ProgressBar()"/>
                <string name="getStyleDefinition" object="[fl.controls.ProgressBar]" text="ProgressBar.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#getStyleDefinition()"/>
                <string name="setProgress" object="[fl.controls.ProgressBar]" text=".setProgress(%value:Number,maximum:Number%):void" tiptext="Sets the state of the bar to reflect the amount of progress made when using manual mode." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#setProgress()"/>
                <string name="reset" object="[fl.controls.ProgressBar]" text=".reset(%%):void" tiptext="Resets the progress bar for a new load operation." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#reset()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ProgressBar" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html">
                <string name="direction" object="[fl.controls.ProgressBar]" text=".direction" tiptext="Indicates the fill direction for the progress bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#direction"/>
                <string name="indeterminate" object="[fl.controls.ProgressBar]" text=".indeterminate" tiptext="Gets or sets a value that indicates the type of fill that the progress bar uses and whether the loading source is known or unknown." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#indeterminate"/>
                <string name="minimum" object="[fl.controls.ProgressBar]" text=".minimum" tiptext="Gets or sets the minimum value for the progress bar when the ProgressBar.mode property is set to ProgressBarMode.MANUAL." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#minimum"/>
                <string name="maximum" object="[fl.controls.ProgressBar]" text=".maximum" tiptext="Gets or sets the maximum value for the progress bar when the ProgressBar.mode property is set to ProgressBarMode.MANUAL." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#maximum"/>
                <string name="value" object="[fl.controls.ProgressBar]" text=".value" tiptext="Gets or sets a value that indicates the amount of progress that has been made in the load operation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#value"/>
                <string name="source" object="[fl.controls.ProgressBar]" text=".source" tiptext="Gets or sets a reference to the content that is being loaded and for which the ProgressBar is measuring the progress of the load operation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#source"/>
                <string name="percentComplete" object="[fl.controls.ProgressBar]" text=".percentComplete" tiptext="Gets a number between 0 and 100 that indicates the percentage of the content has already loaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#percentComplete"/>
                <string name="mode" object="[fl.controls.ProgressBar]" text=".mode" tiptext="Gets or sets the method to be used to update the progress bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#mode"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class ProgressBar" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html">
                <string name="progress" object="[fl.controls.ProgressBar]" text=".addEventListener(%type:String=ProgressEvent.PROGRESS{ProgressEvent.PROGRESS,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched as content loads in event mode or polled mode." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#event:progress"/>
                <string name="complete" object="[fl.controls.ProgressBar]" text=".addEventListener(%type:String=Event.COMPLETE{ProgressEvent.PROGRESS,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the load operation completes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBar.html#event:complete"/>
            </folder>
        </folder>
        <folder name="ProgressBarDirection" id="[fl.controls.ProgressBarDirection]" sort="true" index="true" asAncestors="Object" tiptext="The ProgressBarDirection class defines the values for the direction property of the ProgressBar class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBarDirection.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class ProgressBarDirection" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBarDirection.html">
                <string name="RIGHT" object="[fl.controls.ProgressBarDirection]" text="ProgressBarDirection.RIGHT" constant="true" tiptext="Fill the progress bar from left to right." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBarDirection.html#RIGHT"/>
                <string name="LEFT" object="[fl.controls.ProgressBarDirection]" text="ProgressBarDirection.LEFT" constant="true" tiptext="Fill the progress bar from right to left." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBarDirection.html#LEFT"/>
            </folder>
        </folder>
        <folder name="ProgressBarMode" id="[fl.controls.ProgressBarMode]" sort="true" index="true" asAncestors="Object" tiptext="The ProgressBarMode class defines the values for the mode property of the ProgressBar class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBarMode.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class ProgressBarMode" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBarMode.html">
                <string name="MANUAL" object="[fl.controls.ProgressBarMode]" text="ProgressBarMode.MANUAL" constant="true" tiptext="Manually update the status of the ProgressBar component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBarMode.html#MANUAL"/>
                <string name="EVENT" object="[fl.controls.ProgressBarMode]" text="ProgressBarMode.EVENT" constant="true" tiptext="The component specified by the source property must dispatch progress and complete events." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBarMode.html#EVENT"/>
                <string name="POLLED" object="[fl.controls.ProgressBarMode]" text="ProgressBarMode.POLLED" constant="true" tiptext="Progress is updated by polling the source." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ProgressBarMode.html#POLLED"/>
            </folder>
        </folder>
        <folder name="RadioButton" id="[fl.controls.RadioButton]" sort="true" index="true" asAncestors="fl.controls:LabelButton,fl.controls:BaseButton,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The RadioButton component lets you force a user to make a single selection from a set of choices." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class RadioButton" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html">
                <string name="RadioButton" object="[fl.controls.RadioButton]" text="new RadioButton(%%)" constructor="true" tiptext="Creates a new RadioButton component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html#RadioButton()"/>
                <string name="getStyleDefinition" object="[fl.controls.RadioButton]" text="RadioButton.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html#getStyleDefinition()"/>
                <string name="drawFocus" object="[fl.controls.RadioButton]" text=".drawFocus(%focused:Boolean%):void" tiptext="Shows or hides the focus indicator around this component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html#drawFocus()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class RadioButton" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html">
                <string name="toggle" object="[fl.controls.RadioButton]" text=".toggle" tiptext="A radio button is a toggle button; its toggle property is set to true in the constructor and cannot be changed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html#toggle"/>
                <string name="autoRepeat" object="[fl.controls.RadioButton]" text=".autoRepeat" tiptext="A radio button never auto-repeats by definition, so the autoRepeat property is set to false in the constructor and cannot be changed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html#autoRepeat"/>
                <string name="selected" object="[fl.controls.RadioButton]" text=".selected" tiptext="Indicates whether a radio button is currently selected (true) or deselected (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html#selected"/>
                <string name="groupName" object="[fl.controls.RadioButton]" text=".groupName" tiptext="The group name for a radio button instance or group." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html#groupName"/>
                <string name="group" object="[fl.controls.RadioButton]" text=".group" tiptext="The RadioButtonGroup object to which this RadioButton belongs." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html#group"/>
                <string name="value" object="[fl.controls.RadioButton]" text=".value" tiptext="A user-defined value that is associated with a radio button." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html#value"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class RadioButton" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html">
                <string name="click" object="[fl.controls.RadioButton]" text=".addEventListener(%type:String=MouseEvent.CLICK{MouseEvent.CLICK,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user clicks the radio button with the mouse or spacebar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html#event:click"/>
                <string name="change" object="[fl.controls.RadioButton]" text=".addEventListener(%type:String=Event.CHANGE{MouseEvent.CLICK,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the radio button instance&apos;s selected property changes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButton.html#event:change"/>
            </folder>
        </folder>
        <folder name="RadioButtonGroup" id="[fl.controls.RadioButtonGroup]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The RadioButtonGroup class defines a group of RadioButton components to act as a single component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class RadioButtonGroup" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html">
                <string name="RadioButtonGroup" object="[fl.controls.RadioButtonGroup]" text="new RadioButtonGroup(%name:String%)" constructor="true" tiptext="Creates a new RadioButtonGroup instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html#RadioButtonGroup()"/>
                <string name="getGroup" object="[fl.controls.RadioButtonGroup]" text="RadioButtonGroup.getGroup(%name:String%):fl.controls:RadioButtonGroup" static="true" tiptext="Retrieves a reference to the specified radio button group." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html#getGroup()"/>
                <string name="addRadioButton" object="[fl.controls.RadioButtonGroup]" text=".addRadioButton(%radioButton:fl.controls:RadioButton%):void" tiptext="Adds a radio button to the internal radio button array for use with radio button group indexing, which allows for the selection of a single radio button in a group of radio buttons." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html#addRadioButton()"/>
                <string name="removeRadioButton" object="[fl.controls.RadioButtonGroup]" text=".removeRadioButton(%radioButton:fl.controls:RadioButton%):void" tiptext="Clears the RadioButton instance from the internal list of radio buttons." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html#removeRadioButton()"/>
                <string name="getRadioButtonIndex" object="[fl.controls.RadioButtonGroup]" text=".getRadioButtonIndex(%radioButton:fl.controls:RadioButton%):int" tiptext="Returns the index of the specified RadioButton instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html#getRadioButtonIndex()"/>
                <string name="getRadioButtonAt" object="[fl.controls.RadioButtonGroup]" text=".getRadioButtonAt(%index:int%):fl.controls:RadioButton" tiptext="Retrieves the RadioButton component at the specified index location." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html#getRadioButtonAt()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class RadioButtonGroup" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html">
                <string name="name" object="[fl.controls.RadioButtonGroup]" text=".name" tiptext="Gets the instance name of the radio button." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html#name"/>
                <string name="selection" object="[fl.controls.RadioButtonGroup]" text=".selection" tiptext="Gets or sets a reference to the radio button that is currently selected from the radio button group." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html#selection"/>
                <string name="selectedData" object="[fl.controls.RadioButtonGroup]" text=".selectedData" tiptext="Gets or sets the selected radio button&apos;s value property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html#selectedData"/>
                <string name="numRadioButtons" object="[fl.controls.RadioButtonGroup]" text=".numRadioButtons" tiptext="Gets the number of radio buttons in this radio button group." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html#numRadioButtons"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class RadioButtonGroup" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html">
                <string name="click" object="[fl.controls.RadioButtonGroup]" text=".addEventListener(%type:String=MouseEvent.CLICK{MouseEvent.CLICK,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a RadioButton instance is clicked." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html#event:click"/>
                <string name="change" object="[fl.controls.RadioButtonGroup]" text=".addEventListener(%type:String=Event.CHANGE{MouseEvent.CLICK,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the selected RadioButton instance in a group changes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/RadioButtonGroup.html#event:change"/>
            </folder>
        </folder>
        <folder name="ScrollBar" id="[fl.controls.ScrollBar]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The ScrollBar component provides the end user with a way to control the portion of data that is displayed when there is too much data to fit in the display area." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ScrollBar" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html">
                <string name="ScrollBar" object="[fl.controls.ScrollBar]" text="new ScrollBar(%%)" constructor="true" tiptext="Creates a new ScrollBar component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#ScrollBar()"/>
                <string name="getStyleDefinition" object="[fl.controls.ScrollBar]" text="ScrollBar.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#getStyleDefinition()"/>
                <string name="setSize" object="[fl.controls.ScrollBar]" text=".setSize(%width:Number,height:Number%):void" tiptext="Sets the component to the specified width and height." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#setSize()"/>
                <string name="setScrollProperties" object="[fl.controls.ScrollBar]" text=".setScrollProperties(%pageSize:Number,minScrollPosition:Number,maxScrollPosition:Number[,pageScrollSize:Number=0]%):void" tiptext="Sets the range and viewport size of the ScrollBar component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#setScrollProperties()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ScrollBar" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html">
                <string name="width" object="[fl.controls.ScrollBar]" text=".width" tiptext="Gets or sets the width of the component, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#width"/>
                <string name="height" object="[fl.controls.ScrollBar]" text=".height" tiptext="Gets or sets the height of the component, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#height"/>
                <string name="enabled" object="[fl.controls.ScrollBar]" text=".enabled" tiptext="Gets or sets a Boolean value that indicates whether the scroll bar is enabled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#enabled"/>
                <string name="scrollPosition" object="[fl.controls.ScrollBar]" text=".scrollPosition" tiptext="Gets or sets the current scroll position and updates the position of the thumb." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#scrollPosition"/>
                <string name="minScrollPosition" object="[fl.controls.ScrollBar]" text=".minScrollPosition" tiptext="Gets or sets a number that represents the minimum scroll position." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#minScrollPosition"/>
                <string name="maxScrollPosition" object="[fl.controls.ScrollBar]" text=".maxScrollPosition" tiptext="Gets or sets a number that represents the maximum scroll position." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#maxScrollPosition"/>
                <string name="pageSize" object="[fl.controls.ScrollBar]" text=".pageSize" tiptext="Gets or sets the number of lines that a page contains." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#pageSize"/>
                <string name="pageScrollSize" object="[fl.controls.ScrollBar]" text=".pageScrollSize" tiptext="Gets or sets a value that represents the increment by which the page is scrolled when the scroll bar track is pressed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#pageScrollSize"/>
                <string name="lineScrollSize" object="[fl.controls.ScrollBar]" text=".lineScrollSize" tiptext="Gets or sets a value that represents the increment by which to scroll the page when the scroll bar track is pressed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#lineScrollSize"/>
                <string name="direction" object="[fl.controls.ScrollBar]" text=".direction" tiptext="Gets or sets a value that indicates whether the scroll bar scrolls horizontally or vertically." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#direction"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class ScrollBar" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html">
                <string name="scroll" object="[fl.controls.ScrollBar]" text=".addEventListener(%type:String=ScrollEvent.SCROLL{ScrollEvent.SCROLL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the ScrollBar instance&apos;s scrollPosition property changes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBar.html#event:scroll"/>
            </folder>
        </folder>
        <folder name="ScrollBarDirection" id="[fl.controls.ScrollBarDirection]" sort="true" index="true" asAncestors="Object" tiptext="Defines the values for the direction property of the ScrollBar component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBarDirection.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class ScrollBarDirection" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBarDirection.html">
                <string name="VERTICAL" object="[fl.controls.ScrollBarDirection]" text="ScrollBarDirection.VERTICAL" constant="true" tiptext="Indicates that the ScrollBar component instance is used for vertical scrolling." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBarDirection.html#VERTICAL"/>
                <string name="HORIZONTAL" object="[fl.controls.ScrollBarDirection]" text="ScrollBarDirection.HORIZONTAL" constant="true" tiptext="Indicates that the ScrollBar component instance is used for horizontal scrolling." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollBarDirection.html#HORIZONTAL"/>
            </folder>
        </folder>
        <folder name="ScrollPolicy" id="[fl.controls.ScrollPolicy]" sort="true" index="true" asAncestors="Object" tiptext="Values for the horizontalScrollPolicy and verticalScrollPolicy properties of the BaseScrollPane class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollPolicy.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class ScrollPolicy" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollPolicy.html">
                <string name="ON" object="[fl.controls.ScrollPolicy]" text="ScrollPolicy.ON" constant="true" tiptext="Always show the scroll bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollPolicy.html#ON"/>
                <string name="AUTO" object="[fl.controls.ScrollPolicy]" text="ScrollPolicy.AUTO" constant="true" tiptext="Show the scroll bar if the children exceed the owner&apos;s dimensions." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollPolicy.html#AUTO"/>
                <string name="OFF" object="[fl.controls.ScrollPolicy]" text="ScrollPolicy.OFF" constant="true" tiptext="Never show the scroll bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/ScrollPolicy.html#OFF"/>
            </folder>
        </folder>
        <folder name="SelectableList" id="[fl.controls.SelectableList]" sort="true" index="true" asAncestors="fl.containers:BaseScrollPane,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The SelectableList is the base class for all list-based components--for example, the List, TileList, DataGrid, and ComboBox components." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SelectableList" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html">
                <string name="SelectableList" object="[fl.controls.SelectableList]" text="new SelectableList(%%)" constructor="true" tiptext="Creates a new SelectableList instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#SelectableList()"/>
                <string name="getStyleDefinition" object="[fl.controls.SelectableList]" text="SelectableList.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#getStyleDefinition()"/>
                <string name="clearSelection" object="[fl.controls.SelectableList]" text=".clearSelection(%%):void" tiptext="Clears the currently selected item in the list and sets the selectedIndex property to -1." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#clearSelection()"/>
                <string name="itemToCellRenderer" object="[fl.controls.SelectableList]" text=".itemToCellRenderer(%item:Object%):fl.controls.listClasses:ICellRenderer" tiptext="Retrieves the ICellRenderer for a given item object, if there is one." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#itemToCellRenderer()"/>
                <string name="addItem" object="[fl.controls.SelectableList]" text=".addItem(%item:Object%):void" tiptext="Appends an item to the end of the list of items." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#addItem()"/>
                <string name="addItemAt" object="[fl.controls.SelectableList]" text=".addItemAt(%item:Object,index:uint%):void" tiptext="Inserts an item into the list at the specified index location." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#addItemAt()"/>
                <string name="removeAll" object="[fl.controls.SelectableList]" text=".removeAll(%%):void" tiptext="Removes all items from the list." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#removeAll()"/>
                <string name="getItemAt" object="[fl.controls.SelectableList]" text=".getItemAt(%index:uint%):Object" tiptext="Retrieves the item at the specified index." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#getItemAt()"/>
                <string name="removeItem" object="[fl.controls.SelectableList]" text=".removeItem(%item:Object%):Object" tiptext="Removes the specified item from the list." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#removeItem()"/>
                <string name="removeItemAt" object="[fl.controls.SelectableList]" text=".removeItemAt(%index:uint%):Object" tiptext="Removes the item at the specified index position." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#removeItemAt()"/>
                <string name="replaceItemAt" object="[fl.controls.SelectableList]" text=".replaceItemAt(%item:Object,index:uint%):Object" tiptext="Replaces the item at the specified index location with another item." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#replaceItemAt()"/>
                <string name="invalidateList" object="[fl.controls.SelectableList]" text=".invalidateList(%%):void" tiptext="Invalidates the whole list, forcing the list items to be redrawn." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#invalidateList()"/>
                <string name="invalidateItem" object="[fl.controls.SelectableList]" text=".invalidateItem(%item:Object%):void" tiptext="Invalidates a specific item renderer." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#invalidateItem()"/>
                <string name="invalidateItemAt" object="[fl.controls.SelectableList]" text=".invalidateItemAt(%index:uint%):void" tiptext="Invalidates the renderer for the item at the specified index." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#invalidateItemAt()"/>
                <string name="sortItems" object="[fl.controls.SelectableList]" text=".sortItems(%sortArgs:restParam%)" tiptext="Sorts the elements of the current data provider." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#sortItems()"/>
                <string name="sortItemsOn" object="[fl.controls.SelectableList]" text=".sortItemsOn(%field:String[,options:Object=null]%)" tiptext="Sorts the elements of the current data provider by one or more of its fields." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#sortItemsOn()"/>
                <string name="isItemSelected" object="[fl.controls.SelectableList]" text=".isItemSelected(%item:Object%):Boolean" tiptext="Checks whether the specified item is selected in the list." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#isItemSelected()"/>
                <string name="scrollToSelected" object="[fl.controls.SelectableList]" text=".scrollToSelected(%%):void" tiptext="Scrolls the list to the item at the location indicated by the current value of the selectedIndex property." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#scrollToSelected()"/>
                <string name="scrollToIndex" object="[fl.controls.SelectableList]" text=".scrollToIndex(%newCaretIndex:int%):void" tiptext="Scrolls the list to the item at the specified index." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#scrollToIndex()"/>
                <string name="getNextIndexAtLetter" object="[fl.controls.SelectableList]" text=".getNextIndexAtLetter(%firstLetter:String[,startIndex:int=-1]%):int" tiptext="Returns the index of the next item in the dataProvider in which the label&apos;s first character matches a specified string character." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#getNextIndexAtLetter()"/>
                <string name="itemToLabel" object="[fl.controls.SelectableList]" text=".itemToLabel(%item:Object%):String" tiptext="Retrieves the string that the renderer displays for the given data object based on the label properties of the object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#itemToLabel()"/>
                <string name="setRendererStyle" object="[fl.controls.SelectableList]" text=".setRendererStyle(%name:String,style:Object[,column:uint=0]%):void" tiptext="Sets a style on the renderers in the list." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#setRendererStyle()"/>
                <string name="getRendererStyle" object="[fl.controls.SelectableList]" text=".getRendererStyle(%name:String[,column:int=-1]%):Object" tiptext="Retrieves a style that is set on the renderers in the list." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#getRendererStyle()"/>
                <string name="clearRendererStyle" object="[fl.controls.SelectableList]" text=".clearRendererStyle(%name:String[,column:int=-1]%):void" tiptext="Clears a style that is set on the renderers in the list." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#clearRendererStyle()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SelectableList" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html">
                <string name="dataProvider" object="[fl.controls.SelectableList]" text=".dataProvider" tiptext="Gets or sets the data model of the list of items to be viewed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#dataProvider"/>
                <string name="maxHorizontalScrollPosition" object="[fl.controls.SelectableList]" text=".maxHorizontalScrollPosition" tiptext="Gets or sets the number of pixels that the list scrolls to the right when the horizontalScrollPolicy property is set to ScrollPolicy.ON." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#maxHorizontalScrollPosition"/>
                <string name="length" object="[fl.controls.SelectableList]" text=".length" tiptext="Gets the number of items in the data provider." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#length"/>
                <string name="allowMultipleSelection" object="[fl.controls.SelectableList]" text=".allowMultipleSelection" tiptext="Gets a Boolean value that indicates whether more than one list item can be selected at a time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#allowMultipleSelection"/>
                <string name="selectable" object="[fl.controls.SelectableList]" text=".selectable" tiptext="Gets or sets a Boolean value that indicates whether the items in the list can be selected." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#selectable"/>
                <string name="selectedIndex" object="[fl.controls.SelectableList]" text=".selectedIndex" tiptext="Gets or sets the index of the item that is selected in a single-selection list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#selectedIndex"/>
                <string name="selectedIndices" object="[fl.controls.SelectableList]" text=".selectedIndices" tiptext="Gets or sets an array that contains the items that were selected from a multiple-selection list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#selectedIndices"/>
                <string name="selectedItem" object="[fl.controls.SelectableList]" text=".selectedItem" tiptext="Gets or sets the item that was selected from a single-selection list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#selectedItem"/>
                <string name="selectedItems" object="[fl.controls.SelectableList]" text=".selectedItems" tiptext="Gets or sets an array that contains the objects for the items that were selected from the multiple-selection list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#selectedItems"/>
                <string name="rowCount" object="[fl.controls.SelectableList]" text=".rowCount" tiptext="Gets the number of rows that are at least partially visible in the list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#rowCount"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class SelectableList" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html">
                <string name="scroll" object="[fl.controls.SelectableList]" text=".addEventListener(%type:String=ScrollEvent.SCROLL{ScrollEvent.SCROLL,Event.CHANGE,ListEvent.ITEM_DOUBLE_CLICK,ListEvent.ITEM_CLICK,MouseEvent.ROLL_OUT,MouseEvent.ROLL_OVER,ListEvent.ITEM_ROLL_OVER,ListEvent.ITEM_ROLL_OUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user scrolls horizontally or vertically." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#event:scroll"/>
                <string name="change" object="[fl.controls.SelectableList]" text=".addEventListener(%type:String=Event.CHANGE{ScrollEvent.SCROLL,Event.CHANGE,ListEvent.ITEM_DOUBLE_CLICK,ListEvent.ITEM_CLICK,MouseEvent.ROLL_OUT,MouseEvent.ROLL_OVER,ListEvent.ITEM_ROLL_OVER,ListEvent.ITEM_ROLL_OUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a different item is selected in the list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#event:change"/>
                <string name="itemDoubleClick" object="[fl.controls.SelectableList]" text=".addEventListener(%type:String=ListEvent.ITEM_DOUBLE_CLICK{ScrollEvent.SCROLL,Event.CHANGE,ListEvent.ITEM_DOUBLE_CLICK,ListEvent.ITEM_CLICK,MouseEvent.ROLL_OUT,MouseEvent.ROLL_OVER,ListEvent.ITEM_ROLL_OVER,ListEvent.ITEM_ROLL_OUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user clicks an item in the component twice in rapid succession." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#event:itemDoubleClick"/>
                <string name="itemClick" object="[fl.controls.SelectableList]" text=".addEventListener(%type:String=ListEvent.ITEM_CLICK{ScrollEvent.SCROLL,Event.CHANGE,ListEvent.ITEM_DOUBLE_CLICK,ListEvent.ITEM_CLICK,MouseEvent.ROLL_OUT,MouseEvent.ROLL_OVER,ListEvent.ITEM_ROLL_OVER,ListEvent.ITEM_ROLL_OUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user clicks an item in the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#event:itemClick"/>
                <string name="rollOut" object="[fl.controls.SelectableList]" text=".addEventListener(%type:String=MouseEvent.ROLL_OUT{ScrollEvent.SCROLL,Event.CHANGE,ListEvent.ITEM_DOUBLE_CLICK,ListEvent.ITEM_CLICK,MouseEvent.ROLL_OUT,MouseEvent.ROLL_OVER,ListEvent.ITEM_ROLL_OVER,ListEvent.ITEM_ROLL_OUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user rolls the pointer off of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#event:rollOut"/>
                <string name="rollOver" object="[fl.controls.SelectableList]" text=".addEventListener(%type:String=MouseEvent.ROLL_OVER{ScrollEvent.SCROLL,Event.CHANGE,ListEvent.ITEM_DOUBLE_CLICK,ListEvent.ITEM_CLICK,MouseEvent.ROLL_OUT,MouseEvent.ROLL_OVER,ListEvent.ITEM_ROLL_OVER,ListEvent.ITEM_ROLL_OUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user rolls the pointer over the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#event:rollOver"/>
                <string name="itemRollOver" object="[fl.controls.SelectableList]" text=".addEventListener(%type:String=ListEvent.ITEM_ROLL_OVER{ScrollEvent.SCROLL,Event.CHANGE,ListEvent.ITEM_DOUBLE_CLICK,ListEvent.ITEM_CLICK,MouseEvent.ROLL_OUT,MouseEvent.ROLL_OVER,ListEvent.ITEM_ROLL_OVER,ListEvent.ITEM_ROLL_OUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user rolls the pointer over an item in the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#event:itemRollOver"/>
                <string name="itemRollOut" object="[fl.controls.SelectableList]" text=".addEventListener(%type:String=ListEvent.ITEM_ROLL_OUT{ScrollEvent.SCROLL,Event.CHANGE,ListEvent.ITEM_DOUBLE_CLICK,ListEvent.ITEM_CLICK,MouseEvent.ROLL_OUT,MouseEvent.ROLL_OVER,ListEvent.ITEM_ROLL_OVER,ListEvent.ITEM_ROLL_OUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user rolls the pointer off of an item in the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SelectableList.html#event:itemRollOut"/>
            </folder>
        </folder>
        <folder name="Slider" id="[fl.controls.Slider]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The Slider component lets users select a value by moving a slider thumb between the end points of the slider track." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Slider" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html">
                <string name="Slider" object="[fl.controls.Slider]" text="new Slider(%%)" constructor="true" tiptext="Creates a new Slider component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#Slider()"/>
                <string name="getStyleDefinition" object="[fl.controls.Slider]" text="Slider.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#getStyleDefinition()"/>
                <string name="setSize" object="[fl.controls.Slider]" text=".setSize(%width:Number,height:Number%):void" tiptext="Sets the component to the specified width and height." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#setSize()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Slider" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html">
                <string name="direction" object="[fl.controls.Slider]" text=".direction" tiptext="Sets the direction of the slider." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#direction"/>
                <string name="minimum" object="[fl.controls.Slider]" text=".minimum" tiptext="The minimum value allowed on the Slider component instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#minimum"/>
                <string name="maximum" object="[fl.controls.Slider]" text=".maximum" tiptext="The maximum allowed value on the Slider component instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#maximum"/>
                <string name="tickInterval" object="[fl.controls.Slider]" text=".tickInterval" tiptext="The spacing of the tick marks relative to the maximum value of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#tickInterval"/>
                <string name="snapInterval" object="[fl.controls.Slider]" text=".snapInterval" tiptext="Gets or sets the increment by which the value is increased or decreased as the user moves the slider thumb." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#snapInterval"/>
                <string name="liveDragging" object="[fl.controls.Slider]" text=".liveDragging" tiptext="Gets or sets a Boolean value that indicates whether the SliderEvent.CHANGE event is dispatched continuously as the user moves the slider thumb." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#liveDragging"/>
                <string name="enabled" object="[fl.controls.Slider]" text=".enabled" tiptext="Gets or sets a value that indicates whether the component can accept user interaction." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#enabled"/>
                <string name="value" object="[fl.controls.Slider]" text=".value" tiptext="Gets or sets the current value of the Slider component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#value"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class Slider" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html">
                <string name="change" object="[fl.controls.Slider]" text=".addEventListener(%type:String=SliderEvent.CHANGE{SliderEvent.CHANGE,SliderEvent.THUMB_DRAG,SliderEvent.THUMB_RELEASE,SliderEvent.THUMB_PRESS},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the value of the Slider component changes as a result of mouse or keyboard interaction." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#event:change"/>
                <string name="thumbDrag" object="[fl.controls.Slider]" text=".addEventListener(%type:String=SliderEvent.THUMB_DRAG{SliderEvent.CHANGE,SliderEvent.THUMB_DRAG,SliderEvent.THUMB_RELEASE,SliderEvent.THUMB_PRESS},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the slider thumb is pressed and then moved by the mouse." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#event:thumbDrag"/>
                <string name="thumbRelease" object="[fl.controls.Slider]" text=".addEventListener(%type:String=SliderEvent.THUMB_RELEASE{SliderEvent.CHANGE,SliderEvent.THUMB_DRAG,SliderEvent.THUMB_RELEASE,SliderEvent.THUMB_PRESS},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the slider thumb is pressed and released." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#event:thumbRelease"/>
                <string name="thumbPress" object="[fl.controls.Slider]" text=".addEventListener(%type:String=SliderEvent.THUMB_PRESS{SliderEvent.CHANGE,SliderEvent.THUMB_DRAG,SliderEvent.THUMB_RELEASE,SliderEvent.THUMB_PRESS},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the slider thumb is pressed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/Slider.html#event:thumbPress"/>
            </folder>
        </folder>
        <folder name="SliderDirection" id="[fl.controls.SliderDirection]" sort="true" index="true" asAncestors="Object" tiptext="The orientation of the Slider component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SliderDirection.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class SliderDirection" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SliderDirection.html">
                <string name="HORIZONTAL" object="[fl.controls.SliderDirection]" text=".HORIZONTAL" tiptext="Position the Slider component on the horizontal axis." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SliderDirection.html#HORIZONTAL"/>
                <string name="VERTICAL" object="[fl.controls.SliderDirection]" text=".VERTICAL" tiptext="Position the Slider component on the vertical axis." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/SliderDirection.html#VERTICAL"/>
            </folder>
        </folder>
        <folder name="TextArea" id="[fl.controls.TextArea]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The TextArea component is a multiline text field with a border and optional scroll bars." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TextArea" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html">
                <string name="TextArea" object="[fl.controls.TextArea]" text="new TextArea(%%)" constructor="true" tiptext="Creates a new TextArea component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#TextArea()"/>
                <string name="getStyleDefinition" object="[fl.controls.TextArea]" text="TextArea.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#getStyleDefinition()"/>
                <string name="drawFocus" object="[fl.controls.TextArea]" text=".drawFocus(%focused:Boolean%):void" tiptext="Shows or hides the focus indicator on this component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#drawFocus()"/>
                <string name="getLineMetrics" object="[fl.controls.TextArea]" text=".getLineMetrics(%lineIndex:int%):flash.text:TextLineMetrics" tiptext="Retrieves information about a specified line of text." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#getLineMetrics()"/>
                <string name="setSelection" object="[fl.controls.TextArea]" text=".setSelection(%setSelection:int,endIndex:int%):void" tiptext="Sets the range of a selection made in a text area that has focus." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#setSelection()"/>
                <string name="appendText" object="[fl.controls.TextArea]" text=".appendText(%text:String%):void" tiptext="Appends the specified string after the last character that the TextArea component contains." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#appendText()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TextArea" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html">
                <string name="textField" object="[fl.controls.TextArea]" text=".textField" tiptext="A reference to the internal text field of the TextArea component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#textField"/>
                <string name="horizontalScrollBar" object="[fl.controls.TextArea]" text=".horizontalScrollBar" tiptext="Gets a reference to the horizontal scroll bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#horizontalScrollBar"/>
                <string name="verticalScrollBar" object="[fl.controls.TextArea]" text=".verticalScrollBar" tiptext="Gets a reference to the vertical scroll bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#verticalScrollBar"/>
                <string name="enabled" object="[fl.controls.TextArea]" text=".enabled" tiptext="Gets or sets a value that indicates whether the component can accept user interaction." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#enabled"/>
                <string name="text" object="[fl.controls.TextArea]" text=".text" tiptext="Gets or sets a string which contains the text that is currently in the TextInput component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#text"/>
                <string name="htmlText" object="[fl.controls.TextArea]" text=".htmlText" tiptext="Gets or sets the HTML representation of the string that the text field contains." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#htmlText"/>
                <string name="condenseWhite" object="[fl.controls.TextArea]" text=".condenseWhite" tiptext="Gets or sets a Boolean value that indicates whether extra white space is removed from a TextArea component that contains HTML text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#condenseWhite"/>
                <string name="horizontalScrollPolicy" object="[fl.controls.TextArea]" text=".horizontalScrollPolicy" tiptext="Gets or sets the scroll policy for the horizontal scroll bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#horizontalScrollPolicy"/>
                <string name="verticalScrollPolicy" object="[fl.controls.TextArea]" text=".verticalScrollPolicy" tiptext="Gets or sets the scroll policy for the vertical scroll bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#verticalScrollPolicy"/>
                <string name="horizontalScrollPosition" object="[fl.controls.TextArea]" text=".horizontalScrollPosition" tiptext="Gets or sets the change in the position of the scroll bar thumb, in pixels, after the user scrolls the text field horizontally." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#horizontalScrollPosition"/>
                <string name="verticalScrollPosition" object="[fl.controls.TextArea]" text=".verticalScrollPosition" tiptext="Gets or sets the change in the position of the scroll bar thumb, in pixels, after the user scrolls the text field vertically." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#verticalScrollPosition"/>
                <string name="textWidth" object="[fl.controls.TextArea]" text=".textWidth" tiptext="Gets the width of the text, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#textWidth"/>
                <string name="textHeight" object="[fl.controls.TextArea]" text=".textHeight" tiptext="Gets the height of the text, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#textHeight"/>
                <string name="length" object="[fl.controls.TextArea]" text=".length" tiptext="Gets the count of characters that the TextArea component contains." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#length"/>
                <string name="restrict" object="[fl.controls.TextArea]" text=".restrict" tiptext="Gets or sets the string of characters that the text field accepts from a user." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#restrict"/>
                <string name="maxChars" object="[fl.controls.TextArea]" text=".maxChars" tiptext="Gets or sets the maximum number of characters that a user can enter in the text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#maxChars"/>
                <string name="maxHorizontalScrollPosition" object="[fl.controls.TextArea]" text=".maxHorizontalScrollPosition" tiptext="Gets the maximum value of the horizontalScrollPosition property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#maxHorizontalScrollPosition"/>
                <string name="maxVerticalScrollPosition" object="[fl.controls.TextArea]" text=".maxVerticalScrollPosition" tiptext="Gets the maximum value of the verticalScrollPosition property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#maxVerticalScrollPosition"/>
                <string name="wordWrap" object="[fl.controls.TextArea]" text=".wordWrap" tiptext="Gets or sets a Boolean value that indicates whether the text wraps at the end of the line." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#wordWrap"/>
                <string name="selectionBeginIndex" object="[fl.controls.TextArea]" text=".selectionBeginIndex" tiptext="Gets the index position of the first selected character in a selection of one or more characters." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#selectionBeginIndex"/>
                <string name="selectionEndIndex" object="[fl.controls.TextArea]" text=".selectionEndIndex" tiptext="Gets the index position of the last selected character in a selection of one or more characters." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#selectionEndIndex"/>
                <string name="displayAsPassword" object="[fl.controls.TextArea]" text=".displayAsPassword" tiptext="Gets or sets a Boolean value that indicates whether the TextArea component instance is the text field for a password." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#displayAsPassword"/>
                <string name="editable" object="[fl.controls.TextArea]" text=".editable" tiptext="Gets or sets a Boolean value that indicates whether the user can edit the text in the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#editable"/>
                <string name="imeMode" object="[fl.controls.TextArea]" text=".imeMode" tiptext="Gets or sets the mode of the input method editor (IME)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#imeMode"/>
                <string name="alwaysShowSelection" object="[fl.controls.TextArea]" text=".alwaysShowSelection" tiptext="Gets or sets a Boolean value that indicates whether Flash Player highlights a selection in the text field when the text field does not have focus." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#alwaysShowSelection"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class TextArea" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html">
                <string name="scroll" object="[fl.controls.TextArea]" text=".addEventListener(%type:String=ScrollEvent.SCROLL{ScrollEvent.SCROLL,ComponentEvent.ENTER,TextEvent.TEXT_INPUT,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the content is scrolled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#event:scroll"/>
                <string name="enter" object="[fl.controls.TextArea]" text=".addEventListener(%type:String=ComponentEvent.ENTER{ScrollEvent.SCROLL,ComponentEvent.ENTER,TextEvent.TEXT_INPUT,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user presses the Enter key while in the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#event:enter"/>
                <string name="textInput" object="[fl.controls.TextArea]" text=".addEventListener(%type:String=TextEvent.TEXT_INPUT{ScrollEvent.SCROLL,ComponentEvent.ENTER,TextEvent.TEXT_INPUT,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user enters, deletes, or pastes text into the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#event:textInput"/>
                <string name="change" object="[fl.controls.TextArea]" text=".addEventListener(%type:String=Event.CHANGE{ScrollEvent.SCROLL,ComponentEvent.ENTER,TextEvent.TEXT_INPUT,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the text in the TextArea component changes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextArea.html#event:change"/>
            </folder>
        </folder>
        <folder name="TextInput" id="[fl.controls.TextInput]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The TextInput component is a single-line text component that contains a native ActionScript TextField object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TextInput" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html">
                <string name="TextInput" object="[fl.controls.TextInput]" text="new TextInput(%%)" constructor="true" tiptext="Creates a new TextInput component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#TextInput()"/>
                <string name="getStyleDefinition" object="[fl.controls.TextInput]" text="TextInput.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#getStyleDefinition()"/>
                <string name="drawFocus" object="[fl.controls.TextInput]" text=".drawFocus(%focused:Boolean%):void" tiptext="Shows or hides the focus indicator on this component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#drawFocus()"/>
                <string name="setSelection" object="[fl.controls.TextInput]" text=".setSelection(%beginIndex:int,endIndex:int%):void" tiptext="Sets the range of a selection made in a text area that has focus." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#setSelection()"/>
                <string name="getLineMetrics" object="[fl.controls.TextInput]" text=".getLineMetrics(%index:int%):flash.text:TextLineMetrics" tiptext="Retrieves information about a specified line of text." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#getLineMetrics()"/>
                <string name="appendText" object="[fl.controls.TextInput]" text=".appendText(%text:String%):void" tiptext="Appends the specified string after the last character that the TextArea contains." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#appendText()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TextInput" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html">
                <string name="textField" object="[fl.controls.TextInput]" text=".textField" tiptext="A reference to the internal text field of the TextInput component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#textField"/>
                <string name="text" object="[fl.controls.TextInput]" text=".text" tiptext="Gets or sets a string which contains the text that is currently in the TextInput component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#text"/>
                <string name="enabled" object="[fl.controls.TextInput]" text=".enabled" tiptext="Gets or sets a value that indicates whether the component can accept user interaction." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#enabled"/>
                <string name="imeMode" object="[fl.controls.TextInput]" text=".imeMode" tiptext="Gets or sets the mode of the input method editor (IME)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#imeMode"/>
                <string name="alwaysShowSelection" object="[fl.controls.TextInput]" text=".alwaysShowSelection" tiptext="Gets or sets a Boolean value that indicates how a selection is displayed when the text field does not have focus." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#alwaysShowSelection"/>
                <string name="editable" object="[fl.controls.TextInput]" text=".editable" tiptext="Gets or sets a Boolean value that indicates whether the text field can be edited by the user." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#editable"/>
                <string name="horizontalScrollPosition" object="[fl.controls.TextInput]" text=".horizontalScrollPosition" tiptext="Gets or sets the position of the thumb of the horizontal scroll bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#horizontalScrollPosition"/>
                <string name="maxHorizontalScrollPosition" object="[fl.controls.TextInput]" text=".maxHorizontalScrollPosition" tiptext="Gets a value that describes the furthest position to which the text field can be scrolled to the right." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#maxHorizontalScrollPosition"/>
                <string name="length" object="[fl.controls.TextInput]" text=".length" tiptext="Gets the number of characters in a TextInput component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#length"/>
                <string name="maxChars" object="[fl.controls.TextInput]" text=".maxChars" tiptext="Gets or sets the maximum number of characters that a user can enter in the text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#maxChars"/>
                <string name="displayAsPassword" object="[fl.controls.TextInput]" text=".displayAsPassword" tiptext="Gets or sets a Boolean value that indicates whether the current TextInput component instance was created to contain a password or to contain text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#displayAsPassword"/>
                <string name="restrict" object="[fl.controls.TextInput]" text=".restrict" tiptext="Gets or sets the string of characters that the text field accepts from a user." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#restrict"/>
                <string name="selectionBeginIndex" object="[fl.controls.TextInput]" text=".selectionBeginIndex" tiptext="Gets the index value of the first selected character in a selection of one or more characters." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#selectionBeginIndex"/>
                <string name="selectionEndIndex" object="[fl.controls.TextInput]" text=".selectionEndIndex" tiptext="Gets the index position of the last selected character in a selection of one or more characters." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#selectionEndIndex"/>
                <string name="condenseWhite" object="[fl.controls.TextInput]" text=".condenseWhite" tiptext="Gets or sets a Boolean value that indicates whether extra white space is removed from a TextInput component that contains HTML text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#condenseWhite"/>
                <string name="htmlText" object="[fl.controls.TextInput]" text=".htmlText" tiptext="Contains the HTML representation of the string that the text field contains." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#htmlText"/>
                <string name="textHeight" object="[fl.controls.TextInput]" text=".textHeight" tiptext="The height of the text, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#textHeight"/>
                <string name="textWidth" object="[fl.controls.TextInput]" text=".textWidth" tiptext="The width of the text, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#textWidth"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class TextInput" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html">
                <string name="textInput" object="[fl.controls.TextInput]" text=".addEventListener(%type:String=TextEvent.TEXT_INPUT{TextEvent.TEXT_INPUT,ComponentEvent.ENTER,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user inputs text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#event:textInput"/>
                <string name="enter" object="[fl.controls.TextInput]" text=".addEventListener(%type:String=ComponentEvent.ENTER{TextEvent.TEXT_INPUT,ComponentEvent.ENTER,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user presses the Enter key." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#event:enter"/>
                <string name="change" object="[fl.controls.TextInput]" text=".addEventListener(%type:String=Event.CHANGE{TextEvent.TEXT_INPUT,ComponentEvent.ENTER,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when user input changes text in the TextInput component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TextInput.html#event:change"/>
            </folder>
        </folder>
        <folder name="TileList" id="[fl.controls.TileList]" sort="true" index="true" asAncestors="fl.controls:SelectableList,fl.containers:BaseScrollPane,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The TileList class provides a grid of rows and columns that is typically used to format and display images in a &quot;tiled&quot; format." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TileList" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html">
                <string name="TileList" object="[fl.controls.TileList]" text="new TileList(%%)" constructor="true" tiptext="Creates a new List component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#TileList()"/>
                <string name="getStyleDefinition" object="[fl.controls.TileList]" text="TileList.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#getStyleDefinition()"/>
                <string name="scrollToIndex" object="[fl.controls.TileList]" text=".scrollToIndex(%newCaretIndex:int%):void" tiptext="Scrolls the list to the item at the specified index." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#scrollToIndex()"/>
                <string name="itemToLabel" object="[fl.controls.TileList]" text=".itemToLabel(%item:Object%):String" tiptext="Retrieves the string that the renderer displays for a given data object based on the labelField and labelFunction properties." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#itemToLabel()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TileList" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html">
                <string name="dataProvider" object="[fl.controls.TileList]" text=".dataProvider" tiptext="Gets or sets the data model of the list of items to be viewed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#dataProvider"/>
                <string name="labelField" object="[fl.controls.TileList]" text=".labelField" tiptext="Gets or sets a field in each item that contains a label for each tile." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#labelField"/>
                <string name="labelFunction" object="[fl.controls.TileList]" text=".labelFunction" tiptext="Gets a function that indicates the fields of an item that provide the label text for a tile." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#labelFunction"/>
                <string name="iconField" object="[fl.controls.TileList]" text=".iconField" tiptext="Gets or sets the item field that provides the icon for the item." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#iconField"/>
                <string name="iconFunction" object="[fl.controls.TileList]" text=".iconFunction" tiptext="Gets or sets the function to be used to obtain the icon for the item." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#iconFunction"/>
                <string name="sourceField" object="[fl.controls.TileList]" text=".sourceField" tiptext="Gets or sets the item field that provides the source path for a tile." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#sourceField"/>
                <string name="sourceFunction" object="[fl.controls.TileList]" text=".sourceFunction" tiptext="Gets or sets the function to be used to obtain the source path for a tile." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#sourceFunction"/>
                <string name="rowCount" object="[fl.controls.TileList]" text=".rowCount" tiptext="Gets or sets the number of rows that are at least partially visible in the list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#rowCount"/>
                <string name="rowHeight" object="[fl.controls.TileList]" text=".rowHeight" tiptext="Gets or sets the height that is applied to each row in the list, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#rowHeight"/>
                <string name="columnCount" object="[fl.controls.TileList]" text=".columnCount" tiptext="Gets or sets the number of columns that are at least partially visible in the list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#columnCount"/>
                <string name="columnWidth" object="[fl.controls.TileList]" text=".columnWidth" tiptext="Gets or sets the width that is applied to a column in the list, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#columnWidth"/>
                <string name="innerWidth" object="[fl.controls.TileList]" text=".innerWidth" tiptext="Gets the width of the content area, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#innerWidth"/>
                <string name="innerHeight" object="[fl.controls.TileList]" text=".innerHeight" tiptext="Gets the height of the content area, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#innerHeight"/>
                <string name="direction" object="[fl.controls.TileList]" text=".direction" tiptext="Gets or sets a value that indicates whether the TileList component scrolls horizontally or vertically." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#direction"/>
                <string name="scrollPolicy" object="[fl.controls.TileList]" text=".scrollPolicy" tiptext="Gets or sets the scroll policy for the TileList component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#scrollPolicy"/>
                <string name="maxHorizontalScrollPosition" object="[fl.controls.TileList]" text=".maxHorizontalScrollPosition" tiptext="Gets the maximum horizontal scroll position for the current content, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/TileList.html#maxHorizontalScrollPosition"/>
            </folder>
        </folder>
        <folder name="UIScrollBar" id="[fl.controls.UIScrollBar]" sort="true" index="true" asAncestors="fl.controls:ScrollBar,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The UIScrollBar class includes all of the scroll bar functionality, but adds a scrollTarget() method so it can be attached to a TextField component instance." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/UIScrollBar.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class UIScrollBar" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/UIScrollBar.html">
                <string name="UIScrollBar" object="[fl.controls.UIScrollBar]" text="new UIScrollBar(%%)" constructor="true" tiptext="Creates a new UIScrollBar component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/UIScrollBar.html#UIScrollBar()"/>
                <string name="getStyleDefinition" object="[fl.controls.UIScrollBar]" text="UIScrollBar.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/UIScrollBar.html#getStyleDefinition()"/>
                <string name="update" object="[fl.controls.UIScrollBar]" text=".update(%%):void" tiptext="Forces the scroll bar to update its scroll properties immediately." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/UIScrollBar.html#update()"/>
                <string name="setScrollProperties" object="[fl.controls.UIScrollBar]" text=".setScrollProperties(%pageSize:Number,minScrollPosition:Number,maxScrollPosition:Number[,pageScrollSize:Number=0]%):void" tiptext="Sets the range and viewport size of the ScrollBar component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/UIScrollBar.html#setScrollProperties()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class UIScrollBar" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/UIScrollBar.html">
                <string name="scrollTarget" object="[fl.controls.UIScrollBar]" text=".scrollTarget" tiptext="Registers a TextField component instance with the ScrollBar component instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/UIScrollBar.html#scrollTarget"/>
                <string name="direction" object="[fl.controls.UIScrollBar]" text=".direction" tiptext="Gets or sets a value that indicates whether the scroll bar scrolls horizontally or vertically." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/UIScrollBar.html#direction"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.controls.dataGridClasses" id="fl.controls.dataGridClasses" sort="true" tiptext="Classes for package fl.controls.dataGridClasses" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/package-detail.html">
        <folder name="DataGridCellEditor" id="[fl.controls.dataGridClasses.DataGridCellEditor]" sort="true" index="true" asAncestors="fl.controls:TextInput,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The DataGridCellEditor class defines the default item editor for a DataGrid control." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridCellEditor.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DataGridCellEditor" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridCellEditor.html">
                <string name="DataGridCellEditor" object="[fl.controls.dataGridClasses.DataGridCellEditor]" text="new DataGridCellEditor(%%):void" constructor="true" tiptext="Creates a new DataGridCellEditor instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridCellEditor.html#DataGridCellEditor()"/>
                <string name="getStyleDefinition" object="[fl.controls.dataGridClasses.DataGridCellEditor]" text="DataGridCellEditor.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridCellEditor.html#getStyleDefinition()"/>
                <string name="setMouseState" object="[fl.controls.dataGridClasses.DataGridCellEditor]" text=".setMouseState(%state:String%):void" tiptext="Sets the current cell to a specific mouse state." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridCellEditor.html#setMouseState()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class DataGridCellEditor" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridCellEditor.html">
                <string name="listData" object="[fl.controls.dataGridClasses.DataGridCellEditor]" text=".listData" tiptext="Gets or sets the list properties that are applied to the cell--for example, the index and selected values." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridCellEditor.html#listData"/>
                <string name="data" object="[fl.controls.dataGridClasses.DataGridCellEditor]" text=".data" tiptext="Gets or sets an Object that represents the data that is associated with a component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridCellEditor.html#data"/>
                <string name="selected" object="[fl.controls.dataGridClasses.DataGridCellEditor]" text=".selected" tiptext="Indicates whether the cell is included in the indices that were selected by the owner." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridCellEditor.html#selected"/>
            </folder>
        </folder>
        <folder name="DataGridColumn" id="[fl.controls.dataGridClasses.DataGridColumn]" sort="true" index="true" asAncestors="Object" tiptext="The DataGridColumn class describes a column in a DataGrid component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DataGridColumn" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html">
                <string name="DataGridColumn" object="[fl.controls.dataGridClasses.DataGridColumn]" text="new DataGridColumn(%[columnName:String=null]%)" constructor="true" tiptext="Creates a new DataGridColumn instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#DataGridColumn()"/>
                <string name="itemToLabel" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".itemToLabel(%data:Object%):String" tiptext="Returns the string that the item renderer displays for the given data object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#itemToLabel()"/>
                <string name="toString" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".toString(%%):String" tiptext="Returns a string representation of the DataGridColumn object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class DataGridColumn" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html">
                <string name="sortable" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".sortable" tiptext="Indicates whether the user can click on the header of the current column to sort the data provider." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#sortable"/>
                <string name="resizable" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".resizable" tiptext="Indicates whether the user is allowed to change the width of the column." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#resizable"/>
                <string name="editable" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".editable" tiptext="Indicates whether the items in the column can be edited." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#editable"/>
                <string name="itemEditor" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".itemEditor" tiptext="Indicates the class of the instances of the item editor to use for the column, when it is editable." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#itemEditor"/>
                <string name="editorDataField" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".editorDataField" tiptext="Identifies the name of the property of the item editor that contains the new data for the list item." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#editorDataField"/>
                <string name="dataField" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".dataField" tiptext="Identifies the name of the field or property in the data provider item that is associated with the column." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#dataField"/>
                <string name="sortDescending" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".sortDescending" tiptext="Indicates whether the DataGridColumn is to be sorted in ascending or descending order." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#sortDescending"/>
                <string name="sortOptions" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".sortOptions" tiptext="One or more defined constants, identified by name or number and separated by the bitwise OR (|) operator." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#sortOptions"/>
                <string name="cellRenderer" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".cellRenderer" tiptext="The class that is used to render the items in this column." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#cellRenderer"/>
                <string name="headerRenderer" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".headerRenderer" tiptext="The class that is used to render the header of this column." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#headerRenderer"/>
                <string name="headerText" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".headerText" tiptext="The column name to be displayed in the column header." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#headerText"/>
                <string name="imeMode" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".imeMode" tiptext="The mode of the input method editor (IME)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#imeMode"/>
                <string name="labelFunction" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".labelFunction" tiptext="A function that determines the text to be displayed in this column." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#labelFunction"/>
                <string name="minWidth" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".minWidth" tiptext="The minimum width of the column, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#minWidth"/>
                <string name="sortCompareFunction" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".sortCompareFunction" tiptext="A callback function that is called when sorting the data in the column." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#sortCompareFunction"/>
                <string name="visible" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".visible" tiptext="Indicates whether the column is visible." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#visible"/>
                <string name="width" object="[fl.controls.dataGridClasses.DataGridColumn]" text=".width" tiptext="The width of the column, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/DataGridColumn.html#width"/>
            </folder>
        </folder>
        <folder name="HeaderRenderer" id="[fl.controls.dataGridClasses.HeaderRenderer]" sort="true" index="true" asAncestors="fl.controls:LabelButton,fl.controls:BaseButton,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The HeaderRenderer class displays the column header for the current DataGrid column." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/HeaderRenderer.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class HeaderRenderer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/HeaderRenderer.html">
                <string name="HeaderRenderer" object="[fl.controls.dataGridClasses.HeaderRenderer]" text="new HeaderRenderer(%%):void" constructor="true" tiptext="Creates a new HeaderRenderer instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/HeaderRenderer.html#HeaderRenderer()"/>
                <string name="getStyleDefinition" object="[fl.controls.dataGridClasses.HeaderRenderer]" text="HeaderRenderer.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/HeaderRenderer.html#getStyleDefinition()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class HeaderRenderer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/HeaderRenderer.html">
                <string name="column" object="[fl.controls.dataGridClasses.HeaderRenderer]" text=".column" tiptext="The index of the column that belongs to this HeaderRenderer instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/dataGridClasses/HeaderRenderer.html#column"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.controls.listClasses" id="fl.controls.listClasses" sort="true" tiptext="Classes for package fl.controls.listClasses" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/package-detail.html">
        <folder name="CellRenderer" id="[fl.controls.listClasses.CellRenderer]" sort="true" index="true" asAncestors="fl.controls:LabelButton,fl.controls:BaseButton,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The CellRenderer class defines methods and properties for list-based components to use to manipulate and display custom cell content in each of their rows." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/CellRenderer.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class CellRenderer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/CellRenderer.html">
                <string name="CellRenderer" object="[fl.controls.listClasses.CellRenderer]" text="new CellRenderer(%%):void" constructor="true" tiptext="Creates a new CellRenderer instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/CellRenderer.html#CellRenderer()"/>
                <string name="getStyleDefinition" object="[fl.controls.listClasses.CellRenderer]" text="CellRenderer.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/CellRenderer.html#getStyleDefinition()"/>
                <string name="setSize" object="[fl.controls.listClasses.CellRenderer]" text=".setSize(%width:Number,height:Number%):void" tiptext="Specifies the dimensions at which the data should be rendered." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/CellRenderer.html#setSize()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class CellRenderer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/CellRenderer.html">
                <string name="listData" object="[fl.controls.listClasses.CellRenderer]" text=".listData" tiptext="Gets or sets the list properties that are applied to the cell--for example, the index and selected values." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/CellRenderer.html#listData"/>
                <string name="data" object="[fl.controls.listClasses.CellRenderer]" text=".data" tiptext="Gets or sets an Object that represents the data that is associated with a component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/CellRenderer.html#data"/>
                <string name="selected" object="[fl.controls.listClasses.CellRenderer]" text=".selected" tiptext="Gets or sets a Boolean value that indicates whether the current cell is selected." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/CellRenderer.html#selected"/>
            </folder>
        </folder>
        <folder name="ICellRenderer" id="[fl.controls.listClasses.ICellRenderer]" sort="true" index="true" tiptext="The ICellRenderer interface provides the methods and properties that a cell renderer requires." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ICellRenderer.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ICellRenderer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ICellRenderer.html">
                <string name="setSize" object="[fl.controls.listClasses.ICellRenderer]" text=".setSize(%width:Number,height:Number%):void" tiptext="Sets the size of the data according to the pixel values specified by the width and height parameters." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ICellRenderer.html#setSize()"/>
                <string name="setMouseState" object="[fl.controls.listClasses.ICellRenderer]" text=".setMouseState(%state:String%):void" tiptext="Sets the current cell to a specific mouse state." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ICellRenderer.html#setMouseState()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ICellRenderer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ICellRenderer.html">
                <string name="listData" object="[fl.controls.listClasses.ICellRenderer]" text=".listData" tiptext="Gets or sets the list properties that are applied to the cell--for example, the index and selected values." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ICellRenderer.html#listData"/>
                <string name="data" object="[fl.controls.listClasses.ICellRenderer]" text=".data" tiptext="Gets or sets an Object that represents the data that is associated with a component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ICellRenderer.html#data"/>
                <string name="selected" object="[fl.controls.listClasses.ICellRenderer]" text=".selected" tiptext="Gets or sets a Boolean value that indicates whether the current cell is selected." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ICellRenderer.html#selected"/>
            </folder>
        </folder>
        <folder name="ImageCell" id="[fl.controls.listClasses.ImageCell]" sort="true" index="true" asAncestors="fl.controls.listClasses:CellRenderer,fl.controls:LabelButton,fl.controls:BaseButton,fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The ImageCell is the default cell renderer for the TileList component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ImageCell.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ImageCell" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ImageCell.html">
                <string name="ImageCell" object="[fl.controls.listClasses.ImageCell]" text="new ImageCell(%%)" constructor="true" tiptext="Creates a new ImageCell instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ImageCell.html#ImageCell()"/>
                <string name="getStyleDefinition" object="[fl.controls.listClasses.ImageCell]" text="ImageCell.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ImageCell.html#getStyleDefinition()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ImageCell" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ImageCell.html">
                <string name="listData" object="[fl.controls.listClasses.ImageCell]" text=".listData" tiptext="Gets or sets the list properties that are applied to the cell, for example, the index and selected values." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ImageCell.html#listData"/>
                <string name="source" object="[fl.controls.listClasses.ImageCell]" text=".source" tiptext="Gets or sets an absolute or relative URL that identifies the location of the SWF or image file to load, the class name of a movie clip in the library, or a reference to a display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ImageCell.html#source"/>
            </folder>
        </folder>
        <folder name="ListData" id="[fl.controls.listClasses.ListData]" sort="true" index="true" asAncestors="Object" tiptext="ListData is a messenger class that holds information relevant to a specific cell in a list-based component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ListData.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ListData" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ListData.html">
                <string name="ListData" object="[fl.controls.listClasses.ListData]" text="new ListData(%label:String,icon:Object,owner:fl.core:UIComponent,index:uint,row:uint[,col:uint=0]%)" constructor="true" tiptext="Creates a new instance of the ListData class as specified by its parameters." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ListData.html#ListData()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ListData" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ListData.html">
                <string name="label" object="[fl.controls.listClasses.ListData]" text=".label" tiptext="The label to be displayed in the cell." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ListData.html#label"/>
                <string name="icon" object="[fl.controls.listClasses.ListData]" text=".icon" tiptext="A class that represents the icon for the item in the List component, computed from the List class method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ListData.html#icon"/>
                <string name="owner" object="[fl.controls.listClasses.ListData]" text=".owner" tiptext="A reference to the List object that owns this item." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ListData.html#owner"/>
                <string name="index" object="[fl.controls.listClasses.ListData]" text=".index" tiptext="The index of the item in the data provider." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ListData.html#index"/>
                <string name="row" object="[fl.controls.listClasses.ListData]" text=".row" tiptext="The row in which the data item is displayed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ListData.html#row"/>
                <string name="column" object="[fl.controls.listClasses.ListData]" text=".column" tiptext="The column in which the data item is displayed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/ListData.html#column"/>
            </folder>
        </folder>
        <folder name="TileListData" id="[fl.controls.listClasses.TileListData]" sort="true" index="true" asAncestors="fl.controls.listClasses:ListData,Object" tiptext="TileListData is a messenger class that holds information relevant to a specific cell in the list-based TileListData component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/TileListData.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TileListData" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/TileListData.html">
                <string name="TileListData" object="[fl.controls.listClasses.TileListData]" text="new TileListData(%label:String,icon:Object,source:Object,owner:fl.core:UIComponent,index:uint,row:uint[,col:uint=0]%)" constructor="true" tiptext="Creates a new instance of the TileListData class as specified by its parameters." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/TileListData.html#TileListData()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TileListData" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/TileListData.html">
                <string name="source" object="[fl.controls.listClasses.TileListData]" text=".source" tiptext="Gets or sets an absolute or relative URL that identifies the location of the SWF or image file to load, the class name of a movie clip in the library, or a reference to a display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/listClasses/TileListData.html#source"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.controls.progressBarClasses" id="fl.controls.progressBarClasses" sort="true" tiptext="Classes for package fl.controls.progressBarClasses" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/progressBarClasses/package-detail.html">
        <folder name="IndeterminateBar" id="[fl.controls.progressBarClasses.IndeterminateBar]" sort="true" index="true" asAncestors="fl.core:UIComponent,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The IndeterminateBar class handles the drawing of the progress bar component when the size of the source that is being loaded is unknown." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/progressBarClasses/IndeterminateBar.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IndeterminateBar" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/progressBarClasses/IndeterminateBar.html">
                <string name="IndeterminateBar" object="[fl.controls.progressBarClasses.IndeterminateBar]" text="new IndeterminateBar(%%)" constructor="true" tiptext="Creates a new instance of the IndeterminateBar component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/progressBarClasses/IndeterminateBar.html#IndeterminateBar()"/>
                <string name="getStyleDefinition" object="[fl.controls.progressBarClasses.IndeterminateBar]" text="IndeterminateBar.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/progressBarClasses/IndeterminateBar.html#getStyleDefinition()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class IndeterminateBar" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/progressBarClasses/IndeterminateBar.html">
                <string name="visible" object="[fl.controls.progressBarClasses.IndeterminateBar]" text=".visible" tiptext="Gets or sets a Boolean value that indicates whether the indeterminate bar is visible." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/controls/progressBarClasses/IndeterminateBar.html#visible"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.core" id="fl.core" sort="true" tiptext="Classes for package fl.core" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/package-detail.html">
        <folder name="InvalidationType" id="[fl.core.InvalidationType]" sort="true" index="true" asAncestors="Object" tiptext="The InvalidationType class defines InvalidationType constants that are used by the type property of an event object that is dispatched after a component is invalidated." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/InvalidationType.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class InvalidationType" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/InvalidationType.html">
                <string name="ALL" object="[fl.core.InvalidationType]" text="InvalidationType.ALL" constant="true" tiptext="The InvalidationType.ALL constant defines the value of the type property of the event object that is dispatched to indicate that the component should redraw itself entirely." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/InvalidationType.html#ALL"/>
                <string name="SIZE" object="[fl.core.InvalidationType]" text="InvalidationType.SIZE" constant="true" tiptext="The InvalidationType.SIZE constant defines the value of the type property of the event object that is dispatched to indicate that the screen dimensions of the component are invalid." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/InvalidationType.html#SIZE"/>
                <string name="STYLES" object="[fl.core.InvalidationType]" text="InvalidationType.STYLES" constant="true" tiptext="The InvalidationType.STYLES constant defines the value of the type property of the event object that is dispatched to indicate that the styles of the component are invalid." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/InvalidationType.html#STYLES"/>
                <string name="RENDERER_STYLES" object="[fl.core.InvalidationType]" text="InvalidationType.RENDERER_STYLES" constant="true" tiptext="The InvalidationType.RENDERER_STYLES constant defines the value of the type property of the event object that is dispatched to indicate that the renderer styles of the component are invalid." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/InvalidationType.html#RENDERER_STYLES"/>
                <string name="STATE" object="[fl.core.InvalidationType]" text="InvalidationType.STATE" constant="true" tiptext="The InvalidationType.STATE constant defines the value of the type property of the event object that is dispatched to indicate that the state of the component is invalid." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/InvalidationType.html#STATE"/>
                <string name="DATA" object="[fl.core.InvalidationType]" text="InvalidationType.DATA" constant="true" tiptext="The InvalidationType.DATA constant defines the value of the type property of the event object that is dispatched to indicate that the data that belongs to a component is invalid." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/InvalidationType.html#DATA"/>
                <string name="SCROLL" object="[fl.core.InvalidationType]" text="InvalidationType.SCROLL" constant="true" tiptext="The InvalidationType.SCROLL constant defines the value of the type property of the event object that is dispatched to indicate that the scroll position of the component is invalid." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/InvalidationType.html#SCROLL"/>
                <string name="SELECTED" object="[fl.core.InvalidationType]" text="InvalidationType.SELECTED" constant="true" tiptext="The InvalidationType.SELECTED constant defines the value of the type property of the event object that is dispatched to indicate that the selected property of the component is invalid." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/InvalidationType.html#SELECTED"/>
            </folder>
        </folder>
        <folder name="UIComponent" id="[fl.core.UIComponent]" sort="true" index="true" asAncestors="flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The UIComponent class is the base class for all visual components, both interactive and noninteractive." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class UIComponent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html">
                <string name="UIComponent" object="[fl.core.UIComponent]" text="new UIComponent(%%)" constructor="true" tiptext="Creates a new UIComponent component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#UIComponent()"/>
                <string name="getStyleDefinition" object="[fl.core.UIComponent]" text="UIComponent.getStyleDefinition(%%):Object" static="true" tiptext="Retrieves the default style map for the current component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#getStyleDefinition()"/>
                <string name="mergeStyles" object="[fl.core.UIComponent]" text="UIComponent.mergeStyles(%list:restParam%):Object" static="true" tiptext="Merges the styles from multiple classes into one object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#mergeStyles()"/>
                <string name="setSize" object="[fl.core.UIComponent]" text=".setSize(%width:Number,height:Number%):void" tiptext="Sets the component to the specified width and height." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#setSize()"/>
                <string name="setStyle" object="[fl.core.UIComponent]" text=".setStyle(%style:String,value:Object%):void" tiptext="Sets a style property on this component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#setStyle()"/>
                <string name="clearStyle" object="[fl.core.UIComponent]" text=".clearStyle(%style:String%):void" tiptext="Deletes a style property from this component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#clearStyle()"/>
                <string name="getStyle" object="[fl.core.UIComponent]" text=".getStyle(%style:String%):Object" tiptext="Retrieves a style property that is set in the style lookup chain of the component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#getStyle()"/>
                <string name="move" object="[fl.core.UIComponent]" text=".move(%x:Number,y:Number%):void" tiptext="Moves the component to the specified position within its parent." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#move()"/>
                <string name="validateNow" object="[fl.core.UIComponent]" text=".validateNow(%%):void" tiptext="Validates and updates the properties and layout of this object, redrawing it if necessary." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#validateNow()"/>
                <string name="invalidate" object="[fl.core.UIComponent]" text=".invalidate(%[property:String=unknown,callLater:Boolean=true]%):void" tiptext="Marks a property as invalid and redraws the component on the next frame unless otherwise specified." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#invalidate()"/>
                <string name="drawFocus" object="[fl.core.UIComponent]" text=".drawFocus(%focused:Boolean%):void" tiptext="Shows or hides the focus indicator on this component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#drawFocus()"/>
                <string name="setFocus" object="[fl.core.UIComponent]" text=".setFocus(%%):void" tiptext="Sets the focus to this component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#setFocus()"/>
                <string name="getFocus" object="[fl.core.UIComponent]" text=".getFocus(%%):flash.display:InteractiveObject" tiptext="Retrieves the object that currently has focus." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#getFocus()"/>
                <string name="drawNow" object="[fl.core.UIComponent]" text=".drawNow(%%):void" tiptext="Initiates an immediate draw operation, without invalidating everything as invalidateNow does." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#drawNow()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class UIComponent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html">
                <string name="version" object="[fl.core.UIComponent]" text=".version" tiptext="The version number of the components." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#version"/>
                <string name="enabled" object="[fl.core.UIComponent]" text=".enabled" tiptext="Gets or sets a value that indicates whether the component can accept user interaction." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#enabled"/>
                <string name="width" object="[fl.core.UIComponent]" text=".width" tiptext="Gets or sets the width of the component, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#width"/>
                <string name="height" object="[fl.core.UIComponent]" text=".height" tiptext="Gets or sets the height of the component, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#height"/>
                <string name="x" object="[fl.core.UIComponent]" text=".x" tiptext="Gets or sets the x coordinate that represents the position of the component along the x axis within its parent container." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#x"/>
                <string name="y" object="[fl.core.UIComponent]" text=".y" tiptext="Gets or sets the y coordinate that represents the position of the component along the y axis within its parent container." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#y"/>
                <string name="scaleX" object="[fl.core.UIComponent]" text=".scaleX" tiptext="Multiplies the current width of the component by a scale factor." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#scaleX"/>
                <string name="scaleY" object="[fl.core.UIComponent]" text=".scaleY" tiptext="Multiplies the current height of the component by a scale factor." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#scaleY"/>
                <string name="visible" object="[fl.core.UIComponent]" text=".visible" tiptext="Gets or sets a value that indicates whether the current component instance is visible." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#visible"/>
                <string name="focusEnabled" object="[fl.core.UIComponent]" text=".focusEnabled" tiptext="Gets or sets a Boolean value that indicates whether the component can receive focus after the user clicks it." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#focusEnabled"/>
                <string name="mouseFocusEnabled" object="[fl.core.UIComponent]" text=".mouseFocusEnabled" tiptext="Gets or sets a value that indicates whether the component can receive focus after the user clicks it." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#mouseFocusEnabled"/>
                <string name="focusManager" object="[fl.core.UIComponent]" text=".focusManager" tiptext="Gets or sets the FocusManager that controls focus for this component and its peers." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#focusManager"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class UIComponent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html">
                <string name="hide" object="[fl.core.UIComponent]" text=".addEventListener(%type:String=ComponentEvent.HIDE{ComponentEvent.HIDE,ComponentEvent.SHOW,ComponentEvent.RESIZE,ComponentEvent.MOVE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after the component visibility changes from visible to invisible." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#event:hide"/>
                <string name="show" object="[fl.core.UIComponent]" text=".addEventListener(%type:String=ComponentEvent.SHOW{ComponentEvent.HIDE,ComponentEvent.SHOW,ComponentEvent.RESIZE,ComponentEvent.MOVE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after the component visibility changes from invisible to visible." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#event:show"/>
                <string name="resize" object="[fl.core.UIComponent]" text=".addEventListener(%type:String=ComponentEvent.RESIZE{ComponentEvent.HIDE,ComponentEvent.SHOW,ComponentEvent.RESIZE,ComponentEvent.MOVE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after the component is resized." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#event:resize"/>
                <string name="move" object="[fl.core.UIComponent]" text=".addEventListener(%type:String=ComponentEvent.MOVE{ComponentEvent.HIDE,ComponentEvent.SHOW,ComponentEvent.RESIZE,ComponentEvent.MOVE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after the component is moved." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/core/UIComponent.html#event:move"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.data" id="fl.data" sort="true" tiptext="Classes for package fl.data" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/package-detail.html">
        <folder name="DataProvider" id="[fl.data.DataProvider]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The DataProvider class provides methods and properties that allow you to query and modify the data in any list-based component--for example, in a List, DataGrid, TileList, or ComboBox component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DataProvider" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html">
                <string name="DataProvider" object="[fl.data.DataProvider]" text="new DataProvider(%[value:Object=null]%)" constructor="true" tiptext="Creates a new DataProvider object using a list, XML instance or an array of data objects as the data source." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#DataProvider()"/>
                <string name="invalidateItemAt" object="[fl.data.DataProvider]" text=".invalidateItemAt(%index:int%):void" tiptext="Invalidates the item at the specified index." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#invalidateItemAt()"/>
                <string name="invalidateItem" object="[fl.data.DataProvider]" text=".invalidateItem(%item:Object%):void" tiptext="Invalidates the specified item." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#invalidateItem()"/>
                <string name="invalidate" object="[fl.data.DataProvider]" text=".invalidate(%%):void" tiptext="Invalidates all the data items that the DataProvider contains and dispatches a DataChangeEvent.INVALIDATE_ALL event." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#invalidate()"/>
                <string name="addItemAt" object="[fl.data.DataProvider]" text=".addItemAt(%item:Object,index:uint%):void" tiptext="Adds a new item to the data provider at the specified index." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#addItemAt()"/>
                <string name="addItem" object="[fl.data.DataProvider]" text=".addItem(%item:Object%):void" tiptext="Appends an item to the end of the data provider." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#addItem()"/>
                <string name="addItemsAt" object="[fl.data.DataProvider]" text=".addItemsAt(%items:Object,index:uint%):void" tiptext="Adds several items to the data provider at the specified index and dispatches a DataChangeType.ADD event." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#addItemsAt()"/>
                <string name="addItems" object="[fl.data.DataProvider]" text=".addItems(%items:Object%):void" tiptext="Appends multiple items to the end of the DataProvider and dispatches a DataChangeType.ADD event." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#addItems()"/>
                <string name="concat" object="[fl.data.DataProvider]" text=".concat(%items:Object%):void" tiptext="Concatenates the specified items to the end of the current data provider." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#concat()"/>
                <string name="merge" object="[fl.data.DataProvider]" text=".merge(%newData:Object%):void" tiptext="Appends the specified data into the data that the data provider contains and removes any duplicate items." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#merge()"/>
                <string name="getItemAt" object="[fl.data.DataProvider]" text=".getItemAt(%index:uint%):Object" tiptext="Returns the item at the specified index." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#getItemAt()"/>
                <string name="getItemIndex" object="[fl.data.DataProvider]" text=".getItemIndex(%item:Object%):int" tiptext="Returns the index of the specified item." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#getItemIndex()"/>
                <string name="removeItemAt" object="[fl.data.DataProvider]" text=".removeItemAt(%index:uint%):Object" tiptext="Removes the item at the specified index and dispatches a DataChangeType.REMOVE event." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#removeItemAt()"/>
                <string name="removeItem" object="[fl.data.DataProvider]" text=".removeItem(%item:Object%):Object" tiptext="Removes the specified item from the data provider and dispatches a DataChangeType.REMOVE event." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#removeItem()"/>
                <string name="removeAll" object="[fl.data.DataProvider]" text=".removeAll(%%):void" tiptext="Removes all items from the data provider and dispatches a DataChangeType.REMOVE_ALL event." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#removeAll()"/>
                <string name="replaceItem" object="[fl.data.DataProvider]" text=".replaceItem(%newItem:Object,oldItem:Object%):Object" tiptext="Replaces an existing item with a new item and dispatches a DataChangeType.REPLACE event." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#replaceItem()"/>
                <string name="replaceItemAt" object="[fl.data.DataProvider]" text=".replaceItemAt(%newItem:Object,index:uint%):Object" tiptext="Replaces the item at the specified index and dispatches a DataChangeType.REPLACE event." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#replaceItemAt()"/>
                <string name="sort" object="[fl.data.DataProvider]" text=".sort(%sortArgs:restParam%)" tiptext="Sorts the items that the data provider contains and dispatches a DataChangeType.SORT event." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#sort()"/>
                <string name="sortOn" object="[fl.data.DataProvider]" text=".sortOn(%fieldName:Object[,options:Object=null]%)" tiptext="Sorts the items that the data provider contains by the specified field and dispatches a DataChangeType.SORT event." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#sortOn()"/>
                <string name="clone" object="[fl.data.DataProvider]" text=".clone(%%):fl.data:DataProvider" tiptext="Creates a copy of the current DataProvider object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#clone()"/>
                <string name="toArray" object="[fl.data.DataProvider]" text=".toArray(%%):Array" tiptext="Creates an Array object representation of the data that the data provider contains." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#toArray()"/>
                <string name="toString" object="[fl.data.DataProvider]" text=".toString(%%):String" tiptext="Creates a string representation of the data that the data provider contains." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class DataProvider" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html">
                <string name="length" object="[fl.data.DataProvider]" text=".length" tiptext="The number of items that the data provider contains." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#length"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class DataProvider" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html">
                <string name="dataChange" object="[fl.data.DataProvider]" text=".addEventListener(%type:String=DataChangeEvent.DATA_CHANGE{DataChangeEvent.DATA_CHANGE,DataChangeEvent.PRE_DATA_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after the data is changed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#event:dataChange"/>
                <string name="preDataChange" object="[fl.data.DataProvider]" text=".addEventListener(%type:String=DataChangeEvent.PRE_DATA_CHANGE{DataChangeEvent.DATA_CHANGE,DataChangeEvent.PRE_DATA_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched before the data is changed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/DataProvider.html#event:preDataChange"/>
            </folder>
        </folder>
        <folder name="SimpleCollectionItem" id="[fl.data.SimpleCollectionItem]" sort="true" index="true" asAncestors="Object" tiptext="The SimpleCollectionItem class defines a single item in an inspectable property that represents a data provider." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/SimpleCollectionItem.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SimpleCollectionItem" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/SimpleCollectionItem.html">
                <string name="SimpleCollectionItem" object="[fl.data.SimpleCollectionItem]" text="new SimpleCollectionItem(%%)" constructor="true" tiptext="Creates a new SimpleCollectionItem object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/SimpleCollectionItem.html#SimpleCollectionItem()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SimpleCollectionItem" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/SimpleCollectionItem.html">
                <string name="label" object="[fl.data.SimpleCollectionItem]" text=".label" tiptext="The label property of the object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/SimpleCollectionItem.html#label"/>
                <string name="data" object="[fl.data.SimpleCollectionItem]" text=".data" tiptext="The data property of the object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/SimpleCollectionItem.html#data"/>
            </folder>
        </folder>
        <folder name="TileListCollectionItem" id="[fl.data.TileListCollectionItem]" sort="true" index="true" asAncestors="Object" tiptext="The TileListCollectionItem class defines a single item in an inspectable property that represents a data provider." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/TileListCollectionItem.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TileListCollectionItem" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/TileListCollectionItem.html">
                <string name="TileListCollectionItem" object="[fl.data.TileListCollectionItem]" text="new TileListCollectionItem(%%)" constructor="true" tiptext="Creates a new TileListCollectionItem object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/TileListCollectionItem.html#TileListCollectionItem()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TileListCollectionItem" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/TileListCollectionItem.html">
                <string name="label" object="[fl.data.TileListCollectionItem]" text=".label" tiptext="The label property of the object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/TileListCollectionItem.html#label"/>
                <string name="source" object="[fl.data.TileListCollectionItem]" text=".source" tiptext="The source property of the object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/data/TileListCollectionItem.html#source"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.events" id="fl.events" sort="true" tiptext="Classes for package fl.events" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/package-detail.html">
        <folder name="ColorPickerEvent" id="[fl.events.ColorPickerEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="The ColorPickerEvent class defines events that are associated with the ColorPicker component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ColorPickerEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ColorPickerEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ColorPickerEvent.html">
                <string name="ColorPickerEvent" object="[fl.events.ColorPickerEvent]" text="new ColorPickerEvent(%type:String,color:uint%)" constructor="true" tiptext="Creates a new ColorPickerEvent object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ColorPickerEvent.html#ColorPickerEvent()"/>
                <string name="toString" object="[fl.events.ColorPickerEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the ColorPickerEvent object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ColorPickerEvent.html#toString()"/>
                <string name="clone" object="[fl.events.ColorPickerEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the ColorPickerEvent object and sets the value of each parameter to match the original." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ColorPickerEvent.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ColorPickerEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ColorPickerEvent.html">
                <string name="ITEM_ROLL_OUT" object="[fl.events.ColorPickerEvent]" text="ColorPickerEvent.ITEM_ROLL_OUT" constant="true" tiptext="Defines the value of the type property for an itemRollOut event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ColorPickerEvent.html#ITEM_ROLL_OUT"/>
                <string name="ITEM_ROLL_OVER" object="[fl.events.ColorPickerEvent]" text="ColorPickerEvent.ITEM_ROLL_OVER" constant="true" tiptext="Defines the value of the type property for an itemRollOver event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ColorPickerEvent.html#ITEM_ROLL_OVER"/>
                <string name="ENTER" object="[fl.events.ColorPickerEvent]" text="ColorPickerEvent.ENTER" constant="true" tiptext="Defines the value of the type property of an enter event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ColorPickerEvent.html#ENTER"/>
                <string name="CHANGE" object="[fl.events.ColorPickerEvent]" text="ColorPickerEvent.CHANGE" constant="true" tiptext="Defines the value of the type property of the change event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ColorPickerEvent.html#CHANGE"/>
                <string name="color" object="[fl.events.ColorPickerEvent]" text=".color" tiptext="Gets the color value that is associated with the event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ColorPickerEvent.html#color"/>
            </folder>
        </folder>
        <folder name="ComponentEvent" id="[fl.events.ComponentEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="The ComponentEvent class defines events that are associated with the UIComponent class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ComponentEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html">
                <string name="ComponentEvent" object="[fl.events.ComponentEvent]" text="new ComponentEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false]%)" constructor="true" tiptext="Creates a new ComponentEvent object that contains information about a component event." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html#ComponentEvent()"/>
                <string name="toString" object="[fl.events.ComponentEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the ComponentEvent object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html#toString()"/>
                <string name="clone" object="[fl.events.ComponentEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the ComponentEvent object and sets the value of each parameter to match the original." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ComponentEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html">
                <string name="BUTTON_DOWN" object="[fl.events.ComponentEvent]" text="ComponentEvent.BUTTON_DOWN" constant="true" tiptext="Defines the value of the type property of a buttonDown event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html#BUTTON_DOWN"/>
                <string name="LABEL_CHANGE" object="[fl.events.ComponentEvent]" text="ComponentEvent.LABEL_CHANGE" constant="true" tiptext="Defines the value of the type property of a labelChange event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html#LABEL_CHANGE"/>
                <string name="HIDE" object="[fl.events.ComponentEvent]" text="ComponentEvent.HIDE" constant="true" tiptext="Defines the value of the type property of a hide event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html#HIDE"/>
                <string name="SHOW" object="[fl.events.ComponentEvent]" text="ComponentEvent.SHOW" constant="true" tiptext="Defines the value of the type property of a show event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html#SHOW"/>
                <string name="RESIZE" object="[fl.events.ComponentEvent]" text="ComponentEvent.RESIZE" constant="true" tiptext="Defines the value of the type property of a resize event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html#RESIZE"/>
                <string name="MOVE" object="[fl.events.ComponentEvent]" text="ComponentEvent.MOVE" constant="true" tiptext="Defines the value of the type property of a move event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html#MOVE"/>
                <string name="ENTER" object="[fl.events.ComponentEvent]" text="ComponentEvent.ENTER" constant="true" tiptext="Defines the value of the type property of an enter event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ComponentEvent.html#ENTER"/>
            </folder>
        </folder>
        <folder name="DataChangeEvent" id="[fl.events.DataChangeEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="The DataChangeEvent class defines the event that is dispatched when the data that is associated with a component changes." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DataChangeEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeEvent.html">
                <string name="DataChangeEvent" object="[fl.events.DataChangeEvent]" text="new DataChangeEvent(%eventType:String,changeType:String,items:Array[,startIndex:int=-1,endIndex:int=-1]%):void" constructor="true" tiptext="Creates a new DataChangeEvent object with the specified parameters." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeEvent.html#DataChangeEvent()"/>
                <string name="toString" object="[fl.events.DataChangeEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the DataChangeEvent object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeEvent.html#toString()"/>
                <string name="clone" object="[fl.events.DataChangeEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the DataEvent object and sets the value of each parameter to match that of the original." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeEvent.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class DataChangeEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeEvent.html">
                <string name="DATA_CHANGE" object="[fl.events.DataChangeEvent]" text="DataChangeEvent.DATA_CHANGE" constant="true" tiptext="Defines the value of the type property of a dataChange event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeEvent.html#DATA_CHANGE"/>
                <string name="PRE_DATA_CHANGE" object="[fl.events.DataChangeEvent]" text="DataChangeEvent.PRE_DATA_CHANGE" constant="true" tiptext="Defines the value of the type property of a preDataChange event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeEvent.html#PRE_DATA_CHANGE"/>
                <string name="changeType" object="[fl.events.DataChangeEvent]" text=".changeType" tiptext="Gets the type of the change that triggered the event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeEvent.html#changeType"/>
                <string name="items" object="[fl.events.DataChangeEvent]" text=".items" tiptext="Gets an array that contains the changed items." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeEvent.html#items"/>
                <string name="startIndex" object="[fl.events.DataChangeEvent]" text=".startIndex" tiptext="Gets the index of the first changed item in the array of items that were changed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeEvent.html#startIndex"/>
                <string name="endIndex" object="[fl.events.DataChangeEvent]" text=".endIndex" tiptext="Gets the index of the last changed item in the array of items that were changed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeEvent.html#endIndex"/>
            </folder>
        </folder>
        <folder name="DataChangeType" id="[fl.events.DataChangeType]" sort="true" index="true" asAncestors="Object" tiptext="The DataChangeType class defines constants for the DataChangeEvent.changeType event." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeType.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class DataChangeType" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeType.html">
                <string name="CHANGE" object="[fl.events.DataChangeType]" text="DataChangeType.CHANGE" constant="true" tiptext="A change was made to the component data." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeType.html#CHANGE"/>
                <string name="INVALIDATE" object="[fl.events.DataChangeType]" text="DataChangeType.INVALIDATE" constant="true" tiptext="A change was made to the data contained in an item." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeType.html#INVALIDATE"/>
                <string name="INVALIDATE_ALL" object="[fl.events.DataChangeType]" text="DataChangeType.INVALIDATE_ALL" constant="true" tiptext="The data set is invalid." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeType.html#INVALIDATE_ALL"/>
                <string name="ADD" object="[fl.events.DataChangeType]" text="DataChangeType.ADD" constant="true" tiptext="Items were added to the data provider." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeType.html#ADD"/>
                <string name="REMOVE" object="[fl.events.DataChangeType]" text="DataChangeType.REMOVE" constant="true" tiptext="Items were removed from the data provider." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeType.html#REMOVE"/>
                <string name="REMOVE_ALL" object="[fl.events.DataChangeType]" text="DataChangeType.REMOVE_ALL" constant="true" tiptext="All items were removed from the data provider." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeType.html#REMOVE_ALL"/>
                <string name="REPLACE" object="[fl.events.DataChangeType]" text="DataChangeType.REPLACE" constant="true" tiptext="The items in the data provider were replaced by new items." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeType.html#REPLACE"/>
                <string name="SORT" object="[fl.events.DataChangeType]" text="DataChangeType.SORT" constant="true" tiptext="The data provider was sorted." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataChangeType.html#SORT"/>
            </folder>
        </folder>
        <folder name="DataGridEvent" id="[fl.events.DataGridEvent]" sort="true" index="true" asAncestors="fl.events:ListEvent,flash.events:Event,Object" tiptext="The DataGridEvent class defines events that are associated with the DataGrid component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DataGridEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html">
                <string name="DataGridEvent" object="[fl.events.DataGridEvent]" text="new DataGridEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,columnIndex:int=-1,rowIndex:int=-1,itemRenderer:Object=null,dataField:String=null,reason:String=null]%)" constructor="true" tiptext="Creates a new DataGridEvent object with the specified parameters." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#DataGridEvent()"/>
                <string name="toString" object="[fl.events.DataGridEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the DataGridEvent object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#toString()"/>
                <string name="clone" object="[fl.events.DataGridEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the DataGridEvent object and sets the value of each property to match the original." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class DataGridEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html">
                <string name="COLUMN_STRETCH" object="[fl.events.DataGridEvent]" text="DataGridEvent.COLUMN_STRETCH" constant="true" tiptext="The DataGridEvent.COLUMN_STRETCH constant defines the value of the type property of a columnStretch event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#COLUMN_STRETCH"/>
                <string name="HEADER_RELEASE" object="[fl.events.DataGridEvent]" text="DataGridEvent.HEADER_RELEASE" constant="true" tiptext="The DataGridEvent.HEADER_RELEASE constant defines the value of the type property of a headerRelease event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#HEADER_RELEASE"/>
                <string name="ITEM_EDIT_BEGINNING" object="[fl.events.DataGridEvent]" text="DataGridEvent.ITEM_EDIT_BEGINNING" constant="true" tiptext="The DataGridEvent.ITEM__EDIT_BEGINNING constant defines the value of the type property of an itemEditBeginning event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#ITEM_EDIT_BEGINNING"/>
                <string name="ITEM_EDIT_BEGIN" object="[fl.events.DataGridEvent]" text="DataGridEvent.ITEM_EDIT_BEGIN" constant="true" tiptext="The DataGridEvent.ITEM_EDIT_BEGIN constant defines the value of the type property of an itemEditBegin event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#ITEM_EDIT_BEGIN"/>
                <string name="ITEM_EDIT_END" object="[fl.events.DataGridEvent]" text="DataGridEvent.ITEM_EDIT_END" constant="true" tiptext="The DataGridEvent.ITEM_EDIT_END constant defines the value of the type property of an itemEditEnd event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#ITEM_EDIT_END"/>
                <string name="ITEM_FOCUS_IN" object="[fl.events.DataGridEvent]" text="DataGridEvent.ITEM_FOCUS_IN" constant="true" tiptext="The DataGridEvent.ITEM_FOCUS_IN constant defines the value of the type property of a itemFocusIn event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#ITEM_FOCUS_IN"/>
                <string name="ITEM_FOCUS_OUT" object="[fl.events.DataGridEvent]" text="DataGridEvent.ITEM_FOCUS_OUT" constant="true" tiptext="The DataGridEvent.ITEM_FOCUS_OUT constant defines the value of the type property of an itemFocusOut event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#ITEM_FOCUS_OUT"/>
                <string name="itemRenderer" object="[fl.events.DataGridEvent]" text=".itemRenderer" tiptext="Gets the item renderer for the item that is being edited or the header renderer that is being clicked or resized." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#itemRenderer"/>
                <string name="dataField" object="[fl.events.DataGridEvent]" text=".dataField" tiptext="Gets or sets the name of the field or property in the data associated with the column." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#dataField"/>
                <string name="reason" object="[fl.events.DataGridEvent]" text=".reason" tiptext="Gets the reason the itemEditEnd event was dispatched." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEvent.html#reason"/>
            </folder>
        </folder>
        <folder name="DataGridEventReason" id="[fl.events.DataGridEventReason]" sort="true" index="true" asAncestors="Object" tiptext="The DataGridEventReason class defines constants that are used for the values of the reason property of the DataGridEvent object when the value of the type property is itemEditEnd." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEventReason.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class DataGridEventReason" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEventReason.html">
                <string name="CANCELLED" object="[fl.events.DataGridEventReason]" text="DataGridEventReason.CANCELLED" constant="true" tiptext="The user canceled editing and does not want to save the edited data." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEventReason.html#CANCELLED"/>
                <string name="OTHER" object="[fl.events.DataGridEventReason]" text="DataGridEventReason.OTHER" constant="true" tiptext="The list component lost focus, was scrolled, or is in a state where editing is not allowed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEventReason.html#OTHER"/>
                <string name="NEW_COLUMN" object="[fl.events.DataGridEventReason]" text="DataGridEventReason.NEW_COLUMN" constant="true" tiptext="The user moved focus to a new column in the same row." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEventReason.html#NEW_COLUMN"/>
                <string name="NEW_ROW" object="[fl.events.DataGridEventReason]" text="DataGridEventReason.NEW_ROW" constant="true" tiptext="Indicates that the user moved focus to a new row." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/DataGridEventReason.html#NEW_ROW"/>
            </folder>
        </folder>
        <folder name="InteractionInputType" id="[fl.events.InteractionInputType]" sort="true" index="true" asAncestors="Object" tiptext="The InteractionInputType class defines constants for the values of the triggerEvent property of the SliderEvent object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/InteractionInputType.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class InteractionInputType" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/InteractionInputType.html">
                <string name="MOUSE" object="[fl.events.InteractionInputType]" text="InteractionInputType.MOUSE" constant="true" tiptext="The InteractionInputType.MOUSE constant defines the value of the type property of a mouse event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/InteractionInputType.html#MOUSE"/>
                <string name="KEYBOARD" object="[fl.events.InteractionInputType]" text="InteractionInputType.KEYBOARD" constant="true" tiptext="The InteractionInputType.KEYBOARD constant defines the value of the type property of a keyboard event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/InteractionInputType.html#KEYBOARD"/>
            </folder>
        </folder>
        <folder name="ListEvent" id="[fl.events.ListEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="The ListEvent class defines events for list-based components including the List, DataGrid, TileList, and ComboBox components." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ListEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html">
                <string name="ListEvent" object="[fl.events.ListEvent]" text="new ListEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,columnIndex:int=-1,rowIndex:int=-1,index:int=-1,item:Object=null]%)" constructor="true" tiptext="Creates a new ListEvent object with the specified parameters." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html#ListEvent()"/>
                <string name="toString" object="[fl.events.ListEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the ListEvent object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html#toString()"/>
                <string name="clone" object="[fl.events.ListEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the ListEvent object and sets the value of each parameter to match the original." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ListEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html">
                <string name="ITEM_ROLL_OUT" object="[fl.events.ListEvent]" text="ListEvent.ITEM_ROLL_OUT" constant="true" tiptext="Defines the value of the type property of an itemRollOut event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html#ITEM_ROLL_OUT"/>
                <string name="ITEM_ROLL_OVER" object="[fl.events.ListEvent]" text="ListEvent.ITEM_ROLL_OVER" constant="true" tiptext="Defines the value of the type property of an itemRollOver event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html#ITEM_ROLL_OVER"/>
                <string name="ITEM_CLICK" object="[fl.events.ListEvent]" text="ListEvent.ITEM_CLICK" constant="true" tiptext="Defines the value of the type property of an itemClick event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html#ITEM_CLICK"/>
                <string name="ITEM_DOUBLE_CLICK" object="[fl.events.ListEvent]" text="ListEvent.ITEM_DOUBLE_CLICK" constant="true" tiptext="Defines the value of the type property of an itemDoubleClick event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html#ITEM_DOUBLE_CLICK"/>
                <string name="rowIndex" object="[fl.events.ListEvent]" text=".rowIndex" tiptext="Gets the row index of the item that is associated with this event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html#rowIndex"/>
                <string name="columnIndex" object="[fl.events.ListEvent]" text=".columnIndex" tiptext="Gets the column index of the item that is associated with this event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html#columnIndex"/>
                <string name="index" object="[fl.events.ListEvent]" text=".index" tiptext="Gets the zero-based index of the cell that contains the renderer." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html#index"/>
                <string name="item" object="[fl.events.ListEvent]" text=".item" tiptext="Gets the data that belongs to the current cell renderer." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ListEvent.html#item"/>
            </folder>
        </folder>
        <folder name="ScrollEvent" id="[fl.events.ScrollEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="The ScrollEvent class defines the scroll event that is associated with the ScrollBar component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ScrollEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ScrollEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ScrollEvent.html">
                <string name="ScrollEvent" object="[fl.events.ScrollEvent]" text="new ScrollEvent(%direction:String,delta:Number,position:Number%)" constructor="true" tiptext="Creates a new ScrollEvent object with the specified parameters." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ScrollEvent.html#ScrollEvent()"/>
                <string name="toString" object="[fl.events.ScrollEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the ScrollEvent object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ScrollEvent.html#toString()"/>
                <string name="clone" object="[fl.events.ScrollEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the ScrollEvent object and sets the value of each parameter to match the original." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ScrollEvent.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ScrollEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ScrollEvent.html">
                <string name="SCROLL" object="[fl.events.ScrollEvent]" text="ScrollEvent.SCROLL" constant="true" tiptext="Defines the value of the type property of a scroll event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ScrollEvent.html#SCROLL"/>
                <string name="direction" object="[fl.events.ScrollEvent]" text=".direction" tiptext="Gets a constant value that indicates the direction of movement associated with the event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ScrollEvent.html#direction"/>
                <string name="delta" object="[fl.events.ScrollEvent]" text=".delta" tiptext="Gets the size of the change in scroll position, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ScrollEvent.html#delta"/>
                <string name="position" object="[fl.events.ScrollEvent]" text=".position" tiptext="Gets the current scroll position, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/ScrollEvent.html#position"/>
            </folder>
        </folder>
        <folder name="SliderEvent" id="[fl.events.SliderEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="The SliderEvent class defines events that are associated with the Slider component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SliderEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html">
                <string name="SliderEvent" object="[fl.events.SliderEvent]" text="new SliderEvent(%type:String,value:Number,clickTarget:String,triggerEvent:String[,keyCode:int=0]%)" constructor="true" tiptext="Creates a new SliderEvent object with the specified parameters." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html#SliderEvent()"/>
                <string name="toString" object="[fl.events.SliderEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the SliderEvent object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html#toString()"/>
                <string name="clone" object="[fl.events.SliderEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the SliderEvent object and sets the value of each parameter to match the original." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SliderEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html">
                <string name="CHANGE" object="[fl.events.SliderEvent]" text="SliderEvent.CHANGE" constant="true" tiptext="Defines the value of the type property of a change event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html#CHANGE"/>
                <string name="THUMB_DRAG" object="[fl.events.SliderEvent]" text="SliderEvent.THUMB_DRAG" constant="true" tiptext="Defines the value of the type property of a thumbDrag event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html#THUMB_DRAG"/>
                <string name="THUMB_PRESS" object="[fl.events.SliderEvent]" text="SliderEvent.THUMB_PRESS" constant="true" tiptext="Defines the value of the type property of a thumbPress event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html#THUMB_PRESS"/>
                <string name="THUMB_RELEASE" object="[fl.events.SliderEvent]" text="SliderEvent.THUMB_RELEASE" constant="true" tiptext="Defines the value of the type property of a thumbRelease event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html#THUMB_RELEASE"/>
                <string name="value" object="[fl.events.SliderEvent]" text=".value" tiptext="Gets the new value of the slider, based on its position." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html#value"/>
                <string name="keyCode" object="[fl.events.SliderEvent]" text=".keyCode" tiptext="Gets the key code for the key that was pressed to trigger the event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html#keyCode"/>
                <string name="triggerEvent" object="[fl.events.SliderEvent]" text=".triggerEvent" tiptext="Gets the type of device that was used to send the input." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html#triggerEvent"/>
                <string name="clickTarget" object="[fl.events.SliderEvent]" text=".clickTarget" tiptext="Gets a string that indicates whether the slider thumb or a slider track was pressed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEvent.html#clickTarget"/>
            </folder>
        </folder>
        <folder name="SliderEventClickTarget" id="[fl.events.SliderEventClickTarget]" sort="true" index="true" asAncestors="Object" tiptext="The SliderEventClickTarget class defines constants for the values of the clickTarget property of the SliderEvent class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEventClickTarget.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class SliderEventClickTarget" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEventClickTarget.html">
                <string name="THUMB" object="[fl.events.SliderEventClickTarget]" text="SliderEventClickTarget.THUMB" constant="true" tiptext="The Slider thumb was clicked." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEventClickTarget.html#THUMB"/>
                <string name="TRACK" object="[fl.events.SliderEventClickTarget]" text="SliderEventClickTarget.TRACK" constant="true" tiptext="The Slider track was clicked." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/events/SliderEventClickTarget.html#TRACK"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.lang" id="fl.lang" sort="true" tiptext="Classes for package fl.lang" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/package-detail.html">
        <folder name="Locale" id="[fl.lang.Locale]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The fl.lang.Locale class allows you to control how multilanguage text is displayed in a SWF file." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Locale" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html">
                <string name="getDefaultLang" object="[fl.lang.Locale]" text="Locale.getDefaultLang(%%):String" static="true" tiptext="The default language code as set in the Strings panel dialog box or by calling the setDefaultLang() method." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#getDefaultLang()"/>
                <string name="setDefaultLang" object="[fl.lang.Locale]" text="Locale.setDefaultLang(%langCode:String%):void" static="true" tiptext="Sets the default language code." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#setDefaultLang()"/>
                <string name="addXMLPath" object="[fl.lang.Locale]" text="Locale.addXMLPath(%langCode:String,path:String%):void" static="true" tiptext="Adds the {languageCode and languagePath} pair into the internal array for later use." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#addXMLPath()"/>
                <string name="addDelayedInstance" object="[fl.lang.Locale]" text="Locale.addDelayedInstance(%instance:Object,stringID:String%)" static="true" tiptext="Adds the {instance, string ID} pair into the internal array for later use." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#addDelayedInstance()"/>
                <string name="checkXMLStatus" object="[fl.lang.Locale]" text="Locale.checkXMLStatus(%%):Boolean" static="true" tiptext="Returns true if the XML file is loaded; false otherwise." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#checkXMLStatus()"/>
                <string name="setLoadCallback" object="[fl.lang.Locale]" text="Locale.setLoadCallback(%loadCallback:Function%)" static="true" tiptext="Sets the callback function that is called after the XML file is loaded." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#setLoadCallback()"/>
                <string name="loadString" object="[fl.lang.Locale]" text="Locale.loadString(%id:String%):String" static="true" tiptext="Returns the string value associated with the given string ID in the current language." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#loadString()"/>
                <string name="loadStringEx" object="[fl.lang.Locale]" text="Locale.loadStringEx(%stringID:String,languageCode:String%):String" static="true" tiptext="Returns the string value associated with the given string ID and language code." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#loadStringEx()"/>
                <string name="setString" object="[fl.lang.Locale]" text="Locale.setString(%stringID:String,languageCode:String,stringValue:String%):void" static="true" tiptext="Sets the new string value of a given string ID and language code." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#setString()"/>
                <string name="initialize" object="[fl.lang.Locale]" text="Locale.initialize(%%):void" static="true" tiptext="Automatically determines the language to use and loads the XML language file." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#initialize()"/>
                <string name="loadLanguageXML" object="[fl.lang.Locale]" text="Locale.loadLanguageXML(%xmlLanguageCode:String[,customXmlCompleteCallback:Function=null]%):void" static="true" tiptext="Loads the specified XML language file." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#loadLanguageXML()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Locale" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html">
                <string name="autoReplace" object="[fl.lang.Locale]" text=".autoReplace" tiptext="Determines whether strings are replaced automatically after loading the XML file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#autoReplace"/>
                <string name="languageCodeArray" object="[fl.lang.Locale]" text=".languageCodeArray" tiptext="An array containing language codes for the languages that have been specified or loaded into the FLA file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#languageCodeArray"/>
                <string name="stringIDArray" object="[fl.lang.Locale]" text=".stringIDArray" tiptext="An array containing all the string IDs in the FLA file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/lang/Locale.html#stringIDArray"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.livepreview" id="fl.livepreview" sort="true" tiptext="Classes for package fl.livepreview" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/livepreview/package-detail.html">
        <folder name="LivePreviewParent" id="[fl.livepreview.LivePreviewParent]" sort="true" index="true" asAncestors="flash.display:MovieClip,flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The LivePreviewParent class provides the timeline for a SWC file or for a compiled clip that is being exported when ActionScript 3.0 is selected." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/livepreview/LivePreviewParent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class LivePreviewParent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/livepreview/LivePreviewParent.html">
                <string name="LivePreviewParent" object="[fl.livepreview.LivePreviewParent]" text="new LivePreviewParent(%%)" constructor="true" tiptext="Initializes the scale and align modes of the Stage, sets the myInstance property, resizes myInstance to the proper size and uses the ExternalInterface class to expose functions to Flash." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/livepreview/LivePreviewParent.html#LivePreviewParent()"/>
                <string name="onResize" object="[fl.livepreview.LivePreviewParent]" text=".onResize(%width:Number,height:Number%):void" tiptext="Resizes the component instance on the Stage to the specified dimensions, either by calling a user-defined method, or by separately setting the width and height properties." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/livepreview/LivePreviewParent.html#onResize()"/>
                <string name="onUpdate" object="[fl.livepreview.LivePreviewParent]" text=".onUpdate(%updateArray:restParam%):void" tiptext="Updates the properties of the component instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/livepreview/LivePreviewParent.html#onUpdate()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class LivePreviewParent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/livepreview/LivePreviewParent.html">
                <string name="myInstance" object="[fl.livepreview.LivePreviewParent]" text=".myInstance" tiptext="The component instance associated with the live preview." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/livepreview/LivePreviewParent.html#myInstance"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.managers" id="fl.managers" sort="true" tiptext="Classes for package fl.managers" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/package-detail.html">
        <folder name="FocusManager" id="[fl.managers.FocusManager]" sort="true" index="true" asAncestors="Object" tiptext="The FocusManager class manages focus for a set of components that are navigated by mouse or keyboard as a tab loop." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class FocusManager" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html">
                <string name="FocusManager" object="[fl.managers.FocusManager]" text="new FocusManager(%container:flash.display:DisplayObjectContainer%)" constructor="true" tiptext="Creates a new FocusManager instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#FocusManager()"/>
                <string name="activate" object="[fl.managers.FocusManager]" text=".activate(%%):void" tiptext="Activates the FocusManager instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#activate()"/>
                <string name="deactivate" object="[fl.managers.FocusManager]" text=".deactivate(%%):void" tiptext="Deactivates the FocusManager." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#deactivate()"/>
                <string name="getNextFocusManagerComponent" object="[fl.managers.FocusManager]" text=".getNextFocusManagerComponent(%[backward:Boolean=false]%):flash.display:InteractiveObject" tiptext="Retrieves the interactive object that would receive focus if the user pressed the Tab key to navigate to the next object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#getNextFocusManagerComponent()"/>
                <string name="getFocus" object="[fl.managers.FocusManager]" text=".getFocus(%%):flash.display:InteractiveObject" tiptext="Gets the interactive object that currently has focus." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#getFocus()"/>
                <string name="setFocus" object="[fl.managers.FocusManager]" text=".setFocus(%component:flash.display:InteractiveObject%):void" tiptext="Sets focus on an IFocusManagerComponent component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#setFocus()"/>
                <string name="showFocus" object="[fl.managers.FocusManager]" text=".showFocus(%%):void" tiptext="Sets the showFocusIndicator value to true and draws the visual focus indicator on the object with focus, if any." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#showFocus()"/>
                <string name="hideFocus" object="[fl.managers.FocusManager]" text=".hideFocus(%%):void" tiptext="Sets the showFocusIndicator value to false and removes the visual focus indicator from the object that has focus, if any." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#hideFocus()"/>
                <string name="findFocusManagerComponent" object="[fl.managers.FocusManager]" text=".findFocusManagerComponent(%component:flash.display:InteractiveObject%):flash.display:InteractiveObject" tiptext="Retrieves the interactive object that contains the given object, if any." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#findFocusManagerComponent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class FocusManager" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html">
                <string name="defaultButton" object="[fl.managers.FocusManager]" text=".defaultButton" tiptext="Gets or sets the current default button." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#defaultButton"/>
                <string name="defaultButtonEnabled" object="[fl.managers.FocusManager]" text=".defaultButtonEnabled" tiptext="Gets or sets a value that indicates whether the default button is enabled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#defaultButtonEnabled"/>
                <string name="nextTabIndex" object="[fl.managers.FocusManager]" text=".nextTabIndex" tiptext="Gets the next unique tab index to use in this tab loop." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#nextTabIndex"/>
                <string name="showFocusIndicator" object="[fl.managers.FocusManager]" text=".showFocusIndicator" tiptext="Gets or sets a value that indicates whether a component that has focus should be marked with a visual indicator of focus." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/FocusManager.html#showFocusIndicator"/>
            </folder>
        </folder>
        <folder name="IFocusManager" id="[fl.managers.IFocusManager]" sort="true" index="true" tiptext="Implement the IFocusManager interface to create a custom focus manager." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IFocusManager" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html">
                <string name="getFocus" object="[fl.managers.IFocusManager]" text=".getFocus(%%):flash.display:InteractiveObject" tiptext="Retrieves the IFocusManagerComponent component that currently has focus." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html#getFocus()"/>
                <string name="setFocus" object="[fl.managers.IFocusManager]" text=".setFocus(%o:flash.display:InteractiveObject%):void" tiptext="Sets focus to an IFocusManagerComponent component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html#setFocus()"/>
                <string name="showFocus" object="[fl.managers.IFocusManager]" text=".showFocus(%%):void" tiptext="Sets the showFocusIndicator property to true." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html#showFocus()"/>
                <string name="hideFocus" object="[fl.managers.IFocusManager]" text=".hideFocus(%%):void" tiptext="Sets the showFocusIndicator property to false." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html#hideFocus()"/>
                <string name="activate" object="[fl.managers.IFocusManager]" text=".activate(%%):void" tiptext="Activates a focus manager." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html#activate()"/>
                <string name="deactivate" object="[fl.managers.IFocusManager]" text=".deactivate(%%):void" tiptext="Deactivates a focus manager." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html#deactivate()"/>
                <string name="findFocusManagerComponent" object="[fl.managers.IFocusManager]" text=".findFocusManagerComponent(%component:flash.display:InteractiveObject%):flash.display:InteractiveObject" tiptext="Retrieves the IFocusManagerComponent object that contains the specified object, if there is one." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html#findFocusManagerComponent()"/>
                <string name="getNextFocusManagerComponent" object="[fl.managers.IFocusManager]" text=".getNextFocusManagerComponent(%[backward:Boolean=false]%):flash.display:InteractiveObject" tiptext="Retrieves the component that receives focus next if the user causes focus to move by using the Tab key." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html#getNextFocusManagerComponent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class IFocusManager" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html">
                <string name="defaultButton" object="[fl.managers.IFocusManager]" text=".defaultButton" tiptext="Gets or sets a reference to the default button." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html#defaultButton"/>
                <string name="defaultButtonEnabled" object="[fl.managers.IFocusManager]" text=".defaultButtonEnabled" tiptext="Gets or sets a value that indicates whether the default button is enabled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html#defaultButtonEnabled"/>
                <string name="nextTabIndex" object="[fl.managers.IFocusManager]" text=".nextTabIndex" tiptext="Gets the next unique tab index to use in the current tab loop." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html#nextTabIndex"/>
                <string name="showFocusIndicator" object="[fl.managers.IFocusManager]" text=".showFocusIndicator" tiptext="Gets or sets a value that determines whether the user interface changes to indicate that a specific component has focus." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManager.html#showFocusIndicator"/>
            </folder>
        </folder>
        <folder name="IFocusManagerComponent" id="[fl.managers.IFocusManagerComponent]" sort="true" index="true" tiptext="The IFocusManagerComponent interface provides methods and properties that give components the capability to receive focus." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerComponent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IFocusManagerComponent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerComponent.html">
                <string name="setFocus" object="[fl.managers.IFocusManagerComponent]" text=".setFocus(%%):void" tiptext="Sets focus for a component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerComponent.html#setFocus()"/>
                <string name="drawFocus" object="[fl.managers.IFocusManagerComponent]" text=".drawFocus(%draw:Boolean%):void" tiptext="Draws a visual focus indicator." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerComponent.html#drawFocus()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class IFocusManagerComponent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerComponent.html">
                <string name="focusEnabled" object="[fl.managers.IFocusManagerComponent]" text=".focusEnabled" tiptext="Gets or sets a Boolean value that indicates whether a selected component can receive focus from the focus manager." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerComponent.html#focusEnabled"/>
                <string name="mouseFocusEnabled" object="[fl.managers.IFocusManagerComponent]" text=".mouseFocusEnabled" tiptext="Gets a Boolean value that indicates whether a component that is selected by using a mouse device can receive focus." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerComponent.html#mouseFocusEnabled"/>
                <string name="tabEnabled" object="[fl.managers.IFocusManagerComponent]" text=".tabEnabled" tiptext="Gets a Boolean value that indicates whether pressing the Tab key can move focus to this component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerComponent.html#tabEnabled"/>
                <string name="tabIndex" object="[fl.managers.IFocusManagerComponent]" text=".tabIndex" tiptext="Gets the order in which the component receives focus, if tabEnabledis set to true." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerComponent.html#tabIndex"/>
            </folder>
        </folder>
        <folder name="IFocusManagerGroup" id="[fl.managers.IFocusManagerGroup]" sort="true" index="true" tiptext="The IFocusManagerGroup interface provides properties that are used to manage a set of components of which only one can be selected at a time." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerGroup.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class IFocusManagerGroup" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerGroup.html">
                <string name="groupName" object="[fl.managers.IFocusManagerGroup]" text=".groupName" tiptext="Gets or sets the name of the group of components to which this component belongs." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerGroup.html#groupName"/>
                <string name="selected" object="[fl.managers.IFocusManagerGroup]" text=".selected" tiptext="Gets or sets a Boolean value that indicates whether this component is selected." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/IFocusManagerGroup.html#selected"/>
            </folder>
        </folder>
        <folder name="StyleManager" id="[fl.managers.StyleManager]" sort="true" index="true" asAncestors="Object" tiptext="The StyleManager class provides static methods that can be used to get and set styles for a component instance, an entire component type, or all user interface components in a Flash document." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/StyleManager.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class StyleManager" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/StyleManager.html">
                <string name="StyleManager" object="[fl.managers.StyleManager]" text="new StyleManager(%%)" constructor="true" tiptext="Creates a new StyleManager object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/StyleManager.html#StyleManager()"/>
                <string name="registerInstance" object="[fl.managers.StyleManager]" text="StyleManager.registerInstance(%instance:fl.core:UIComponent%):void" static="true" tiptext="Registers a component instance with the style manager." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/StyleManager.html#registerInstance()"/>
                <string name="getComponentStyle" object="[fl.managers.StyleManager]" text="StyleManager.getComponentStyle(%component:Object,name:String%):Object" static="true" tiptext="Gets a style that exists on a specific component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/StyleManager.html#getComponentStyle()"/>
                <string name="clearComponentStyle" object="[fl.managers.StyleManager]" text="StyleManager.clearComponentStyle(%component:Object,name:String%):void" static="true" tiptext="Removes a style from the specified component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/StyleManager.html#clearComponentStyle()"/>
                <string name="setComponentStyle" object="[fl.managers.StyleManager]" text="StyleManager.setComponentStyle(%component:Object,name:String,style:Object%):void" static="true" tiptext="Sets a style on all instances of a component type, for example, on all instances of a Button component, or on all instances of a ComboBox component." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/StyleManager.html#setComponentStyle()"/>
                <string name="setStyle" object="[fl.managers.StyleManager]" text="StyleManager.setStyle(%name:String,style:Object%):void" static="true" tiptext="Sets a global style for all user interface components in a document." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/StyleManager.html#setStyle()"/>
                <string name="clearStyle" object="[fl.managers.StyleManager]" text="StyleManager.clearStyle(%name:String%):void" static="true" tiptext="Removes a global style from all user interface components in a document." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/StyleManager.html#clearStyle()"/>
                <string name="getStyle" object="[fl.managers.StyleManager]" text="StyleManager.getStyle(%name:String%):Object" static="true" tiptext="Gets a global style by name." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/managers/StyleManager.html#getStyle()"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.motion" id="fl.motion" sort="true" tiptext="Classes for package fl.motion" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/package-detail.html">
        <folder name="Animator" id="[fl.motion.Animator]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The Animator class applies an XML description of a motion tween to a display object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Animator" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html">
                <string name="Animator" object="[fl.motion.Animator]" text="new Animator(%[xml:XML=null,target:flash.display:DisplayObject=null]%)" constructor="true" tiptext="Creates an Animator object to apply the XML-based motion tween description to a display object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#Animator()"/>
                <string name="fromXMLString" object="[fl.motion.Animator]" text="Animator.fromXMLString(%xmlString:String[,target:flash.display:DisplayObject=null]%):fl.motion:Animator" static="true" tiptext="Creates an Animator object from a string of XML." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#fromXMLString()"/>
                <string name="nextFrame" object="[fl.motion.Animator]" text=".nextFrame(%%):void" tiptext="Advances Flash Player to the next frame in the animation sequence." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#nextFrame()"/>
                <string name="play" object="[fl.motion.Animator]" text=".play(%%):void" tiptext="Begins the animation." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#play()"/>
                <string name="end" object="[fl.motion.Animator]" text=".end(%%):void" tiptext="Stops the animation and Flash Player goes immediately to the last frame in the animation sequence." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#end()"/>
                <string name="stop" object="[fl.motion.Animator]" text=".stop(%%):void" tiptext="Stops the animation and Flash Player goes back to the first frame in the animation sequence." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#stop()"/>
                <string name="pause" object="[fl.motion.Animator]" text=".pause(%%):void" tiptext="Pauses the animation until you call the resume() method." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#pause()"/>
                <string name="resume" object="[fl.motion.Animator]" text=".resume(%%):void" tiptext="Resumes the animation after it has been paused by the pause() method." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#resume()"/>
                <string name="rewind" object="[fl.motion.Animator]" text=".rewind(%%):void" tiptext="Sets Flash Player to the first frame of the animation." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#rewind()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Animator" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html">
                <string name="orientToPath" object="[fl.motion.Animator]" text=".orientToPath" tiptext="Sets the position of the display object along the motion path." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#orientToPath"/>
                <string name="transformationPoint" object="[fl.motion.Animator]" text=".transformationPoint" tiptext="The point of reference for rotating or scaling a display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#transformationPoint"/>
                <string name="autoRewind" object="[fl.motion.Animator]" text=".autoRewind" tiptext="Sets the animation to restart after it finishes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#autoRewind"/>
                <string name="positionMatrix" object="[fl.motion.Animator]" text=".positionMatrix" tiptext="The Matrix object that applies an overall transformation to the motion path." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#positionMatrix"/>
                <string name="repeatCount" object="[fl.motion.Animator]" text=".repeatCount" tiptext="Number of times to repeat the animation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#repeatCount"/>
                <string name="motion" object="[fl.motion.Animator]" text=".motion" tiptext="The object that contains the motion tween properties for the animation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#motion"/>
                <string name="isPlaying" object="[fl.motion.Animator]" text=".isPlaying" tiptext="Indicates whether the animation is currently playing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#isPlaying"/>
                <string name="target" object="[fl.motion.Animator]" text=".target" tiptext="The display object being animated." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#target"/>
                <string name="time" object="[fl.motion.Animator]" text=".time" tiptext="A zero-based integer that indicates and controls the time in the current animation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#time"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class Animator" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html">
                <string name="timeChange" object="[fl.motion.Animator]" text=".addEventListener(%type:String=MotionEvent.TIME_CHANGE{MotionEvent.TIME_CHANGE,MotionEvent.MOTION_UPDATE,MotionEvent.MOTION_START,MotionEvent.MOTION_END},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the Animator&apos;s time value has changed, but the screen has not yet been updated (i.e., the motionUpdate event)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#event:timeChange"/>
                <string name="motionUpdate" object="[fl.motion.Animator]" text=".addEventListener(%type:String=MotionEvent.MOTION_UPDATE{MotionEvent.TIME_CHANGE,MotionEvent.MOTION_UPDATE,MotionEvent.MOTION_START,MotionEvent.MOTION_END},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the motion has changed and the screen has been updated." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#event:motionUpdate"/>
                <string name="motionStart" object="[fl.motion.Animator]" text=".addEventListener(%type:String=MotionEvent.MOTION_START{MotionEvent.TIME_CHANGE,MotionEvent.MOTION_UPDATE,MotionEvent.MOTION_START,MotionEvent.MOTION_END},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the motion starts playing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#event:motionStart"/>
                <string name="motionEnd" object="[fl.motion.Animator]" text=".addEventListener(%type:String=MotionEvent.MOTION_END{MotionEvent.TIME_CHANGE,MotionEvent.MOTION_UPDATE,MotionEvent.MOTION_START,MotionEvent.MOTION_END},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the motion finishes playing, either when it reaches the end, or when the motion has been interrupted by a call to the stop() or end() methods." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Animator.html#event:motionEnd"/>
            </folder>
        </folder>
        <folder name="BezierEase" id="[fl.motion.BezierEase]" sort="true" index="true" asAncestors="Object" tiptext="The BezierEase class provides precise easing control for a motion tween between two keyframes." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierEase.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class BezierEase" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierEase.html">
                <string name="BezierEase" object="[fl.motion.BezierEase]" text="new BezierEase(%[xml:XML=null]%)" constructor="true" tiptext="Constructor for BezierEase instances." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierEase.html#BezierEase()"/>
                <string name="getValue" object="[fl.motion.BezierEase]" text=".getValue(%time:Number,begin:Number,change:Number,duration:Number%):Number" tiptext="Calculates an interpolated value for a numerical property of animation, using a Bezier easing curve." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierEase.html#getValue()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class BezierEase" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierEase.html">
                <string name="points" object="[fl.motion.BezierEase]" text=".points" tiptext="An ordered collection of points in the custom easing curve." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierEase.html#points"/>
                <string name="target" object="[fl.motion.BezierEase]" text=".target" tiptext="The name of the animation property to target." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierEase.html#target"/>
            </folder>
        </folder>
        <folder name="BezierSegment" id="[fl.motion.BezierSegment]" sort="true" index="true" asAncestors="Object" tiptext="A Bezier segment consists of four Point objects that define a single cubic Bezier curve." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class BezierSegment" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html">
                <string name="BezierSegment" object="[fl.motion.BezierSegment]" text="new BezierSegment(%a:flash.geom:Point,b:flash.geom:Point,c:flash.geom:Point,d:flash.geom:Point%)" constructor="true" tiptext="Constructor for BezierSegment instances." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html#BezierSegment()"/>
                <string name="getValue" object="[fl.motion.BezierSegment]" text=".getValue(%t:Number%):flash.geom:Point" tiptext="Calculates the location of a two-dimensional cubic Bezier curve at a specific time." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html#getValue()"/>
                <string name="getSingleValue" object="[fl.motion.BezierSegment]" text="BezierSegment.getSingleValue(%t:Number[,a:Number=0,b:Number=0,c:Number=0,d:Number=0]%):Number" static="true" tiptext="Calculates the value of a one-dimensional cubic Bezier equation at a specific time." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html#getSingleValue()"/>
                <string name="getYForX" object="[fl.motion.BezierSegment]" text=".getYForX(%x:Number[,coefficients:Array=null]%):Number" tiptext="Finds the y value of a cubic Bezier curve at a given x coordinate." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html#getYForX()"/>
                <string name="getCubicCoefficients" object="[fl.motion.BezierSegment]" text="BezierSegment.getCubicCoefficients(%a:Number,b:Number,c:Number,d:Number%):Array" static="true" tiptext="Calculates the coefficients for a cubic polynomial equation, given the values of the corresponding cubic Bezier equation." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html#getCubicCoefficients()"/>
                <string name="getCubicRoots" object="[fl.motion.BezierSegment]" text="BezierSegment.getCubicRoots(%[a:Number=0,b:Number=0,c:Number=0,d:Number=0]%):Array" static="true" tiptext="Finds the real solutions, if they exist, to a cubic polynomial equation of the form: at^3 + bt^2 + ct + d." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html#getCubicRoots()"/>
                <string name="getQuadraticRoots" object="[fl.motion.BezierSegment]" text="BezierSegment.getQuadraticRoots(%a:Number,b:Number,c:Number%):Array" static="true" tiptext="Finds the real solutions, if they exist, to a quadratic equation of the form: at^2 + bt + c." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html#getQuadraticRoots()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class BezierSegment" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html">
                <string name="a" object="[fl.motion.BezierSegment]" text=".a" tiptext="The first point of the Bezier curve." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html#a"/>
                <string name="b" object="[fl.motion.BezierSegment]" text=".b" tiptext="The second point of the Bezier curve." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html#b"/>
                <string name="c" object="[fl.motion.BezierSegment]" text=".c" tiptext="The third point of the Bezier curve." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html#c"/>
                <string name="d" object="[fl.motion.BezierSegment]" text=".d" tiptext="The fourth point of the Bezier curve." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/BezierSegment.html#d"/>
            </folder>
        </folder>
        <folder name="Color" id="[fl.motion.Color]" sort="true" index="true" asAncestors="flash.geom:ColorTransform,Object" tiptext="The Color class extends the Flash Player ColorTransform class, adding the ability to control brightness and tint." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Color.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Color" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Color.html">
                <string name="Color" object="[fl.motion.Color]" text="new Color(%[redMultiplier:Number=1.0,greenMultiplier:Number=1.0,blueMultiplier:Number=1.0,alphaMultiplier:Number=1.0,redOffset:Number=0,greenOffset:Number=0,blueOffset:Number=0,alphaOffset:Number=0]%)" constructor="true" tiptext="Constructor for Color instances." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Color.html#Color()"/>
                <string name="setTint" object="[fl.motion.Color]" text=".setTint(%tintColor:uint,tintMultiplier:Number%):void" tiptext="Sets the tint color and amount at the same time." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Color.html#setTint()"/>
                <string name="fromXML" object="[fl.motion.Color]" text="Color.fromXML(%xml:XML%):fl.motion:Color" static="true" tiptext="Creates a Color instance from XML." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Color.html#fromXML()"/>
                <string name="interpolateTransform" object="[fl.motion.Color]" text="Color.interpolateTransform(%fromColor:flash.geom:ColorTransform,toColor:flash.geom:ColorTransform,progress:Number%):flash.geom:ColorTransform" static="true" tiptext="Blends smoothly from one ColorTransform object to another." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Color.html#interpolateTransform()"/>
                <string name="interpolateColor" object="[fl.motion.Color]" text="Color.interpolateColor(%fromColor:uint,toColor:uint,progress:Number%):uint" static="true" tiptext="Blends smoothly from one color value to another." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Color.html#interpolateColor()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Color" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Color.html">
                <string name="brightness" object="[fl.motion.Color]" text=".brightness" tiptext="The percentage of brightness, as a decimal between -1 and 1." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Color.html#brightness"/>
                <string name="tintColor" object="[fl.motion.Color]" text=".tintColor" tiptext="The tinting color value in the 0xRRGGBB format." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Color.html#tintColor"/>
                <string name="tintMultiplier" object="[fl.motion.Color]" text=".tintMultiplier" tiptext="The percentage to apply the tint color, as a decimal value between 0 and 1." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Color.html#tintMultiplier"/>
            </folder>
        </folder>
        <folder name="CustomEase" id="[fl.motion.CustomEase]" sort="true" index="true" asAncestors="Object" tiptext="The CustomEase class is used to modify specific properties of the easing behavior of a motion tween as the tween progresses over time." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/CustomEase.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class CustomEase" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/CustomEase.html">
                <string name="CustomEase" object="[fl.motion.CustomEase]" text="new CustomEase(%[xml:XML=null]%)" constructor="true" tiptext="Constructor for CustomEase instances." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/CustomEase.html#CustomEase()"/>
                <string name="getValue" object="[fl.motion.CustomEase]" text=".getValue(%time:Number,begin:Number,change:Number,duration:Number%):Number" tiptext="Calculates an interpolated value for a numerical property of animation, using a custom easing curve." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/CustomEase.html#getValue()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class CustomEase" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/CustomEase.html">
                <string name="points" object="[fl.motion.CustomEase]" text=".points" tiptext="An ordered collection of points in the custom easing curve." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/CustomEase.html#points"/>
                <string name="target" object="[fl.motion.CustomEase]" text=".target" tiptext="The name of the animation property to target." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/CustomEase.html#target"/>
            </folder>
        </folder>
        <folder name="FunctionEase" id="[fl.motion.FunctionEase]" sort="true" index="true" asAncestors="Object" tiptext="The FunctionEase class allows custom interpolation functions to be used with the fl.motion framework in place of other interpolations like SimpleEase and CustomEase." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/FunctionEase.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class FunctionEase" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/FunctionEase.html">
                <string name="FunctionEase" object="[fl.motion.FunctionEase]" text="new FunctionEase(%[xml:XML=null]%)" constructor="true" tiptext="Constructor for FunctionEase instances." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/FunctionEase.html#FunctionEase()"/>
                <string name="getValue" object="[fl.motion.FunctionEase]" text=".getValue(%time:Number,begin:Number,change:Number,duration:Number%):Number" tiptext="Calculates an interpolated value for a numerical property of animation, using the specified easing function." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/FunctionEase.html#getValue()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class FunctionEase" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/FunctionEase.html">
                <string name="easingFunction" object="[fl.motion.FunctionEase]" text=".easingFunction" tiptext="A reference to a function with a (t, b, c, d) signature like the methods in the fl.motion.easing classes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/FunctionEase.html#easingFunction"/>
                <string name="parameters" object="[fl.motion.FunctionEase]" text=".parameters" tiptext="An optional array of values to be passed to the easing function as additional arguments." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/FunctionEase.html#parameters"/>
                <string name="functionName" object="[fl.motion.FunctionEase]" text=".functionName" tiptext="The fully qualified name of an easing function, such as fl.motion.easing.Bounce.easeOut()." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/FunctionEase.html#functionName"/>
                <string name="target" object="[fl.motion.FunctionEase]" text=".target" tiptext="The name of the animation property to target." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/FunctionEase.html#target"/>
            </folder>
        </folder>
        <folder name="ITween" id="[fl.motion.ITween]" sort="true" index="true" tiptext="The ITween interface defines the application programming interface (API) that interpolation classes implement in order to work with the fl.motion classes." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/ITween.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ITween" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/ITween.html">
                <string name="getValue" object="[fl.motion.ITween]" text=".getValue(%time:Number,begin:Number,change:Number,duration:Number%):Number" tiptext="Calculates an interpolated value for a numerical property of animation." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/ITween.html#getValue()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ITween" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/ITween.html">
                <string name="target" object="[fl.motion.ITween]" text=".target" tiptext="The name of the animation property to target." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/ITween.html#target"/>
            </folder>
        </folder>
        <folder name="Keyframe" id="[fl.motion.Keyframe]" sort="true" index="true" asAncestors="Object" tiptext="The Keyframe class defines the visual state at a specific time in a motion tween." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Keyframe" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html">
                <string name="Keyframe" object="[fl.motion.Keyframe]" text="new Keyframe(%[xml:XML=null]%)" constructor="true" tiptext="Constructor for keyframe instances." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#Keyframe()"/>
                <string name="getValue" object="[fl.motion.Keyframe]" text=".getValue(%tweenableName:String%):Number" tiptext="Retrieves the value of a specific tweenable property on the keyframe." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#getValue()"/>
                <string name="setValue" object="[fl.motion.Keyframe]" text=".setValue(%tweenableName:String,newValue:Number%):void" tiptext="Changes the value of a specific tweenable property on the keyframe." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#setValue()"/>
                <string name="getTween" object="[fl.motion.Keyframe]" text=".getTween(%target:String%):fl.motion:ITween" tiptext="Retrieves an ITween object for a specific animation property." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#getTween()"/>
                <string name="affectsTweenable" object="[fl.motion.Keyframe]" text=".affectsTweenable(%tweenableName:String%):Boolean" tiptext="Indicates whether the keyframe has an influence on a specific animation property." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#affectsTweenable()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Keyframe" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html">
                <string name="x" object="[fl.motion.Keyframe]" text=".x" tiptext="The horizontal position of the target object&apos;s transformation point in its parent&apos;s coordinate space." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#x"/>
                <string name="y" object="[fl.motion.Keyframe]" text=".y" tiptext="The vertical position of the target object&apos;s transformation point in its parent&apos;s coordinate space." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#y"/>
                <string name="scaleX" object="[fl.motion.Keyframe]" text=".scaleX" tiptext="Indicates the horizontal scale as a percentage of the object as applied from the transformation point." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#scaleX"/>
                <string name="scaleY" object="[fl.motion.Keyframe]" text=".scaleY" tiptext="Indicates the vertical scale as a percentage of the object as applied from the transformation point." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#scaleY"/>
                <string name="skewX" object="[fl.motion.Keyframe]" text=".skewX" tiptext="Indicates the horizontal skew angle of the target object in degrees as applied from the transformation point." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#skewX"/>
                <string name="skewY" object="[fl.motion.Keyframe]" text=".skewY" tiptext="Indicates the vertical skew angle of the target object in degrees as applied from the transformation point." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#skewY"/>
                <string name="tweens" object="[fl.motion.Keyframe]" text=".tweens" tiptext="An array that contains each tween object to be applied to the target object at a particular keyframe." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#tweens"/>
                <string name="filters" object="[fl.motion.Keyframe]" text=".filters" tiptext="An array that contains each filter object to be applied to the target object at a particular keyframe." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#filters"/>
                <string name="color" object="[fl.motion.Keyframe]" text=".color" tiptext="A color object that adjusts the color transform in the target object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#color"/>
                <string name="label" object="[fl.motion.Keyframe]" text=".label" tiptext="A string used to describe the keyframe." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#label"/>
                <string name="tweenScale" object="[fl.motion.Keyframe]" text=".tweenScale" tiptext="A flag that controls whether scale will be interpolated during a tween." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#tweenScale"/>
                <string name="tweenSnap" object="[fl.motion.Keyframe]" text=".tweenSnap" tiptext="Stores the value of the Snap checkbox for motion tweens, which snaps the object to a motion guide." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#tweenSnap"/>
                <string name="tweenSync" object="[fl.motion.Keyframe]" text=".tweenSync" tiptext="Stores the value of the Sync checkbox for motion tweens, which affects graphic symbols only." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#tweenSync"/>
                <string name="loop" object="[fl.motion.Keyframe]" text=".loop" tiptext="Stores the value of the Loop checkbox for motion tweens, which affects graphic symbols only." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#loop"/>
                <string name="firstFrame" object="[fl.motion.Keyframe]" text=".firstFrame" tiptext="Stores the name of the first frame for motion tweens, which affects graphic symbols only." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#firstFrame"/>
                <string name="cacheAsBitmap" object="[fl.motion.Keyframe]" text=".cacheAsBitmap" tiptext="If set to true, Flash Player caches an internal bitmap representation of the display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#cacheAsBitmap"/>
                <string name="blendMode" object="[fl.motion.Keyframe]" text=".blendMode" tiptext="A value from the BlendMode class that specifies how Flash Player mixes the display object&apos;s colors with graphics underneath it." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#blendMode"/>
                <string name="rotateDirection" object="[fl.motion.Keyframe]" text=".rotateDirection" tiptext="Controls how the target object rotates during a motion tween, with a value from the RotateDirection class." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#rotateDirection"/>
                <string name="rotateTimes" object="[fl.motion.Keyframe]" text=".rotateTimes" tiptext="Adds rotation to the target object during a motion tween, in addition to any existing rotation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#rotateTimes"/>
                <string name="orientToPath" object="[fl.motion.Keyframe]" text=".orientToPath" tiptext="If set to true, this property causes the target object to rotate automatically to follow the angle of its path." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#orientToPath"/>
                <string name="blank" object="[fl.motion.Keyframe]" text=".blank" tiptext="Indicates that the target object should not be displayed on this keyframe." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#blank"/>
                <string name="index" object="[fl.motion.Keyframe]" text=".index" tiptext="The keyframe&apos;s unique time value in the motion tween." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#index"/>
                <string name="rotation" object="[fl.motion.Keyframe]" text=".rotation" tiptext="Indicates the rotation of the target object in degrees from its original orientation as applied from the transformation point." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Keyframe.html#rotation"/>
            </folder>
        </folder>
        <folder name="MatrixTransformer" id="[fl.motion.MatrixTransformer]" sort="true" index="true" asAncestors="Object" tiptext="The MatrixTransformer class contains methods for modifying individual properties of a transformation matrix: horizontal and vertical scale, horizontal and vertical skew, and rotation." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class MatrixTransformer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html">
                <string name="getScaleX" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.getScaleX(%m:flash.geom:Matrix%):Number" static="true" tiptext="Calculates the horizontal scale present in a matrix." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#getScaleX()"/>
                <string name="setScaleX" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.setScaleX(%m:flash.geom:Matrix,scaleX:Number%):void" static="true" tiptext="Changes the horizontal scale in a matrix." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#setScaleX()"/>
                <string name="getScaleY" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.getScaleY(%m:flash.geom:Matrix%):Number" static="true" tiptext="Calculates the vertical scale present in a matrix." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#getScaleY()"/>
                <string name="setScaleY" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.setScaleY(%m:flash.geom:Matrix,scaleY:Number%):void" static="true" tiptext="Changes the vertical scale in a matrix." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#setScaleY()"/>
                <string name="getSkewXRadians" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.getSkewXRadians(%m:flash.geom:Matrix%):Number" static="true" tiptext="Calculates the angle of horizontal skew present in a matrix, in radians." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#getSkewXRadians()"/>
                <string name="setSkewXRadians" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.setSkewXRadians(%m:flash.geom:Matrix,skewX:Number%):void" static="true" tiptext="Changes the horizontal skew in a matrix." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#setSkewXRadians()"/>
                <string name="getSkewYRadians" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.getSkewYRadians(%m:flash.geom:Matrix%):Number" static="true" tiptext="Calculates the angle of vertical skew present in a matrix, in radians." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#getSkewYRadians()"/>
                <string name="setSkewYRadians" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.setSkewYRadians(%m:flash.geom:Matrix,skewY:Number%):void" static="true" tiptext="Changes the vertical skew in a matrix." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#setSkewYRadians()"/>
                <string name="getSkewX" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.getSkewX(%m:flash.geom:Matrix%):Number" static="true" tiptext="Calculates the angle of horizontal skew present in a matrix, in degrees." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#getSkewX()"/>
                <string name="setSkewX" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.setSkewX(%m:flash.geom:Matrix,skewX:Number%):void" static="true" tiptext="Changes the horizontal skew in a matrix." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#setSkewX()"/>
                <string name="getSkewY" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.getSkewY(%m:flash.geom:Matrix%):Number" static="true" tiptext="Calculates the angle of vertical skew present in a matrix, in degrees." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#getSkewY()"/>
                <string name="setSkewY" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.setSkewY(%m:flash.geom:Matrix,skewY:Number%):void" static="true" tiptext="Changes the vertical skew in a matrix." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#setSkewY()"/>
                <string name="getRotationRadians" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.getRotationRadians(%m:flash.geom:Matrix%):Number" static="true" tiptext="Calculates the angle of rotation present in a matrix, in radians." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#getRotationRadians()"/>
                <string name="setRotationRadians" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.setRotationRadians(%m:flash.geom:Matrix,rotation:Number%):void" static="true" tiptext="Changes the angle of rotation in a matrix." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#setRotationRadians()"/>
                <string name="getRotation" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.getRotation(%m:flash.geom:Matrix%):Number" static="true" tiptext="Calculates the angle of rotation present in a matrix, in degrees." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#getRotation()"/>
                <string name="setRotation" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.setRotation(%m:flash.geom:Matrix,rotation:Number%):void" static="true" tiptext="Changes the angle of rotation in a matrix." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#setRotation()"/>
                <string name="rotateAroundInternalPoint" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.rotateAroundInternalPoint(%m:flash.geom:Matrix,x:Number,y:Number,angleDegrees:Number%):void" static="true" tiptext="Rotates a matrix about a point defined inside the matrix&apos;s transformation space." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#rotateAroundInternalPoint()"/>
                <string name="rotateAroundExternalPoint" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.rotateAroundExternalPoint(%m:flash.geom:Matrix,x:Number,y:Number,angleDegrees:Number%):void" static="true" tiptext="Rotates a matrix about a point defined outside the matrix&apos;s transformation space." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#rotateAroundExternalPoint()"/>
                <string name="matchInternalPointWithExternal" object="[fl.motion.MatrixTransformer]" text="MatrixTransformer.matchInternalPointWithExternal(%m:flash.geom:Matrix,internalPoint:flash.geom:Point,externalPoint:flash.geom:Point%):void" static="true" tiptext="Moves a matrix as necessary to align an internal point with an external point." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MatrixTransformer.html#matchInternalPointWithExternal()"/>
            </folder>
        </folder>
        <folder name="Motion" id="[fl.motion.Motion]" sort="true" index="true" asAncestors="Object" tiptext="The Motion class stores a keyframe animation sequence that can be applied to a visual object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Motion" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html">
                <string name="Motion" object="[fl.motion.Motion]" text="new Motion(%[xml:XML=null]%)" constructor="true" tiptext="Constructor for Motion instances." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#Motion()"/>
                <string name="getCurrentKeyframe" object="[fl.motion.Motion]" text=".getCurrentKeyframe(%index:int,tweenableName:String%):fl.motion:Keyframe" tiptext="Retrieves the keyframe that is currently active at a specific frame in the Motion instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#getCurrentKeyframe()"/>
                <string name="getNextKeyframe" object="[fl.motion.Motion]" text=".getNextKeyframe(%index:int,tweenableName:String%):fl.motion:Keyframe" tiptext="Retrieves the next keyframe after a specific frame in the Motion instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#getNextKeyframe()"/>
                <string name="setValue" object="[fl.motion.Motion]" text=".setValue(%index:int,tweenableName:String,value:Number%):void" tiptext="Sets the value of a specific tweenables property at a given time index in the Motion instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#setValue()"/>
                <string name="getColorTransform" object="[fl.motion.Motion]" text=".getColorTransform(%index:int%):flash.geom:ColorTransform" tiptext="Retrieves an interpolated ColorTransform object at a specific time index in the Motion instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#getColorTransform()"/>
                <string name="getFilters" object="[fl.motion.Motion]" text=".getFilters(%index:Number%):Array" tiptext="Retrieves an interpolated array of filters at a specific time index in the Motion instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#getFilters()"/>
                <string name="getValue" object="[fl.motion.Motion]" text=".getValue(%index:Number,tweenableName:String%):Number" tiptext="Retrieves the value for an animation property at a point in time." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#getValue()"/>
                <string name="addKeyframe" object="[fl.motion.Motion]" text=".addKeyframe(%newKeyframe:fl.motion:Keyframe%):void" tiptext="Adds a keyframe object to the Motion instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#addKeyframe()"/>
                <string name="fromXMLString" object="[fl.motion.Motion]" text="Motion.fromXMLString(%xmlString:String%):fl.motion:Motion" static="true" tiptext="A method needed to create a Motion instance from a string of XML." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#fromXMLString()"/>
                <string name="interpolateFilters" object="[fl.motion.Motion]" text="Motion.interpolateFilters(%fromFilters:Array,toFilters:Array,progress:Number%):Array" static="true" tiptext="Blends filters smoothly from one array of filter objects to another." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#interpolateFilters()"/>
                <string name="interpolateFilter" object="[fl.motion.Motion]" text="Motion.interpolateFilter(%fromFilter:flash.filters:BitmapFilter,toFilter:flash.filters:BitmapFilter,progress:Number%):flash.filters:BitmapFilter" static="true" tiptext="Blends filters smoothly from one filter object to another." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#interpolateFilter()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Motion" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html">
                <string name="source" object="[fl.motion.Motion]" text=".source" tiptext="An object that stores information about the context in which the motion was created, such as framerate, dimensions, transformation point, and initial position, scale, rotation and skew." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#source"/>
                <string name="keyframes" object="[fl.motion.Motion]" text=".keyframes" tiptext="An array of keyframes that define the motion&apos;s behavior over time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#keyframes"/>
                <string name="keyframesCompact" object="[fl.motion.Motion]" text=".keyframesCompact" tiptext="A compact array of keyframes, where each index is occupied by a keyframe." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#keyframesCompact"/>
                <string name="duration" object="[fl.motion.Motion]" text=".duration" tiptext="Controls the Motion instance&apos;s length of time, measured in frames." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Motion.html#duration"/>
            </folder>
        </folder>
        <folder name="MotionEvent" id="[fl.motion.MotionEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="The MotionEvent class represents events that are broadcast by the fl.motion.Animator class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MotionEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class MotionEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MotionEvent.html">
                <string name="MotionEvent" object="[fl.motion.MotionEvent]" text="new MotionEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false]%)" constructor="true" tiptext="Constructor." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MotionEvent.html#MotionEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class MotionEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MotionEvent.html">
                <string name="MOTION_START" object="[fl.motion.MotionEvent]" text="MotionEvent.MOTION_START" constant="true" tiptext="Indicates that the Motion instance has started playing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MotionEvent.html#MOTION_START"/>
                <string name="MOTION_END" object="[fl.motion.MotionEvent]" text="MotionEvent.MOTION_END" constant="true" tiptext="Indicates that the motion has stopped, whether by an explicit call to Animator.stop() or Animator.end(), or by reaching the end of the Motion instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MotionEvent.html#MOTION_END"/>
                <string name="MOTION_UPDATE" object="[fl.motion.MotionEvent]" text="MotionEvent.MOTION_UPDATE" constant="true" tiptext="Indicates that the Motion instance has changed and the screen has been updated." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MotionEvent.html#MOTION_UPDATE"/>
                <string name="TIME_CHANGE" object="[fl.motion.MotionEvent]" text="MotionEvent.TIME_CHANGE" constant="true" tiptext="Indicates that the Animator instance&apos;s time value has changed, but the screen has not yet been updated (Flash Player has not dispatched the motionUpdate event)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/MotionEvent.html#TIME_CHANGE"/>
            </folder>
        </folder>
        <folder name="RotateDirection" id="[fl.motion.RotateDirection]" sort="true" index="true" asAncestors="Object" tiptext="The RotateDirection class provides constant values for rotation behavior during a tween." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/RotateDirection.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class RotateDirection" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/RotateDirection.html">
                <string name="AUTO" object="[fl.motion.RotateDirection]" text="RotateDirection.AUTO" constant="true" tiptext="Chooses a direction of rotation that requires the least amount of turning." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/RotateDirection.html#AUTO"/>
                <string name="NONE" object="[fl.motion.RotateDirection]" text="RotateDirection.NONE" constant="true" tiptext="Prevents the object from rotating during a tween until the next keyframe is reached." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/RotateDirection.html#NONE"/>
                <string name="CW" object="[fl.motion.RotateDirection]" text="RotateDirection.CW" constant="true" tiptext="Ensures that the object rotates clockwise during a tween to match the rotation of the object in the following keyframe." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/RotateDirection.html#CW"/>
                <string name="CCW" object="[fl.motion.RotateDirection]" text="RotateDirection.CCW" constant="true" tiptext="Ensures that the object rotates counterclockwise during a tween to match the rotation of the object in the following keyframe." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/RotateDirection.html#CCW"/>
            </folder>
        </folder>
        <folder name="SimpleEase" id="[fl.motion.SimpleEase]" sort="true" index="true" asAncestors="Object" tiptext="The SimpleEase class allows you to control an animation with the kind of percentage easing that is used in the Flash timeline." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/SimpleEase.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SimpleEase" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/SimpleEase.html">
                <string name="SimpleEase" object="[fl.motion.SimpleEase]" text="new SimpleEase(%[xml:XML=null]%)" constructor="true" tiptext="Constructor for SimpleEase instances." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/SimpleEase.html#SimpleEase()"/>
                <string name="easeQuadPercent" object="[fl.motion.SimpleEase]" text="SimpleEase.easeQuadPercent(%time:Number,begin:Number,change:Number,duration:Number,percent:Number%):Number" static="true" tiptext="Calculates an interpolated value for a numerical property of animation, using a percentage of quadratic easing." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/SimpleEase.html#easeQuadPercent()"/>
                <string name="easeNone" object="[fl.motion.SimpleEase]" text="SimpleEase.easeNone(%time:Number,begin:Number,change:Number,duration:Number%):Number" static="true" tiptext="Calculates an interpolated value for a numerical property of animation, using a linear tween of constant velocity." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/SimpleEase.html#easeNone()"/>
                <string name="getValue" object="[fl.motion.SimpleEase]" text=".getValue(%time:Number,begin:Number,change:Number,duration:Number%):Number" tiptext="Calculates an interpolated value for a numerical property of animation, using a percentage of quadratic easing." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/SimpleEase.html#getValue()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SimpleEase" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/SimpleEase.html">
                <string name="ease" object="[fl.motion.SimpleEase]" text=".ease" tiptext="A percentage between -1 (100% ease in or acceleration) and 1 (100% ease out or deceleration)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/SimpleEase.html#ease"/>
                <string name="target" object="[fl.motion.SimpleEase]" text=".target" tiptext="The name of the animation property to target." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/SimpleEase.html#target"/>
            </folder>
        </folder>
        <folder name="Source" id="[fl.motion.Source]" sort="true" index="true" asAncestors="Object" tiptext="The Source class stores information about the context in which a Motion instance was generated." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Source" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html">
                <string name="Source" object="[fl.motion.Source]" text="new Source(%[xml:XML=null]%)" constructor="true" tiptext="Constructor for Source instances." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#Source()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Source" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html">
                <string name="frameRate" object="[fl.motion.Source]" text=".frameRate" tiptext="Indicates the frames per second of the movie in which the Motion instance was generated." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#frameRate"/>
                <string name="elementType" object="[fl.motion.Source]" text=".elementType" tiptext="Indicates the type of object from which the Motion instance was generated." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#elementType"/>
                <string name="symbolName" object="[fl.motion.Source]" text=".symbolName" tiptext="Indicates the name of the symbol from which the Motion instance was generated." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#symbolName"/>
                <string name="instanceName" object="[fl.motion.Source]" text=".instanceName" tiptext="Indicates the instance name given to the movie clip from which the Motion instance was generated." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#instanceName"/>
                <string name="linkageID" object="[fl.motion.Source]" text=".linkageID" tiptext="Indicates the library linkage identifier for the symbol from which the Motion instance was generated." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#linkageID"/>
                <string name="x" object="[fl.motion.Source]" text=".x" tiptext="Indicates the x value of the original object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#x"/>
                <string name="y" object="[fl.motion.Source]" text=".y" tiptext="Indicates the y value of the original object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#y"/>
                <string name="scaleX" object="[fl.motion.Source]" text=".scaleX" tiptext="Indicates the scaleX value of the original object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#scaleX"/>
                <string name="scaleY" object="[fl.motion.Source]" text=".scaleY" tiptext="Indicates the scaleY value of the original object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#scaleY"/>
                <string name="skewX" object="[fl.motion.Source]" text=".skewX" tiptext="Indicates the skewX value of the original object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#skewX"/>
                <string name="skewY" object="[fl.motion.Source]" text=".skewY" tiptext="Indicates the skewY value of the original object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#skewY"/>
                <string name="rotation" object="[fl.motion.Source]" text=".rotation" tiptext="Indicates the rotation value of the original object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#rotation"/>
                <string name="transformationPoint" object="[fl.motion.Source]" text=".transformationPoint" tiptext="Specifies the location of the transformation or &quot;pivot&quot; point of the original object, from which transformations are applied." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#transformationPoint"/>
                <string name="dimensions" object="[fl.motion.Source]" text=".dimensions" tiptext="Indicates the position and size of the bounding box of the object from which the Motion instance was generated." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Source.html#dimensions"/>
            </folder>
        </folder>
        <folder name="Tweenables" id="[fl.motion.Tweenables]" sort="true" index="true" asAncestors="Object" tiptext="The Tweenables class provides constant values for the names of animation properties used in the Motion and Keyframe classes." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Tweenables.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class Tweenables" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Tweenables.html">
                <string name="X" object="[fl.motion.Tweenables]" text="Tweenables.X" constant="true" tiptext="Constant for the x property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Tweenables.html#X"/>
                <string name="Y" object="[fl.motion.Tweenables]" text="Tweenables.Y" constant="true" tiptext="Constant for the y property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Tweenables.html#Y"/>
                <string name="SCALE_X" object="[fl.motion.Tweenables]" text="Tweenables.SCALE_X" constant="true" tiptext="Constant for the scaleX property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Tweenables.html#SCALE_X"/>
                <string name="SCALE_Y" object="[fl.motion.Tweenables]" text="Tweenables.SCALE_Y" constant="true" tiptext="Constant for the scaleY property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Tweenables.html#SCALE_Y"/>
                <string name="SKEW_X" object="[fl.motion.Tweenables]" text="Tweenables.SKEW_X" constant="true" tiptext="Constant for the skewX property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Tweenables.html#SKEW_X"/>
                <string name="SKEW_Y" object="[fl.motion.Tweenables]" text="Tweenables.SKEW_Y" constant="true" tiptext="Constant for the skewY property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Tweenables.html#SKEW_Y"/>
                <string name="ROTATION" object="[fl.motion.Tweenables]" text="Tweenables.ROTATION" constant="true" tiptext="Constant for the rotation property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/Tweenables.html#ROTATION"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.motion.easing" id="fl.motion.easing" sort="true" tiptext="Classes for package fl.motion.easing" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/package-detail.html">
        <folder name="Back" id="[fl.motion.easing.Back]" sort="true" index="true" asAncestors="Object" tiptext="The Back class defines three easing functions to implement motion with ActionScript animations." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Back.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Back" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Back.html">
                <string name="easeIn" object="[fl.motion.easing.Back]" text="Back.easeIn(%t:Number,b:Number,c:Number,d:Number[,s:Number=0]%):Number" static="true" tiptext="The easeIn() method starts the motion by backtracking and then reversing direction and moving toward the target." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Back.html#easeIn()"/>
                <string name="easeOut" object="[fl.motion.easing.Back]" text="Back.easeOut(%t:Number,b:Number,c:Number,d:Number[,s:Number=0]%):Number" static="true" tiptext="The easeOut() method starts the motion by moving towards the target, overshooting it slightly, and then reversing direction back toward the target." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Back.html#easeOut()"/>
                <string name="easeInOut" object="[fl.motion.easing.Back]" text="Back.easeInOut(%t:Number,b:Number,c:Number,d:Number[,s:Number=0]%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion by backtracking, then reversing direction and moving toward the target, overshooting the target slightly, reversing direction again, and then moving back toward the target." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Back.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Bounce" id="[fl.motion.easing.Bounce]" sort="true" index="true" asAncestors="Object" tiptext="The Bounce class defines three easing functions to implement bouncing motion with ActionScript animation, similar to a ball falling and bouncing on a floor with several decaying rebounds." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Bounce.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Bounce" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Bounce.html">
                <string name="easeOut" object="[fl.motion.easing.Bounce]" text="Bounce.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method starts the bounce motion fast and then decelerates motion as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Bounce.html#easeOut()"/>
                <string name="easeIn" object="[fl.motion.easing.Bounce]" text="Bounce.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method starts the bounce motion slowly and then accelerates motion as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Bounce.html#easeIn()"/>
                <string name="easeInOut" object="[fl.motion.easing.Bounce]" text="Bounce.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the bounce motion slowly, accelerate motion, then decelerate." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Bounce.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Circular" id="[fl.motion.easing.Circular]" sort="true" index="true" asAncestors="Object" tiptext="The Circular class defines three easing functions to implement motion with ActionScript animation." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Circular.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Circular" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Circular.html">
                <string name="easeIn" object="[fl.motion.easing.Circular]" text="Circular.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method starts motion from zero velocity and then accelerates motion as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Circular.html#easeIn()"/>
                <string name="easeOut" object="[fl.motion.easing.Circular]" text="Circular.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method starts motion fast and then decelerates motion to a zero velocity as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Circular.html#easeOut()"/>
                <string name="easeInOut" object="[fl.motion.easing.Circular]" text="Circular.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion from a zero velocity, accelerate motion, then decelerate to a zero velocity." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Circular.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Cubic" id="[fl.motion.easing.Cubic]" sort="true" index="true" asAncestors="Object" tiptext="The Cubic class defines three easing functions to implement motion with ActionScript animation." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Cubic.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Cubic" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Cubic.html">
                <string name="easeIn" object="[fl.motion.easing.Cubic]" text="Cubic.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method starts motion from zero velocity and then accelerates motion as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Cubic.html#easeIn()"/>
                <string name="easeOut" object="[fl.motion.easing.Cubic]" text="Cubic.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method starts motion fast and then decelerates motion to a zero velocity as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Cubic.html#easeOut()"/>
                <string name="easeInOut" object="[fl.motion.easing.Cubic]" text="Cubic.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion from a zero velocity, accelerate motion, then decelerate to a zero velocity." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Cubic.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Elastic" id="[fl.motion.easing.Elastic]" sort="true" index="true" asAncestors="Object" tiptext="The Elastic class defines three easing functions to implement motion with ActionScript animation, where the motion is defined by an exponentially decaying sine wave." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Elastic.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Elastic" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Elastic.html">
                <string name="easeIn" object="[fl.motion.easing.Elastic]" text="Elastic.easeIn(%t:Number,b:Number,c:Number,d:Number[,a:Number=0,p:Number=0]%):Number" static="true" tiptext="The easeIn() method starts motion slowly and then accelerates motion as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Elastic.html#easeIn()"/>
                <string name="easeOut" object="[fl.motion.easing.Elastic]" text="Elastic.easeOut(%t:Number,b:Number,c:Number,d:Number[,a:Number=0,p:Number=0]%):Number" static="true" tiptext="The easeOut() method starts motion fast and then decelerates motion as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Elastic.html#easeOut()"/>
                <string name="easeInOut" object="[fl.motion.easing.Elastic]" text="Elastic.easeInOut(%t:Number,b:Number,c:Number,d:Number[,a:Number=0,p:Number=0]%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion slowly, accelerate motion, then decelerate." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Elastic.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Exponential" id="[fl.motion.easing.Exponential]" sort="true" index="true" asAncestors="Object" tiptext="The Exponential class defines three easing functions to implement motion with ActionScript animation." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Exponential.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Exponential" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Exponential.html">
                <string name="easeIn" object="[fl.motion.easing.Exponential]" text="Exponential.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method starts motion slowly and then accelerates motion as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Exponential.html#easeIn()"/>
                <string name="easeOut" object="[fl.motion.easing.Exponential]" text="Exponential.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method starts motion fast and then decelerates motion to a zero velocity as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Exponential.html#easeOut()"/>
                <string name="easeInOut" object="[fl.motion.easing.Exponential]" text="Exponential.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion from a zero velocity, accelerate motion, then decelerate to a zero velocity." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Exponential.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Linear" id="[fl.motion.easing.Linear]" sort="true" index="true" asAncestors="Object" tiptext="The Linear class defines easing functions to implement non-accelerated motion with ActionScript animations." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Linear.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Linear" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Linear.html">
                <string name="easeNone" object="[fl.motion.easing.Linear]" text="Linear.easeNone(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeNone() method defines a constant motion with no acceleration." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Linear.html#easeNone()"/>
                <string name="easeIn" object="[fl.motion.easing.Linear]" text="Linear.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method defines a constant motion with no acceleration." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Linear.html#easeIn()"/>
                <string name="easeOut" object="[fl.motion.easing.Linear]" text="Linear.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method defines a constant motion with no acceleration." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Linear.html#easeOut()"/>
                <string name="easeInOut" object="[fl.motion.easing.Linear]" text="Linear.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method defines a constant motion with no acceleration." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Linear.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Quadratic" id="[fl.motion.easing.Quadratic]" sort="true" index="true" asAncestors="Object" tiptext="The Quadratic class defines three easing functions to implement accelerated motion with ActionScript animations." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quadratic.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Quadratic" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quadratic.html">
                <string name="easeIn" object="[fl.motion.easing.Quadratic]" text="Quadratic.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method starts motion from a zero velocity and then accelerates motion as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quadratic.html#easeIn()"/>
                <string name="easeOut" object="[fl.motion.easing.Quadratic]" text="Quadratic.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method starts motion fast and then decelerates motion to a zero velocity as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quadratic.html#easeOut()"/>
                <string name="easeInOut" object="[fl.motion.easing.Quadratic]" text="Quadratic.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion from a zero velocity, accelerate motion, then decelerate to a zero velocity." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quadratic.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Quartic" id="[fl.motion.easing.Quartic]" sort="true" index="true" asAncestors="Object" tiptext="The Quartic class defines three easing functions to implement motion with ActionScript animation." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quartic.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Quartic" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quartic.html">
                <string name="easeIn" object="[fl.motion.easing.Quartic]" text="Quartic.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method starts motion from zero velocity and then accelerates motion as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quartic.html#easeIn()"/>
                <string name="easeOut" object="[fl.motion.easing.Quartic]" text="Quartic.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method starts motion fast and then decelerates motion to a zero velocity as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quartic.html#easeOut()"/>
                <string name="easeInOut" object="[fl.motion.easing.Quartic]" text="Quartic.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion from a zero velocity, accelerate motion, then decelerate to a zero velocity." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quartic.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Quintic" id="[fl.motion.easing.Quintic]" sort="true" index="true" asAncestors="Object" tiptext="The Quintic class defines three easing functions to implement motion with ActionScript animation." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quintic.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Quintic" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quintic.html">
                <string name="easeIn" object="[fl.motion.easing.Quintic]" text="Quintic.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method starts motion from zero velocity and then accelerates motion as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quintic.html#easeIn()"/>
                <string name="easeOut" object="[fl.motion.easing.Quintic]" text="Quintic.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method starts motion fast and then decelerates motion to a zero velocity as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quintic.html#easeOut()"/>
                <string name="easeInOut" object="[fl.motion.easing.Quintic]" text="Quintic.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion from a zero velocity, accelerate motion, then decelerate to a zero velocity." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Quintic.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Sine" id="[fl.motion.easing.Sine]" sort="true" index="true" asAncestors="Object" tiptext="The Sine class defines three easing functions to implement motion with ActionScript animation." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Sine.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Sine" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Sine.html">
                <string name="easeIn" object="[fl.motion.easing.Sine]" text="Sine.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method starts motion from zero velocity and then accelerates motion as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Sine.html#easeIn()"/>
                <string name="easeOut" object="[fl.motion.easing.Sine]" text="Sine.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method starts motion fast and then decelerates motion to a zero velocity as it executes." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Sine.html#easeOut()"/>
                <string name="easeInOut" object="[fl.motion.easing.Sine]" text="Sine.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion from a zero velocity, accelerate motion, then decelerate to a zero velocity." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/motion/easing/Sine.html#easeInOut()"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.transitions" id="fl.transitions" sort="true" tiptext="Classes for package fl.transitions" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/package-detail.html">
        <folder name="Iris" id="[fl.transitions.Iris]" sort="true" index="true" asAncestors="fl.transitions:Transition,flash.events:EventDispatcher,Object" tiptext="The Iris class reveals the movie clip object by using an animated mask of a square shape or a circle shape that zooms in or out." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Iris.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class Iris" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Iris.html">
                <string name="SQUARE" object="[fl.transitions.Iris]" text="Iris.SQUARE" constant="true" tiptext="Used to specify a square mask shape for the transition effect." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Iris.html#SQUARE"/>
                <string name="CIRCLE" object="[fl.transitions.Iris]" text="Iris.CIRCLE" constant="true" tiptext="Used to specify a circle mask shape for the transition effect." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Iris.html#CIRCLE"/>
            </folder>
        </folder>
        <folder name="Transition" id="[fl.transitions.Transition]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The Transition class is the base class for all transition classes." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Transition.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class Transition" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Transition.html">
                <string name="IN" object="[fl.transitions.Transition]" text="Transition.IN" constant="true" tiptext="Constant for the direction property that determines the type of easing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Transition.html#IN"/>
                <string name="OUT" object="[fl.transitions.Transition]" text="Transition.OUT" constant="true" tiptext="Constant for the direction property that determines the type of easing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Transition.html#OUT"/>
                <string name="direction" object="[fl.transitions.Transition]" text=".direction" tiptext="Determines the easing direction for the Tween instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Transition.html#direction"/>
                <string name="duration" object="[fl.transitions.Transition]" text=".duration" tiptext="Determines the length of time for the Tween instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Transition.html#duration"/>
                <string name="easing" object="[fl.transitions.Transition]" text=".easing" tiptext="Sets the tweening effect for the animation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Transition.html#easing"/>
            </folder>
        </folder>
        <folder name="TransitionManager" id="[fl.transitions.TransitionManager]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The TransitionManager class defines animation effects." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TransitionManager.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TransitionManager" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TransitionManager.html">
                <string name="TransitionManager" object="[fl.transitions.TransitionManager]" text="new TransitionManager(%content:flash.display:MovieClip%)" constructor="true" tiptext="Constructor function for creating a new TransitionManager instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TransitionManager.html#TransitionManager()"/>
                <string name="start" object="[fl.transitions.TransitionManager]" text="TransitionManager.start(%content:flash.display:MovieClip,transParams:Object%):fl.transitions:Transition" static="true" tiptext="Creates a new TransitionManager instance, designates the target object, applies a transition, and starts the transition." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TransitionManager.html#start()"/>
                <string name="startTransition" object="[fl.transitions.TransitionManager]" text=".startTransition(%transParams:Object%):fl.transitions:Transition" tiptext="Creates a transition instance and starts it." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TransitionManager.html#startTransition()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TransitionManager" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TransitionManager.html">
                <string name="content" object="[fl.transitions.TransitionManager]" text=".content" tiptext="The movie clip instance to which TransitionManager is to apply a transition." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TransitionManager.html#content"/>
                <string name="contentAppearance" object="[fl.transitions.TransitionManager]" text=".contentAppearance" tiptext="An object that contains the saved visual properties of the content (target movie clip) to which the transitions will be applied." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TransitionManager.html#contentAppearance"/>
            </folder>
        </folder>
        <folder name="Tween" id="[fl.transitions.Tween]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The Tween class lets you use ActionScript to move, resize, and fade movie clips by specifying a property of the target movie clip to animate over a number of frames or seconds." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Tween" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html">
                <string name="Tween" object="[fl.transitions.Tween]" text="new Tween(%obj:Object,prop:String,func:Function,begin:Number,finish:Number,duration:Number[,useSeconds:Boolean=false]%)" constructor="true" tiptext="Creates an instance of the Tween class." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#Tween()"/>
                <string name="continueTo" object="[fl.transitions.Tween]" text=".continueTo(%finish:Number,duration:Number%):void" tiptext="Instructs the tweened animation to continue tweening from its current animation point to a new finish and duration point." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#continueTo()"/>
                <string name="yoyo" object="[fl.transitions.Tween]" text=".yoyo(%%):void" tiptext="Instructs the tweened animation to play in reverse from its last direction of tweened property increments." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#yoyo()"/>
                <string name="start" object="[fl.transitions.Tween]" text=".start(%%):void" tiptext="Starts the play of a tweened animation from its starting point." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#start()"/>
                <string name="stop" object="[fl.transitions.Tween]" text=".stop(%%):void" tiptext="Stops the play of a tweened animation at its current value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#stop()"/>
                <string name="resume" object="[fl.transitions.Tween]" text=".resume(%%):void" tiptext="Resumes the play of a tweened animation that has been stopped." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#resume()"/>
                <string name="rewind" object="[fl.transitions.Tween]" text=".rewind(%[t:Number=0]%):void" tiptext="Moves the play of a tweened animation back to its starting value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#rewind()"/>
                <string name="fforward" object="[fl.transitions.Tween]" text=".fforward(%%):void" tiptext="Forwards the tweened animation directly to the final value of the tweened animation." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#fforward()"/>
                <string name="nextFrame" object="[fl.transitions.Tween]" text=".nextFrame(%%):void" tiptext="Forwards the tweened animation to the next frame of an animation that was stopped." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#nextFrame()"/>
                <string name="prevFrame" object="[fl.transitions.Tween]" text=".prevFrame(%%):void" tiptext="Plays the previous frame of the tweened animation from the current stopping point of an animation that was stopped." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#prevFrame()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Tween" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html">
                <string name="isPlaying" object="[fl.transitions.Tween]" text=".isPlaying" tiptext="Indicates whether the tween is currently playing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#isPlaying"/>
                <string name="obj" object="[fl.transitions.Tween]" text=".obj" tiptext="The target object that is being tweened." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#obj"/>
                <string name="prop" object="[fl.transitions.Tween]" text=".prop" tiptext="The name of the property affected by the tween of the target object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#prop"/>
                <string name="func" object="[fl.transitions.Tween]" text=".func" tiptext="The easing function which is used with the tween." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#func"/>
                <string name="begin" object="[fl.transitions.Tween]" text=".begin" tiptext="The initial value of the target object&apos;s designated property before the tween starts." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#begin"/>
                <string name="useSeconds" object="[fl.transitions.Tween]" text=".useSeconds" tiptext="Indicates whether the tween plays over a period of frames or seconds." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#useSeconds"/>
                <string name="looping" object="[fl.transitions.Tween]" text=".looping" tiptext="Indicates whether the tween will loop." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#looping"/>
                <string name="time" object="[fl.transitions.Tween]" text=".time" tiptext="The current time within the duration of the animation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#time"/>
                <string name="duration" object="[fl.transitions.Tween]" text=".duration" tiptext="The duration of the tweened animation in frames or seconds." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#duration"/>
                <string name="FPS" object="[fl.transitions.Tween]" text=".FPS" tiptext="The number of frames per second calculated into the tweened animation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#FPS"/>
                <string name="position" object="[fl.transitions.Tween]" text=".position" tiptext="The current value of the target object property being tweened." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#position"/>
                <string name="finish" object="[fl.transitions.Tween]" text=".finish" tiptext="A number indicating the ending value of the target object property that is to be tweened." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#finish"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class Tween" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html">
                <string name="motionStop" object="[fl.transitions.Tween]" text=".addEventListener(%type:String=TweenEvent.MOTION_STOP{TweenEvent.MOTION_STOP,TweenEvent.MOTION_START,TweenEvent.MOTION_RESUME,TweenEvent.MOTION_LOOP,TweenEvent.MOTION_FINISH,TweenEvent.MOTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Indicates that the Tween has been stopped with an explicit call to Tween.stop()." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#event:motionStop"/>
                <string name="motionStart" object="[fl.transitions.Tween]" text=".addEventListener(%type:String=TweenEvent.MOTION_START{TweenEvent.MOTION_STOP,TweenEvent.MOTION_START,TweenEvent.MOTION_RESUME,TweenEvent.MOTION_LOOP,TweenEvent.MOTION_FINISH,TweenEvent.MOTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Indicates that the motion has started playing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#event:motionStart"/>
                <string name="motionResume" object="[fl.transitions.Tween]" text=".addEventListener(%type:String=TweenEvent.MOTION_RESUME{TweenEvent.MOTION_STOP,TweenEvent.MOTION_START,TweenEvent.MOTION_RESUME,TweenEvent.MOTION_LOOP,TweenEvent.MOTION_FINISH,TweenEvent.MOTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Indicates that the Tween has resumed playing after being paused." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#event:motionResume"/>
                <string name="motionLoop" object="[fl.transitions.Tween]" text=".addEventListener(%type:String=TweenEvent.MOTION_LOOP{TweenEvent.MOTION_STOP,TweenEvent.MOTION_START,TweenEvent.MOTION_RESUME,TweenEvent.MOTION_LOOP,TweenEvent.MOTION_FINISH,TweenEvent.MOTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Indicates that the Tween has restarted playing from the beginning in looping mode." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#event:motionLoop"/>
                <string name="motionFinish" object="[fl.transitions.Tween]" text=".addEventListener(%type:String=TweenEvent.MOTION_FINISH{TweenEvent.MOTION_STOP,TweenEvent.MOTION_START,TweenEvent.MOTION_RESUME,TweenEvent.MOTION_LOOP,TweenEvent.MOTION_FINISH,TweenEvent.MOTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Indicates that the Tween has reached the end and finished." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#event:motionFinish"/>
                <string name="motionChange" object="[fl.transitions.Tween]" text=".addEventListener(%type:String=TweenEvent.MOTION_CHANGE{TweenEvent.MOTION_STOP,TweenEvent.MOTION_START,TweenEvent.MOTION_RESUME,TweenEvent.MOTION_LOOP,TweenEvent.MOTION_FINISH,TweenEvent.MOTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Indicates that the Tween has changed and the screen has been updated." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/Tween.html#event:motionChange"/>
            </folder>
        </folder>
        <folder name="TweenEvent" id="[fl.transitions.TweenEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="The TweenEvent class represents events that are broadcast by the fl.transitions.Tween class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TweenEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TweenEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TweenEvent.html">
                <string name="TweenEvent" object="[fl.transitions.TweenEvent]" text="new TweenEvent(%type:String,time:Number,position:Number[,bubbles:Boolean=false,cancelable:Boolean=false]%)" constructor="true" tiptext="Constructor function for a TweenEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TweenEvent.html#TweenEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TweenEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TweenEvent.html">
                <string name="MOTION_START" object="[fl.transitions.TweenEvent]" text="TweenEvent.MOTION_START" constant="true" tiptext="Indicates that the motion has started playing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TweenEvent.html#MOTION_START"/>
                <string name="MOTION_STOP" object="[fl.transitions.TweenEvent]" text="TweenEvent.MOTION_STOP" constant="true" tiptext="Indicates that the Tween has been stopped with an explicit call to Tween.stop()." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TweenEvent.html#MOTION_STOP"/>
                <string name="MOTION_FINISH" object="[fl.transitions.TweenEvent]" text="TweenEvent.MOTION_FINISH" constant="true" tiptext="Indicates that the Tween has reached the end and finished." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TweenEvent.html#MOTION_FINISH"/>
                <string name="MOTION_CHANGE" object="[fl.transitions.TweenEvent]" text="TweenEvent.MOTION_CHANGE" constant="true" tiptext="Indicates that the Tween has changed and the screen has been updated." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TweenEvent.html#MOTION_CHANGE"/>
                <string name="MOTION_RESUME" object="[fl.transitions.TweenEvent]" text="TweenEvent.MOTION_RESUME" constant="true" tiptext="Indicates that the Tween has resumed playing after being paused." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TweenEvent.html#MOTION_RESUME"/>
                <string name="MOTION_LOOP" object="[fl.transitions.TweenEvent]" text="TweenEvent.MOTION_LOOP" constant="true" tiptext="Indicates that the Tween has restarted playing from the beginning in looping mode." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TweenEvent.html#MOTION_LOOP"/>
                <string name="time" object="[fl.transitions.TweenEvent]" text=".time" tiptext="The time of the Tween when the event occurred." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TweenEvent.html#time"/>
                <string name="position" object="[fl.transitions.TweenEvent]" text=".position" tiptext="The value of the property controlled by the Tween, when the event occurred." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/TweenEvent.html#position"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.transitions.easing" id="fl.transitions.easing" sort="true" tiptext="Classes for package fl.transitions.easing" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/package-detail.html">
        <folder name="Back" id="[fl.transitions.easing.Back]" sort="true" index="true" asAncestors="Object" tiptext="The Back class defines three easing functions to implement motion with ActionScript animations." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Back.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Back" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Back.html">
                <string name="easeIn" object="[fl.transitions.easing.Back]" text="Back.easeIn(%t:Number,b:Number,c:Number,d:Number[,s:Number=0]%):Number" static="true" tiptext="The easeIn() method starts the motion by backtracking and then reversing direction and moving toward the target." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Back.html#easeIn()"/>
                <string name="easeOut" object="[fl.transitions.easing.Back]" text="Back.easeOut(%t:Number,b:Number,c:Number,d:Number[,s:Number=0]%):Number" static="true" tiptext="The easeOut() method starts the motion by moving towards the target, overshooting it slightly, and then reversing direction back toward the target." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Back.html#easeOut()"/>
                <string name="easeInOut" object="[fl.transitions.easing.Back]" text="Back.easeInOut(%t:Number,b:Number,c:Number,d:Number[,s:Number=0]%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion by backtracking, then reversing direction and moving toward the target, overshooting the target slightly, reversing direction again, and then moving back toward the target." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Back.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Bounce" id="[fl.transitions.easing.Bounce]" sort="true" index="true" asAncestors="Object" tiptext="The Bounce class defines three easing functions to implement bouncing motion with ActionScript animation, similar to a ball falling and bouncing on a floor with several decaying rebounds." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Bounce.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Bounce" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Bounce.html">
                <string name="easeOut" object="[fl.transitions.easing.Bounce]" text="Bounce.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method starts the bounce motion fast and then decelerates motion as it executes." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Bounce.html#easeOut()"/>
                <string name="easeIn" object="[fl.transitions.easing.Bounce]" text="Bounce.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method starts the bounce motion slowly and then accelerates motion as it executes." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Bounce.html#easeIn()"/>
                <string name="easeInOut" object="[fl.transitions.easing.Bounce]" text="Bounce.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the bounce motion slowly, accelerate motion, then decelerate." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Bounce.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Elastic" id="[fl.transitions.easing.Elastic]" sort="true" index="true" asAncestors="Object" tiptext="The Elastic class defines three easing functions to implement motion with ActionScript animation, where the motion is defined by an exponentially decaying sine wave." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Elastic.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Elastic" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Elastic.html">
                <string name="easeIn" object="[fl.transitions.easing.Elastic]" text="Elastic.easeIn(%t:Number,b:Number,c:Number,d:Number[,a:Number=0,p:Number=0]%):Number" static="true" tiptext="The easeIn() method starts motion slowly and then accelerates motion as it executes." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Elastic.html#easeIn()"/>
                <string name="easeOut" object="[fl.transitions.easing.Elastic]" text="Elastic.easeOut(%t:Number,b:Number,c:Number,d:Number[,a:Number=0,p:Number=0]%):Number" static="true" tiptext="The easeOut() method starts motion fast and then decelerates motion as it executes." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Elastic.html#easeOut()"/>
                <string name="easeInOut" object="[fl.transitions.easing.Elastic]" text="Elastic.easeInOut(%t:Number,b:Number,c:Number,d:Number[,a:Number=0,p:Number=0]%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion slowly, accelerate motion, then decelerate." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Elastic.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="None" id="[fl.transitions.easing.None]" sort="true" index="true" asAncestors="Object" tiptext="The None class defines easing functions to implement nonaccelerated motion with ActionScript animations." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/None.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class None" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/None.html">
                <string name="easeNone" object="[fl.transitions.easing.None]" text="None.easeNone(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeNone() method defines a constant motion, with no acceleration." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/None.html#easeNone()"/>
                <string name="easeIn" object="[fl.transitions.easing.None]" text="None.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method defines a constant motion, with no acceleration." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/None.html#easeIn()"/>
                <string name="easeOut" object="[fl.transitions.easing.None]" text="None.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method defines a constant motion, with no acceleration." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/None.html#easeOut()"/>
                <string name="easeInOut" object="[fl.transitions.easing.None]" text="None.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method defines a constant motion, with no acceleration." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/None.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Regular" id="[fl.transitions.easing.Regular]" sort="true" index="true" asAncestors="Object" tiptext="The Regular class defines three easing functions to implement accelerated motion with ActionScript animations." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Regular.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Regular" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Regular.html">
                <string name="easeIn" object="[fl.transitions.easing.Regular]" text="Regular.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method starts motion from a zero velocity and then accelerates motion as it executes." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Regular.html#easeIn()"/>
                <string name="easeOut" object="[fl.transitions.easing.Regular]" text="Regular.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method starts motion fast and then decelerates motion to a zero velocity as it executes." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Regular.html#easeOut()"/>
                <string name="easeInOut" object="[fl.transitions.easing.Regular]" text="Regular.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion from a zero velocity, accelerate motion, then decelerate to a zero velocity." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Regular.html#easeInOut()"/>
            </folder>
        </folder>
        <folder name="Strong" id="[fl.transitions.easing.Strong]" sort="true" index="true" asAncestors="Object" tiptext="The Strong class defines three easing functions to implement motion with ActionScript animation." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Strong.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Strong" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Strong.html">
                <string name="easeIn" object="[fl.transitions.easing.Strong]" text="Strong.easeIn(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeIn() method starts motion from zero velocity and then accelerates motion as it executes." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Strong.html#easeIn()"/>
                <string name="easeOut" object="[fl.transitions.easing.Strong]" text="Strong.easeOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeOut() method starts motion fast and then decelerates motion to a zero velocity as it executes." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Strong.html#easeOut()"/>
                <string name="easeInOut" object="[fl.transitions.easing.Strong]" text="Strong.easeInOut(%t:Number,b:Number,c:Number,d:Number%):Number" static="true" tiptext="The easeInOut() method combines the motion of the easeIn() and easeOut() methods to start the motion from a zero velocity, accelerate motion, then decelerate to a zero velocity." version="9.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/transitions/easing/Strong.html#easeInOut()"/>
            </folder>
        </folder>
    </folder>
        <folder name="fl.video" id="fl.video" sort="true" tiptext="Classes for package fl.video" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/package-detail.html">
        <folder name="AutoLayoutEvent" id="[fl.video.AutoLayoutEvent]" sort="true" index="true" asAncestors="fl.video:LayoutEvent,flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches an AutoLayoutEvent object when the video player is resized and laid out automatically." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/AutoLayoutEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class AutoLayoutEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/AutoLayoutEvent.html">
                <string name="AutoLayoutEvent" object="[fl.video.AutoLayoutEvent]" text="new AutoLayoutEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,oldBounds:flash.geom:Rectangle=null,oldRegistrationBounds:flash.geom:Rectangle=null,vp:uint=0]%)" constructor="true" tiptext="Creates an Event object that contains information about autoLayout events." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/AutoLayoutEvent.html#AutoLayoutEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class AutoLayoutEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/AutoLayoutEvent.html">
                <string name="AUTO_LAYOUT" object="[fl.video.AutoLayoutEvent]" text="AutoLayoutEvent.AUTO_LAYOUT" constant="true" tiptext="Defines the value of the type property of an autoLayout event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/AutoLayoutEvent.html#AUTO_LAYOUT"/>
                <string name="vp" object="[fl.video.AutoLayoutEvent]" text=".vp" tiptext="The index of the VideoPlayer object involved in this event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/AutoLayoutEvent.html#vp"/>
            </folder>
        </folder>
        <folder name="CaptionChangeEvent" id="[fl.video.CaptionChangeEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="The CaptionChangeEvent is dispatched any time a caption is added or removed from the caption target text field." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionChangeEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class CaptionChangeEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionChangeEvent.html">
                <string name="CaptionChangeEvent" object="[fl.video.CaptionChangeEvent]" text="new CaptionChangeEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,added:Boolean=true,captionCuePointObject:Object=null]%)" constructor="true" tiptext="Creates an Event object that contains information about captionChange events." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionChangeEvent.html#CaptionChangeEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class CaptionChangeEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionChangeEvent.html">
                <string name="CAPTION_CHANGE" object="[fl.video.CaptionChangeEvent]" text="CaptionChangeEvent.CAPTION_CHANGE" constant="true" tiptext="Defines the value of the type property of a captionChange event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionChangeEvent.html#CAPTION_CHANGE"/>
                <string name="added" object="[fl.video.CaptionChangeEvent]" text=".added" tiptext="A Boolean value that determines whether the caption was added or removed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionChangeEvent.html#added"/>
                <string name="captionCuePointObject" object="[fl.video.CaptionChangeEvent]" text=".captionCuePointObject" tiptext="The cue point object for the caption that was added or removed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionChangeEvent.html#captionCuePointObject"/>
            </folder>
        </folder>
        <folder name="CaptionTargetEvent" id="[fl.video.CaptionTargetEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Type for the captionTargetCreated event, dispatched after the captionTargetCreated event is created automatically and before any captions have been added to it." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionTargetEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class CaptionTargetEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionTargetEvent.html">
                <string name="CaptionTargetEvent" object="[fl.video.CaptionTargetEvent]" text="new CaptionTargetEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,captionTarget:flash.display:DisplayObject=null]%)" constructor="true" tiptext="Creates an Event object that contains information about caption target events." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionTargetEvent.html#CaptionTargetEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class CaptionTargetEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionTargetEvent.html">
                <string name="CAPTION_TARGET_CREATED" object="[fl.video.CaptionTargetEvent]" text="CaptionTargetEvent.CAPTION_TARGET_CREATED" constant="true" tiptext="The CaptionTargetEvent.CAPTION_TARGET_CREATED constant defines the value of the type property of a captionTargetCreated event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionTargetEvent.html#CAPTION_TARGET_CREATED"/>
                <string name="captionTarget" object="[fl.video.CaptionTargetEvent]" text=".captionTarget" tiptext="The caption target from the FLVPlaybackCaptioning instance property of the same name." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CaptionTargetEvent.html#captionTarget"/>
            </folder>
        </folder>
        <folder name="CuePointType" id="[fl.video.CuePointType]" sort="true" index="true" asAncestors="Object" tiptext="The CuePointType class provides constant values for the type property on the info object of a MetadataEvent instance of type CUE_POINT." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CuePointType.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class CuePointType" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CuePointType.html">
                <string name="ALL" object="[fl.video.CuePointType]" text="CuePointType.ALL" constant="true" tiptext="Defines the value of the type parameter of the findCuePoint() and findNearestCuePoint() methods." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CuePointType.html#ALL"/>
                <string name="EVENT" object="[fl.video.CuePointType]" text="CuePointType.EVENT" constant="true" tiptext="Defines the value of the type parameter of the findCuePoint() and findNearestCuePoint() methods." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CuePointType.html#EVENT"/>
                <string name="NAVIGATION" object="[fl.video.CuePointType]" text="CuePointType.NAVIGATION" constant="true" tiptext="Defines the value of the type parameter of the findCuePoint() and findNearestCuePoint() methods." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CuePointType.html#NAVIGATION"/>
                <string name="FLV" object="[fl.video.CuePointType]" text="CuePointType.FLV" constant="true" tiptext="Defines the value of the type parameter of the findCuePoint() and findNearestCuePoint() methods." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CuePointType.html#FLV"/>
                <string name="ACTIONSCRIPT" object="[fl.video.CuePointType]" text="CuePointType.ACTIONSCRIPT" constant="true" tiptext="Defines the value of the type parameter of the findCuePoint() and findNearestCuePoint() methods." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/CuePointType.html#ACTIONSCRIPT"/>
            </folder>
        </folder>
        <folder name="FLVPlayback" id="[fl.video.FLVPlayback]" sort="true" index="true" asAncestors="flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="FLVPlayback extends the Sprite class and wraps a VideoPlayer object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class FLVPlayback" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html">
                <string name="FLVPlayback" object="[fl.video.FLVPlayback]" text="new FLVPlayback(%%)" constructor="true" tiptext="FLVPlayback constructor" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#FLVPlayback()"/>
                <string name="setSize" object="[fl.video.FLVPlayback]" text=".setSize(%width:Number,height:Number%):void" tiptext="setSize method" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#setSize()"/>
                <string name="setScale" object="[fl.video.FLVPlayback]" text=".setScale(%scaleX:Number,scaleY:Number%):void" tiptext="setScale method" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#setScale()"/>
                <string name="load" object="[fl.video.FLVPlayback]" text=".load(%source:String[,totalTime:Number=unknown,isLive:Boolean=false]%):void" tiptext="load method" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#load()"/>
                <string name="play" object="[fl.video.FLVPlayback]" text=".play(%[source:String=null,totalTime:Number=unknown,isLive:Boolean=false]%):void" tiptext="play method" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#play()"/>
                <string name="playWhenEnoughDownloaded" object="[fl.video.FLVPlayback]" text=".playWhenEnoughDownloaded(%%):void" tiptext="playWhenEnoughDownloaded method" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#playWhenEnoughDownloaded()"/>
                <string name="pause" object="[fl.video.FLVPlayback]" text=".pause(%%):void" tiptext="pause method" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#pause()"/>
                <string name="stop" object="[fl.video.FLVPlayback]" text=".stop(%%):void" tiptext="stop method" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#stop()"/>
                <string name="seek" object="[fl.video.FLVPlayback]" text=".seek(%time:Number%):void" tiptext="seek method" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#seek()"/>
                <string name="seekSeconds" object="[fl.video.FLVPlayback]" text=".seekSeconds(%time:Number%):void" tiptext="seekSeconds method" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#seekSeconds()"/>
                <string name="seekPercent" object="[fl.video.FLVPlayback]" text=".seekPercent(%percent:Number%):void" tiptext="seekPercent method" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#seekPercent()"/>
                <string name="seekToNavCuePoint" object="[fl.video.FLVPlayback]" text=".seekToNavCuePoint(%timeNameOrCuePoint:*%):void" tiptext="Seeks to a navigation cue point that matches the specified time, name, or time and name." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#seekToNavCuePoint()"/>
                <string name="seekToNextNavCuePoint" object="[fl.video.FLVPlayback]" text=".seekToNextNavCuePoint(%[time:Number=unknown]%):void" tiptext="Seeks to the next navigation cue point, based on the current value of the playheadTime property." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#seekToNextNavCuePoint()"/>
                <string name="seekToPrevNavCuePoint" object="[fl.video.FLVPlayback]" text=".seekToPrevNavCuePoint(%[time:Number=unknown]%):void" tiptext="Seeks to the previous navigation cue point, based on the current value of the playheadTime property." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#seekToPrevNavCuePoint()"/>
                <string name="addASCuePoint" object="[fl.video.FLVPlayback]" text=".addASCuePoint(%timeOrCuePoint:*[,name:String=null,parameters:Object=null]%):Object" tiptext="Adds an ActionScript cue point and has the same effect as adding an ActionScript cue point using the Cue Points dialog box, except that it occurs when an application executes rather than during application development." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#addASCuePoint()"/>
                <string name="removeASCuePoint" object="[fl.video.FLVPlayback]" text=".removeASCuePoint(%timeNameOrCuePoint:*%):Object" tiptext="Removes an ActionScript cue point from the currently loaded FLV file." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#removeASCuePoint()"/>
                <string name="findCuePoint" object="[fl.video.FLVPlayback]" text=".findCuePoint(%timeNameOrCuePoint:*[,type:String=unknown]%):Object" tiptext="Finds the cue point of the type specified by the type parameter and having the time, name, or combination of time and name that you specify through the parameters." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#findCuePoint()"/>
                <string name="findNearestCuePoint" object="[fl.video.FLVPlayback]" text=".findNearestCuePoint(%timeNameOrCuePoint:*[,type:String=unknown]%):Object" tiptext="Finds a cue point of the specified type that matches or is earlier than the time that you specify." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#findNearestCuePoint()"/>
                <string name="findNextCuePointWithName" object="[fl.video.FLVPlayback]" text=".findNextCuePointWithName(%cuePoint:Object%):Object" tiptext="Finds the next cue point in my_cuePoint.array that has the same name as my_cuePoint.name." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#findNextCuePointWithName()"/>
                <string name="setFLVCuePointEnabled" object="[fl.video.FLVPlayback]" text=".setFLVCuePointEnabled(%enabled:Boolean,timeNameOrCuePoint:*%):Number" tiptext="Enables or disables one or more FLV file cue points." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#setFLVCuePointEnabled()"/>
                <string name="isFLVCuePointEnabled" object="[fl.video.FLVPlayback]" text=".isFLVCuePointEnabled(%timeNameOrCuePoint:*%):Boolean" tiptext="Returns false if the FLV file embedded cue point is disabled." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#isFLVCuePointEnabled()"/>
                <string name="bringVideoPlayerToFront" object="[fl.video.FLVPlayback]" text=".bringVideoPlayerToFront(%index:uint%):void" tiptext="Brings a video player to the front of the stack of video players." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#bringVideoPlayerToFront()"/>
                <string name="getVideoPlayer" object="[fl.video.FLVPlayback]" text=".getVideoPlayer(%index:Number%):fl.video:VideoPlayer" tiptext="Gets the video player specified by the index parameter." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#getVideoPlayer()"/>
                <string name="closeVideoPlayer" object="[fl.video.FLVPlayback]" text=".closeVideoPlayer(%index:uint%):void" tiptext="Closes NetStream and deletes the video player specified by the index parameter." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#closeVideoPlayer()"/>
                <string name="enterFullScreenDisplayState" object="[fl.video.FLVPlayback]" text=".enterFullScreenDisplayState(%%):void" tiptext="Sets the FLVPlayback video player to full screen." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#enterFullScreenDisplayState()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class FLVPlayback" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html">
                <string name="VERSION" object="[fl.video.FLVPlayback]" text="FLVPlayback.VERSION" constant="true" tiptext="State variable indicating the long version number of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#VERSION"/>
                <string name="SHORT_VERSION" object="[fl.video.FLVPlayback]" text="FLVPlayback.SHORT_VERSION" constant="true" tiptext="State variable indicating the short version number of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#SHORT_VERSION"/>
                <string name="playheadPercentage" object="[fl.video.FLVPlayback]" text=".playheadPercentage" tiptext="A number that specifies the current playheadTime as a percentage of the totalTime property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#playheadPercentage"/>
                <string name="preview" object="[fl.video.FLVPlayback]" text=".preview" tiptext="Only for live preview." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#preview"/>
                <string name="activeVideoPlayerIndex" object="[fl.video.FLVPlayback]" text=".activeVideoPlayerIndex" tiptext="A number that specifies which video player instance is affected by other application  programming interfaces (APIs)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#activeVideoPlayerIndex"/>
                <string name="align" object="[fl.video.FLVPlayback]" text=".align" tiptext="Specifies the video layout when the scaleMode property is set to VideoScaleMode.MAINTAIN_ASPECT_RATIO or VideoScaleMode.NO_SCALE." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#align"/>
                <string name="autoPlay" object="[fl.video.FLVPlayback]" text=".autoPlay" tiptext="A Boolean value that, if set to true, causes the FLV file to start playing automatically after the source property is set." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#autoPlay"/>
                <string name="autoRewind" object="[fl.video.FLVPlayback]" text=".autoRewind" tiptext="A Boolean value that, if true, causes the FLV file to rewind to Frame 1 when play stops, either because the player reached the end of the stream or the stop() method was called." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#autoRewind"/>
                <string name="bitrate" object="[fl.video.FLVPlayback]" text=".bitrate" tiptext="A number that specifies the bits per second at which to transfer the FLV file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#bitrate"/>
                <string name="buffering" object="[fl.video.FLVPlayback]" text=".buffering" tiptext="A Boolean value that is true if the video is in a buffering state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#buffering"/>
                <string name="bufferingBar" object="[fl.video.FLVPlayback]" text=".bufferingBar" tiptext="Buffering bar control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#bufferingBar"/>
                <string name="bufferingBarHidesAndDisablesOthers" object="[fl.video.FLVPlayback]" text=".bufferingBarHidesAndDisablesOthers" tiptext="If set to true, hides the SeekBar control and disables the Play, Pause, PlayPause, BackButton and ForwardButton controls while the FLV file is in the buffering state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#bufferingBarHidesAndDisablesOthers"/>
                <string name="backButton" object="[fl.video.FLVPlayback]" text=".backButton" tiptext="BackButton playback control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#backButton"/>
                <string name="bufferTime" object="[fl.video.FLVPlayback]" text=".bufferTime" tiptext="A number that specifies the number of seconds to buffer in memory before beginning to play a video stream." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#bufferTime"/>
                <string name="bytesLoaded" object="[fl.video.FLVPlayback]" text=".bytesLoaded" tiptext="A number that indicates the extent of downloading, in number of bytes, for an HTTP download." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#bytesLoaded"/>
                <string name="bytesTotal" object="[fl.video.FLVPlayback]" text=".bytesTotal" tiptext="A number that specifies the total number of bytes downloaded for an HTTP download." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#bytesTotal"/>
                <string name="source" object="[fl.video.FLVPlayback]" text=".source" tiptext="A string that specifies the URL of the FLV file to stream and how to stream it." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#source"/>
                <string name="cuePoints" object="[fl.video.FLVPlayback]" text=".cuePoints" tiptext="An array that describes ActionScript cue points and disabled embedded FLV file cue points." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#cuePoints"/>
                <string name="forwardButton" object="[fl.video.FLVPlayback]" text=".forwardButton" tiptext="Forward button control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#forwardButton"/>
                <string name="fullScreenBackgroundColor" object="[fl.video.FLVPlayback]" text=".fullScreenBackgroundColor" tiptext="Background color used when in full-screen takeover mode." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#fullScreenBackgroundColor"/>
                <string name="fullScreenButton" object="[fl.video.FLVPlayback]" text=".fullScreenButton" tiptext="FullScreen button control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#fullScreenButton"/>
                <string name="fullScreenSkinDelay" object="[fl.video.FLVPlayback]" text=".fullScreenSkinDelay" tiptext="Specifies the delay time in milliseconds to hide the skin." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#fullScreenSkinDelay"/>
                <string name="fullScreenTakeOver" object="[fl.video.FLVPlayback]" text=".fullScreenTakeOver" tiptext="When the stage enters full-screen mode, the FLVPlayback component is on top of all content and takes over the entire screen." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#fullScreenTakeOver"/>
                <string name="height" object="[fl.video.FLVPlayback]" text=".height" tiptext="A number that specifies the height of the FLVPlayback instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#height"/>
                <string name="idleTimeout" object="[fl.video.FLVPlayback]" text=".idleTimeout" tiptext="The amount of time, in milliseconds, before Flash terminates an idle connection to Flash Media Server (FMS) because playing paused or stopped." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#idleTimeout"/>
                <string name="isRTMP" object="[fl.video.FLVPlayback]" text=".isRTMP" tiptext="A Boolean value that is true if the FLV file is streaming from Flash Media Server (FMS) using RTMP." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#isRTMP"/>
                <string name="isLive" object="[fl.video.FLVPlayback]" text=".isLive" tiptext="A Boolean value that is true if the video stream is live." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#isLive"/>
                <string name="metadata" object="[fl.video.FLVPlayback]" text=".metadata" tiptext="An object that is a metadata information packet that is received from a call to the NetSteam.onMetaData() callback method, if available." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#metadata"/>
                <string name="metadataLoaded" object="[fl.video.FLVPlayback]" text=".metadataLoaded" tiptext="A Boolean value that is true if a metadata packet has been encountered and processed or if the FLV file was encoded without the metadata packet." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#metadataLoaded"/>
                <string name="muteButton" object="[fl.video.FLVPlayback]" text=".muteButton" tiptext="Mute button control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#muteButton"/>
                <string name="ncMgr" object="[fl.video.FLVPlayback]" text=".ncMgr" tiptext="An INCManager object that provides access to an instance of the class implementing INCManager, which is an interface to the NCManager class." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#ncMgr"/>
                <string name="pauseButton" object="[fl.video.FLVPlayback]" text=".pauseButton" tiptext="Pause button control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#pauseButton"/>
                <string name="paused" object="[fl.video.FLVPlayback]" text=".paused" tiptext="A Boolean value that is true if the FLV file is in a paused state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#paused"/>
                <string name="playButton" object="[fl.video.FLVPlayback]" text=".playButton" tiptext="Play button control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#playButton"/>
                <string name="playheadTime" object="[fl.video.FLVPlayback]" text=".playheadTime" tiptext="A number that is the current playhead time or position, measured in seconds, which can be a fractional value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#playheadTime"/>
                <string name="playheadUpdateInterval" object="[fl.video.FLVPlayback]" text=".playheadUpdateInterval" tiptext="A number that is the amount of time, in milliseconds, between each playheadUpdate event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#playheadUpdateInterval"/>
                <string name="playing" object="[fl.video.FLVPlayback]" text=".playing" tiptext="A Boolean value that is true if the FLV file is in the playing state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#playing"/>
                <string name="playPauseButton" object="[fl.video.FLVPlayback]" text=".playPauseButton" tiptext="Play/pause button control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#playPauseButton"/>
                <string name="preferredHeight" object="[fl.video.FLVPlayback]" text=".preferredHeight" tiptext="A number that specifies the height of the source FLV file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#preferredHeight"/>
                <string name="preferredWidth" object="[fl.video.FLVPlayback]" text=".preferredWidth" tiptext="Gives the width of the source FLV file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#preferredWidth"/>
                <string name="progressInterval" object="[fl.video.FLVPlayback]" text=".progressInterval" tiptext="A number that is the amount of time, in milliseconds, between each progress event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#progressInterval"/>
                <string name="registrationX" object="[fl.video.FLVPlayback]" text=".registrationX" tiptext="The x coordinate used to align the video content when autoresizing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#registrationX"/>
                <string name="registrationY" object="[fl.video.FLVPlayback]" text=".registrationY" tiptext="The y coordinate used to align the video content when autoresizing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#registrationY"/>
                <string name="registrationWidth" object="[fl.video.FLVPlayback]" text=".registrationWidth" tiptext="The width used to align the video content when autoresizing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#registrationWidth"/>
                <string name="registrationHeight" object="[fl.video.FLVPlayback]" text=".registrationHeight" tiptext="The height used to align the video content when autoresizing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#registrationHeight"/>
                <string name="scaleMode" object="[fl.video.FLVPlayback]" text=".scaleMode" tiptext="Specifies how the video will resize after loading." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#scaleMode"/>
                <string name="scaleX" object="[fl.video.FLVPlayback]" text=".scaleX" tiptext="A number that is the horizontal scale." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#scaleX"/>
                <string name="scaleY" object="[fl.video.FLVPlayback]" text=".scaleY" tiptext="A number that is the vertical scale." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#scaleY"/>
                <string name="scrubbing" object="[fl.video.FLVPlayback]" text=".scrubbing" tiptext="A Boolean value that is true if the user is scrubbing with the SeekBar and false otherwise." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#scrubbing"/>
                <string name="seekBar" object="[fl.video.FLVPlayback]" text=".seekBar" tiptext="The SeekBar control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#seekBar"/>
                <string name="seekBarInterval" object="[fl.video.FLVPlayback]" text=".seekBarInterval" tiptext="A number that specifies, in milliseconds, how often to check the SeekBar handle when scrubbing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#seekBarInterval"/>
                <string name="seekBarScrubTolerance" object="[fl.video.FLVPlayback]" text=".seekBarScrubTolerance" tiptext="A number that specifies how far a user can move the SeekBar handle before an update occurs." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#seekBarScrubTolerance"/>
                <string name="seekToPrevOffset" object="[fl.video.FLVPlayback]" text=".seekToPrevOffset" tiptext="The number of seconds that the seekToPrevNavCuePoint() method uses when it compares its time against the previous cue point." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#seekToPrevOffset"/>
                <string name="skin" object="[fl.video.FLVPlayback]" text=".skin" tiptext="A string that specifies the URL to a skin SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#skin"/>
                <string name="skinAutoHide" object="[fl.video.FLVPlayback]" text=".skinAutoHide" tiptext="A Boolean value that, if true, hides the component skin when the mouse is not over the video." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#skinAutoHide"/>
                <string name="skinBackgroundAlpha" object="[fl.video.FLVPlayback]" text=".skinBackgroundAlpha" tiptext="The alpha for the background of the skin." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#skinBackgroundAlpha"/>
                <string name="skinBackgroundColor" object="[fl.video.FLVPlayback]" text=".skinBackgroundColor" tiptext="The color for the background of the skin (0xRRGGBB)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#skinBackgroundColor"/>
                <string name="skinFadeTime" object="[fl.video.FLVPlayback]" text=".skinFadeTime" tiptext="The amount of time in milliseconds that it takes for the skin to fade in or fade out when hiding or showing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#skinFadeTime"/>
                <string name="skinScaleMaximum" object="[fl.video.FLVPlayback]" text=".skinScaleMaximum" tiptext="This property specifies the largest multiple that FLVPlayback will use to scale up its skin when it enters full screen mode with a Flash Player that supports hardware acceleration." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#skinScaleMaximum"/>
                <string name="soundTransform" object="[fl.video.FLVPlayback]" text=".soundTransform" tiptext="Provides direct access to the VideoPlayer.soundTransform property to expose more sound control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#soundTransform"/>
                <string name="state" object="[fl.video.FLVPlayback]" text=".state" tiptext="A string that specifies the state of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#state"/>
                <string name="stateResponsive" object="[fl.video.FLVPlayback]" text=".stateResponsive" tiptext="A Boolean value that is true if the state is responsive." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#stateResponsive"/>
                <string name="stopButton" object="[fl.video.FLVPlayback]" text=".stopButton" tiptext="The Stop button control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#stopButton"/>
                <string name="stopped" object="[fl.video.FLVPlayback]" text=".stopped" tiptext="A Boolean value that is true if the state of the FLVPlayback instance is stopped." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#stopped"/>
                <string name="totalTime" object="[fl.video.FLVPlayback]" text=".totalTime" tiptext="A number that is the total playing time for the video in seconds." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#totalTime"/>
                <string name="visibleVideoPlayerIndex" object="[fl.video.FLVPlayback]" text=".visibleVideoPlayerIndex" tiptext="A number that you can use to manage multiple FLV file streams." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#visibleVideoPlayerIndex"/>
                <string name="volume" object="[fl.video.FLVPlayback]" text=".volume" tiptext="A number in the range of 0 to 1 that indicates the volume control setting." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#volume"/>
                <string name="volumeBar" object="[fl.video.FLVPlayback]" text=".volumeBar" tiptext="The volume bar control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#volumeBar"/>
                <string name="volumeBarInterval" object="[fl.video.FLVPlayback]" text=".volumeBarInterval" tiptext="A number that specifies, in milliseconds, how often to check the volume bar handle location when scrubbing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#volumeBarInterval"/>
                <string name="volumeBarScrubTolerance" object="[fl.video.FLVPlayback]" text=".volumeBarScrubTolerance" tiptext="A number that specifies how far a user can move the volume bar handle before an update occurs." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#volumeBarScrubTolerance"/>
                <string name="width" object="[fl.video.FLVPlayback]" text=".width" tiptext="A number that specifies the width of the FLVPlayback instance on the Stage." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#width"/>
                <string name="x" object="[fl.video.FLVPlayback]" text=".x" tiptext="A number that specifies the horizontal position (in pixels) of the video player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#x"/>
                <string name="y" object="[fl.video.FLVPlayback]" text=".y" tiptext="A number that specifies the vertical position (in pixels) of the video player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#y"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class FLVPlayback" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html">
                <string name="soundUpdate" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=SoundEvent.SOUND_UPDATE{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when sound changes by the user either moving the handle of the volumeBar control or setting the volume or soundTransform property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:soundUpdate"/>
                <string name="stoppedStateEntered" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.STOPPED_STATE_ENTERED{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when entering the stopped state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:stoppedStateEntered"/>
                <string name="stateChange" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.STATE_CHANGE{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the playback state changes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:stateChange"/>
                <string name="skinLoaded" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.SKIN_LOADED{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a skin SWF file is loaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:skinLoaded"/>
                <string name="skinError" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=SkinErrorEvent.SKIN_ERROR{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an error occurs loading a skin SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:skinError"/>
                <string name="seeked" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.SEEKED{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the location of the playhead is changed by a call to seek() or by setting the playheadTime property or by using the SeekBar control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:seeked"/>
                <string name="scrubStart" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.SCRUB_START{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user begins scrubbing the FLV file with the seek bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:scrubStart"/>
                <string name="scrubFinish" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.SCRUB_FINISH{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user stops scrubbing the FLV file with the seek bar." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:scrubFinish"/>
                <string name="rewind" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.REWIND{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the location of the playhead moves backward by a call to seek() or when an autoRewind call is completed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:rewind"/>
                <string name="layout" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=LayoutEvent.LAYOUT{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the video player is resized or laid out." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:layout"/>
                <string name="ready" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.READY{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an FLV file is loaded and ready to display." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:ready"/>
                <string name="progress" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoProgressEvent.PROGRESS{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Indicates progress made in number of bytes downloaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:progress"/>
                <string name="playheadUpdate" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.PLAYHEAD_UPDATE{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched while the FLV file is playing at the frequency specified by the playheadUpdateInterval property or when rewinding starts." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:playheadUpdate"/>
                <string name="playingStateEntered" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.PLAYING_STATE_ENTERED{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the playing state is entered." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:playingStateEntered"/>
                <string name="pausedStateEntered" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.PAUSED_STATE_ENTERED{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the player enters the paused state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:pausedStateEntered"/>
                <string name="metadataReceived" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=MetadataEvent.METADATA_RECEIVED{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched the first time the FLV file&apos;s metadata is reached." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:metadataReceived"/>
                <string name="fastForward" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.FAST_FORWARD{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the location of the playhead moves forward by a call to the seek() method or by clicking the ForwardButton control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:fastForward"/>
                <string name="cuePoint" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=MetadataEvent.CUE_POINT{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a cue point is reached." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:cuePoint"/>
                <string name="complete" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.COMPLETE{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when playing completes because the player reached the end of the FLV file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:complete"/>
                <string name="close" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.CLOSE{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the event object closes the NetConnection, by timing out or through a call to the closeVideoPlayer() method or when you call the load() or play() methods or set the source property and cause the RTMP connection to close as a result." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:close"/>
                <string name="bufferingStateEntered" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.BUFFERING_STATE_ENTERED{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the FLVPlayback instance enters the buffering state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:bufferingStateEntered"/>
                <string name="autoRewound" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=VideoEvent.AUTO_REWOUND{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the playhead is moved to the start of the video player because the autoRewind property is set to true." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:autoRewound"/>
                <string name="autoLayout" object="[fl.video.FLVPlayback]" text=".addEventListener(%type:String=AutoLayoutEvent.AUTO_LAYOUT{SoundEvent.SOUND_UPDATE,VideoEvent.STOPPED_STATE_ENTERED,VideoEvent.STATE_CHANGE,VideoEvent.SKIN_LOADED,SkinErrorEvent.SKIN_ERROR,VideoEvent.SEEKED,VideoEvent.SCRUB_START,VideoEvent.SCRUB_FINISH,VideoEvent.REWIND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,VideoEvent.PLAYING_STATE_ENTERED,VideoEvent.PAUSED_STATE_ENTERED,MetadataEvent.METADATA_RECEIVED,VideoEvent.FAST_FORWARD,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE,VideoEvent.BUFFERING_STATE_ENTERED,VideoEvent.AUTO_REWOUND,AutoLayoutEvent.AUTO_LAYOUT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the video player is resized or laid out automatically." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlayback.html#event:autoLayout"/>
            </folder>
        </folder>
        <folder name="FLVPlaybackCaptioning" id="[fl.video.FLVPlaybackCaptioning]" sort="true" index="true" asAncestors="flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The FLVPlaybackCaptioning component enables captioning for the FLVPlayback component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class FLVPlaybackCaptioning" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html">
                <string name="FLVPlaybackCaptioning" object="[fl.video.FLVPlaybackCaptioning]" text="new FLVPlaybackCaptioning(%%)" constructor="true" tiptext="Creates a new FLVPlaybackCaptioning instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#FLVPlaybackCaptioning()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class FLVPlaybackCaptioning" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html">
                <string name="VERSION" object="[fl.video.FLVPlaybackCaptioning]" text="FLVPlaybackCaptioning.VERSION" constant="true" tiptext="State variable indicating the long version number of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#VERSION"/>
                <string name="SHORT_VERSION" object="[fl.video.FLVPlaybackCaptioning]" text="FLVPlaybackCaptioning.SHORT_VERSION" constant="true" tiptext="State variable indicating the short version number of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#SHORT_VERSION"/>
                <string name="showCaptions" object="[fl.video.FLVPlaybackCaptioning]" text=".showCaptions" tiptext="Used to display captions; true = display captions, false = do not display captions." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#showCaptions"/>
                <string name="source" object="[fl.video.FLVPlaybackCaptioning]" text=".source" tiptext="URL of the Timed Text XML file that contains caption information (required property)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#source"/>
                <string name="autoLayout" object="[fl.video.FLVPlaybackCaptioning]" text=".autoLayout" tiptext="Determines whether the FLVPlaybackCaptioning component automatically moves and resizes the TextField object for captioning." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#autoLayout"/>
                <string name="captionTargetName" object="[fl.video.FLVPlaybackCaptioning]" text=".captionTargetName" tiptext="The instance name of the TextField object or MovieClip enclosing a Textfield object that contains the captions." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#captionTargetName"/>
                <string name="captionTarget" object="[fl.video.FLVPlaybackCaptioning]" text=".captionTarget" tiptext="Sets the DisplayObject instance in which to display captions." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#captionTarget"/>
                <string name="captionButton" object="[fl.video.FLVPlaybackCaptioning]" text=".captionButton" tiptext="Defines the captionButton FLVPlayback custom UI component instance which provides toggle capabilities to turn captioning on and off." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#captionButton"/>
                <string name="flvPlaybackName" object="[fl.video.FLVPlaybackCaptioning]" text=".flvPlaybackName" tiptext="Sets an FLVPlayback instance name for the FLVPlayback instance that you want to caption." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#flvPlaybackName"/>
                <string name="flvPlayback" object="[fl.video.FLVPlaybackCaptioning]" text=".flvPlayback" tiptext="Sets the FLVPlayback instance to caption." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#flvPlayback"/>
                <string name="track" object="[fl.video.FLVPlaybackCaptioning]" text=".track" tiptext="Support for multiple language tracks." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#track"/>
                <string name="videoPlayerIndex" object="[fl.video.FLVPlaybackCaptioning]" text=".videoPlayerIndex" tiptext="Connects the captioning to a specific VideoPlayer in the FLVPlayback component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#videoPlayerIndex"/>
                <string name="simpleFormatting" object="[fl.video.FLVPlaybackCaptioning]" text=".simpleFormatting" tiptext="Limits formatting instructions from the Timed Text file when set to true." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#simpleFormatting"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class FLVPlaybackCaptioning" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html">
                <string name="securityError" object="[fl.video.FLVPlaybackCaptioning]" text=".addEventListener(%type:String=SecurityErrorEvent.SECURITY_ERROR{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,Event.COMPLETE,CaptionTargetEvent.CAPTION_TARGET_CREATED,CaptionChangeEvent.CAPTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if a call to the URLLoader.load() event attempts to load a Timed Text XML file from a server outside the security sandbox." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#event:securityError"/>
                <string name="progress" object="[fl.video.FLVPlaybackCaptioning]" text=".addEventListener(%type:String=ProgressEvent.PROGRESS{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,Event.COMPLETE,CaptionTargetEvent.CAPTION_TARGET_CREATED,CaptionChangeEvent.CAPTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when data is received as the download of the Timed Text XML file progresses." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#event:progress"/>
                <string name="open" object="[fl.video.FLVPlaybackCaptioning]" text=".addEventListener(%type:String=Event.OPEN{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,Event.COMPLETE,CaptionTargetEvent.CAPTION_TARGET_CREATED,CaptionChangeEvent.CAPTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the download operation to load the Timed Text XML file begins, following a call to the URLLoader.load() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#event:open"/>
                <string name="ioError" object="[fl.video.FLVPlaybackCaptioning]" text=".addEventListener(%type:String=IOErrorEvent.IO_ERROR{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,Event.COMPLETE,CaptionTargetEvent.CAPTION_TARGET_CREATED,CaptionChangeEvent.CAPTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if a call to the URLLoader.load() event results in a fatal error that terminates the download of the Timed Text XML file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#event:ioError"/>
                <string name="httpStatus" object="[fl.video.FLVPlaybackCaptioning]" text=".addEventListener(%type:String=HTTPStatusEvent.HTTP_STATUS{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,Event.COMPLETE,CaptionTargetEvent.CAPTION_TARGET_CREATED,CaptionChangeEvent.CAPTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if a call to the URLLoader.load() event attempts to access a Timed Text XML file over HTTP and the current Flash Player environment is able to detect and return the status code for the request." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#event:httpStatus"/>
                <string name="complete" object="[fl.video.FLVPlaybackCaptioning]" text=".addEventListener(%type:String=Event.COMPLETE{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,Event.COMPLETE,CaptionTargetEvent.CAPTION_TARGET_CREATED,CaptionChangeEvent.CAPTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after all of the Timed Text XML data is loaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#event:complete"/>
                <string name="captionTargetCreated" object="[fl.video.FLVPlaybackCaptioning]" text=".addEventListener(%type:String=CaptionTargetEvent.CAPTION_TARGET_CREATED{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,Event.COMPLETE,CaptionTargetEvent.CAPTION_TARGET_CREATED,CaptionChangeEvent.CAPTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after the captionTarget property is created, but before any captions are added (the captionTarget property is empty)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#event:captionTargetCreated"/>
                <string name="captionChange" object="[fl.video.FLVPlaybackCaptioning]" text=".addEventListener(%type:String=CaptionChangeEvent.CAPTION_CHANGE{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,Event.COMPLETE,CaptionTargetEvent.CAPTION_TARGET_CREATED,CaptionChangeEvent.CAPTION_CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a caption is added or removed from the caption target text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/FLVPlaybackCaptioning.html#event:captionChange"/>
            </folder>
        </folder>
        <folder name="INCManager" id="[fl.video.INCManager]" sort="true" index="true" tiptext="The INCManager is the interface for classes that create the flash.net.NetConnection for the VideoPlayer class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class INCManager" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html">
                <string name="connectToURL" object="[fl.video.INCManager]" text=".connectToURL(%url:String%):Boolean" tiptext="Called by the VideoPlayer object to ask for a connection to the URL." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#connectToURL()"/>
                <string name="connectAgain" object="[fl.video.INCManager]" text=".connectAgain(%%):Boolean" tiptext="Called by the VideoPlayer object if the connection is successfully made but the stream is not found." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#connectAgain()"/>
                <string name="reconnect" object="[fl.video.INCManager]" text=".reconnect(%%):void" tiptext="Called by the VideoPlayer object to ask for reconnection after the connection is lost." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#reconnect()"/>
                <string name="helperDone" object="[fl.video.INCManager]" text=".helperDone(%helper:Object,success:Boolean%):void" tiptext="Called by any helper object doing a task for the NCManager object to signal it has completed and whether it was successful." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#helperDone()"/>
                <string name="close" object="[fl.video.INCManager]" text=".close(%%):void" tiptext="Closes the NetConnection." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#close()"/>
                <string name="getProperty" object="[fl.video.INCManager]" text=".getProperty(%propertyName:String%)" tiptext="Gets values of arbitrary properties supported by the class implementing INCManager." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#getProperty()"/>
                <string name="setProperty" object="[fl.video.INCManager]" text=".setProperty(%propertyName:String,value:*%):void" tiptext="Sets values of arbitrary properties supported by the class implementing INCManager." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#setProperty()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class INCManager" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html">
                <string name="videoPlayer" object="[fl.video.INCManager]" text=".videoPlayer" tiptext="The VideoPlayer object that owns this object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#videoPlayer"/>
                <string name="timeout" object="[fl.video.INCManager]" text=".timeout" tiptext="The time in milliseconds after which attempts to make a connection stop." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#timeout"/>
                <string name="netConnection" object="[fl.video.INCManager]" text=".netConnection" tiptext="Reference to the NetConnection object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#netConnection"/>
                <string name="bitrate" object="[fl.video.INCManager]" text=".bitrate" tiptext="The bandwidth, in bits per second, used to switch between multiple streams." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#bitrate"/>
                <string name="streamName" object="[fl.video.INCManager]" text=".streamName" tiptext="The stream name passed into the NetStream.play() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#streamName"/>
                <string name="isRTMP" object="[fl.video.INCManager]" text=".isRTMP" tiptext="Whether the URL is for RTMP streaming from a Flash Media Server (FMS) or a progressive download." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#isRTMP"/>
                <string name="streamLength" object="[fl.video.INCManager]" text=".streamLength" tiptext="Length of the stream, in seconds." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#streamLength"/>
                <string name="streamWidth" object="[fl.video.INCManager]" text=".streamWidth" tiptext="Width of the stream, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#streamWidth"/>
                <string name="streamHeight" object="[fl.video.INCManager]" text=".streamHeight" tiptext="Height of the stream, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/INCManager.html#streamHeight"/>
            </folder>
        </folder>
        <folder name="IVPEvent" id="[fl.video.IVPEvent]" sort="true" index="true" tiptext="The IVPEvent interface is implemented by video events that apply to a specific VideoPlayer object within the FLVPlayback component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/IVPEvent.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class IVPEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/IVPEvent.html">
                <string name="type" object="[fl.video.IVPEvent]" text=".type" tiptext="The type of event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/IVPEvent.html#type"/>
                <string name="vp" object="[fl.video.IVPEvent]" text=".vp" tiptext="The index of the VideoPlayer object involved in this event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/IVPEvent.html#vp"/>
            </folder>
        </folder>
        <folder name="LayoutEvent" id="[fl.video.LayoutEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Event dispatched when the video player is resized and/or laid out." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/LayoutEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class LayoutEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/LayoutEvent.html">
                <string name="LayoutEvent" object="[fl.video.LayoutEvent]" text="new LayoutEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,oldBounds:flash.geom:Rectangle=null,oldRegistrationBounds:flash.geom:Rectangle=null]%)" constructor="true" tiptext="Creates an Event object that contains information about layout events." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/LayoutEvent.html#LayoutEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class LayoutEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/LayoutEvent.html">
                <string name="LAYOUT" object="[fl.video.LayoutEvent]" text="LayoutEvent.LAYOUT" constant="true" tiptext="Defines the value of the type property of a layout event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/LayoutEvent.html#LAYOUT"/>
                <string name="oldBounds" object="[fl.video.LayoutEvent]" text=".oldBounds" tiptext="Indicates the values of the x, y, width, and height properties of the target before the event occurs." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/LayoutEvent.html#oldBounds"/>
                <string name="oldRegistrationBounds" object="[fl.video.LayoutEvent]" text=".oldRegistrationBounds" tiptext="Indicates the values of the registrationX, registrationY, registrationWidth, and registrationHeight properties of the target before the event occurs." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/LayoutEvent.html#oldRegistrationBounds"/>
            </folder>
        </folder>
        <folder name="MetadataEvent" id="[fl.video.MetadataEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches a MetadataEvent object when the user requests the FLV file&apos;s metadata information packet (NetStream.onMetaData) and when cue points (NetStream.onCuePoint) are encountered in the FLV file." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/MetadataEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class MetadataEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/MetadataEvent.html">
                <string name="MetadataEvent" object="[fl.video.MetadataEvent]" text="new MetadataEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,info:Object=null,vp:uint=0]%)" constructor="true" tiptext="Creates an Event object that contains information about metadata events." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/MetadataEvent.html#MetadataEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class MetadataEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/MetadataEvent.html">
                <string name="METADATA_RECEIVED" object="[fl.video.MetadataEvent]" text="MetadataEvent.METADATA_RECEIVED" constant="true" tiptext="Defines the value of the type property of a metadataReceived event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/MetadataEvent.html#METADATA_RECEIVED"/>
                <string name="CUE_POINT" object="[fl.video.MetadataEvent]" text="MetadataEvent.CUE_POINT" constant="true" tiptext="Defines the value of the type property of a cuePoint event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/MetadataEvent.html#CUE_POINT"/>
                <string name="info" object="[fl.video.MetadataEvent]" text=".info" tiptext="An object with dynamic properties added depending on the event type." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/MetadataEvent.html#info"/>
                <string name="vp" object="[fl.video.MetadataEvent]" text=".vp" tiptext="The index of the VideoPlayer object involved in this event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/MetadataEvent.html#vp"/>
            </folder>
        </folder>
        <folder name="NCManager" id="[fl.video.NCManager]" sort="true" index="true" asAncestors="Object" tiptext="Creates the NetConnection object for the VideoPlayer class, a helper class for that user facing class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class NCManager" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html">
                <string name="NCManager" object="[fl.video.NCManager]" text="new NCManager(%%)" constructor="true" tiptext="Creates a new NCManager instance." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#NCManager()"/>
                <string name="getProperty" object="[fl.video.NCManager]" text=".getProperty(%propertyName:String%)" tiptext="Allows getting of the fallbackServerName, fpadZone, objectEncoding, and proxyType properties." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#getProperty()"/>
                <string name="setProperty" object="[fl.video.NCManager]" text=".setProperty(%propertyName:String,value:*%):void" tiptext="Allows setting of the fallbackServerName, fpadZone, objectEncoding, and proxyType properties." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#setProperty()"/>
                <string name="connectToURL" object="[fl.video.NCManager]" text=".connectToURL(%url:String%):Boolean" tiptext="Called by the VideoPlayer object to ask for a connection to the URL." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#connectToURL()"/>
                <string name="connectAgain" object="[fl.video.NCManager]" text=".connectAgain(%%):Boolean" tiptext="Called by the VideoPlayer object if the connection is successfully made but the stream is not found." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#connectAgain()"/>
                <string name="reconnect" object="[fl.video.NCManager]" text=".reconnect(%%):void" tiptext="Called by the VideoPlayer object to ask for reconnection after the connection is lost." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#reconnect()"/>
                <string name="close" object="[fl.video.NCManager]" text=".close(%%):void" tiptext="Closes the NetConnection." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#close()"/>
                <string name="helperDone" object="[fl.video.NCManager]" text=".helperDone(%helper:Object,success:Boolean%):void" tiptext="Called by any helper object doing a task for the NCManager object to signal it has completed and whether it was successful." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#helperDone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class NCManager" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html">
                <string name="VERSION" object="[fl.video.NCManager]" text="NCManager.VERSION" constant="true" tiptext="State variable indicating the long version number of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#VERSION"/>
                <string name="SHORT_VERSION" object="[fl.video.NCManager]" text="NCManager.SHORT_VERSION" constant="true" tiptext="State variable indicating the short version number of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#SHORT_VERSION"/>
                <string name="fallbackServerName" object="[fl.video.NCManager]" text=".fallbackServerName" tiptext="Exposes the fallbackServerName property indirectly or directly." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#fallbackServerName"/>
                <string name="DEFAULT_TIMEOUT" object="[fl.video.NCManager]" text="NCManager.DEFAULT_TIMEOUT" constant="true" tiptext="The default timeout in milliseconds." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#DEFAULT_TIMEOUT"/>
                <string name="timeout" object="[fl.video.NCManager]" text=".timeout" tiptext="The time in milliseconds after which attempts to make a connection stop." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#timeout"/>
                <string name="bitrate" object="[fl.video.NCManager]" text=".bitrate" tiptext="When streaming from Flash Media Server (FMS), the bitrate property returns the value calculated from autodetection, not the value set through the bitrate() property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#bitrate"/>
                <string name="videoPlayer" object="[fl.video.NCManager]" text=".videoPlayer" tiptext="The VideoPlayer object that owns this object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#videoPlayer"/>
                <string name="netConnection" object="[fl.video.NCManager]" text=".netConnection" tiptext="Reference to the NetConnection object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#netConnection"/>
                <string name="streamName" object="[fl.video.NCManager]" text=".streamName" tiptext="The stream name passed into the NetStream.play() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#streamName"/>
                <string name="isRTMP" object="[fl.video.NCManager]" text=".isRTMP" tiptext="Whether the URL is for RTMP streaming from a Flash Media Server (FMS) or a progressive download." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#isRTMP"/>
                <string name="streamLength" object="[fl.video.NCManager]" text=".streamLength" tiptext="Length of the stream, in seconds." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#streamLength"/>
                <string name="streamWidth" object="[fl.video.NCManager]" text=".streamWidth" tiptext="Width of the stream, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#streamWidth"/>
                <string name="streamHeight" object="[fl.video.NCManager]" text=".streamHeight" tiptext="Height of the stream, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManager.html#streamHeight"/>
            </folder>
        </folder>
        <folder name="NCManagerNative" id="[fl.video.NCManagerNative]" sort="true" index="true" asAncestors="fl.video:NCManager,Object" tiptext="The NCManagerNative class is a subclass of the NCManager class and supports native bandwidth detection, which some Flash Video Streaming Service providers may support." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManagerNative.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class NCManagerNative" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManagerNative.html">
                <string name="NCManagerNative" object="[fl.video.NCManagerNative]" text="new NCManagerNative(%%):void" constructor="true" tiptext="NCManagerNative constructor" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManagerNative.html#NCManagerNative()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class NCManagerNative" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManagerNative.html">
                <string name="VERSION" object="[fl.video.NCManagerNative]" text="NCManagerNative.VERSION" constant="true" tiptext="State variable indicating the long version number of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManagerNative.html#VERSION"/>
                <string name="SHORT_VERSION" object="[fl.video.NCManagerNative]" text="NCManagerNative.SHORT_VERSION" constant="true" tiptext="State variable indicating the short version number of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManagerNative.html#SHORT_VERSION"/>
                <string name="streamLength" object="[fl.video.NCManagerNative]" text=".streamLength" tiptext="Length of the stream, in milliseconds." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/NCManagerNative.html#streamLength"/>
            </folder>
        </folder>
        <folder name="SkinErrorEvent" id="[fl.video.SkinErrorEvent]" sort="true" index="true" asAncestors="flash.events:ErrorEvent,flash.events:TextEvent,flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches a SkinErrorEvent object when there is an error loading a skin." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/SkinErrorEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SkinErrorEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/SkinErrorEvent.html">
                <string name="SkinErrorEvent" object="[fl.video.SkinErrorEvent]" text="new SkinErrorEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,text:String]%)" constructor="true" tiptext="Creates an Event object that contains information about skinError events." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/SkinErrorEvent.html#SkinErrorEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SkinErrorEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/SkinErrorEvent.html">
                <string name="SKIN_ERROR" object="[fl.video.SkinErrorEvent]" text="SkinErrorEvent.SKIN_ERROR" constant="true" tiptext="Defines the value of the type property of a skinError event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/SkinErrorEvent.html#SKIN_ERROR"/>
            </folder>
        </folder>
        <folder name="SoundEvent" id="[fl.video.SoundEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches a SoundEvent object when the user changes the sound by either moving the handle of the volumeBar control or setting the volume or soundTransform property." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/SoundEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SoundEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/SoundEvent.html">
                <string name="SoundEvent" object="[fl.video.SoundEvent]" text="new SoundEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,soundTransform:flash.media:SoundTransform=null]%)" constructor="true" tiptext="SoundEvent construtor" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/SoundEvent.html#SoundEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SoundEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/SoundEvent.html">
                <string name="SOUND_UPDATE" object="[fl.video.SoundEvent]" text="SoundEvent.SOUND_UPDATE" constant="true" tiptext="Defines the value of the type property of a soundUpdate event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/SoundEvent.html#SOUND_UPDATE"/>
                <string name="soundTransform" object="[fl.video.SoundEvent]" text=".soundTransform" tiptext="Indicates new values for volume and panning." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/SoundEvent.html#soundTransform"/>
            </folder>
        </folder>
        <folder name="VideoAlign" id="[fl.video.VideoAlign]" sort="true" index="true" asAncestors="Object" tiptext="The VideoAlign class provides constant values to use for the FLVPlayback.align and VideoPlayer.align properties." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoAlign.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class VideoAlign" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoAlign.html">
                <string name="CENTER" object="[fl.video.VideoAlign]" text="VideoAlign.CENTER" constant="true" tiptext="Specifies that the video is aligned in the center." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoAlign.html#CENTER"/>
                <string name="TOP" object="[fl.video.VideoAlign]" text="VideoAlign.TOP" constant="true" tiptext="Specifies that the video is aligned at the top." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoAlign.html#TOP"/>
                <string name="LEFT" object="[fl.video.VideoAlign]" text="VideoAlign.LEFT" constant="true" tiptext="Specifies that the video is aligned on the left." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoAlign.html#LEFT"/>
                <string name="BOTTOM" object="[fl.video.VideoAlign]" text="VideoAlign.BOTTOM" constant="true" tiptext="Specifies that the video is aligned at the bottom." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoAlign.html#BOTTOM"/>
                <string name="RIGHT" object="[fl.video.VideoAlign]" text="VideoAlign.RIGHT" constant="true" tiptext="Specifies that the video is aligned to the right." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoAlign.html#RIGHT"/>
                <string name="TOP_LEFT" object="[fl.video.VideoAlign]" text="VideoAlign.TOP_LEFT" constant="true" tiptext="Specifies that the video is aligned in the top-left corner." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoAlign.html#TOP_LEFT"/>
                <string name="TOP_RIGHT" object="[fl.video.VideoAlign]" text="VideoAlign.TOP_RIGHT" constant="true" tiptext="Specifies that the video is aligned in the top-right corner." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoAlign.html#TOP_RIGHT"/>
                <string name="BOTTOM_LEFT" object="[fl.video.VideoAlign]" text="VideoAlign.BOTTOM_LEFT" constant="true" tiptext="Specifies that the video is aligned in the bottom-left corner." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoAlign.html#BOTTOM_LEFT"/>
                <string name="BOTTOM_RIGHT" object="[fl.video.VideoAlign]" text="VideoAlign.BOTTOM_RIGHT" constant="true" tiptext="Specifies that the video is aligned in the bottom-right corner." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoAlign.html#BOTTOM_RIGHT"/>
            </folder>
        </folder>
        <folder name="VideoError" id="[fl.video.VideoError]" sort="true" index="true" asAncestors="Error,Object" tiptext="The VideoError exception is the primary mechanism for reporting runtime errors from the FLVPlayback and VideoPlayer classes." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class VideoError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html">
                <string name="VideoError" object="[fl.video.VideoError]" text="new VideoError(%errCode:uint[,msg:String=null]%)" constructor="true" tiptext="Creates a new VideoError object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#VideoError()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class VideoError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html">
                <string name="VERSION" object="[fl.video.VideoError]" text="VideoError.VERSION" constant="true" tiptext="State variable indicating the long version number of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#VERSION"/>
                <string name="SHORT_VERSION" object="[fl.video.VideoError]" text="VideoError.SHORT_VERSION" constant="true" tiptext="State variable indicating the short version number of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#SHORT_VERSION"/>
                <string name="NO_CONNECTION" object="[fl.video.VideoError]" text="VideoError.NO_CONNECTION" constant="true" tiptext="State variable indicating that Flash Player is unable to make a connection to the server or to find the FLV file on the server." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#NO_CONNECTION"/>
                <string name="ILLEGAL_CUE_POINT" object="[fl.video.VideoError]" text="VideoError.ILLEGAL_CUE_POINT" constant="true" tiptext="State variable indicating the illegal cue point." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#ILLEGAL_CUE_POINT"/>
                <string name="INVALID_SEEK" object="[fl.video.VideoError]" text="VideoError.INVALID_SEEK" constant="true" tiptext="State variable indicating an invalid seek." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#INVALID_SEEK"/>
                <string name="INVALID_SOURCE" object="[fl.video.VideoError]" text="VideoError.INVALID_SOURCE" constant="true" tiptext="State variable indicating an invalid source." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#INVALID_SOURCE"/>
                <string name="INVALID_XML" object="[fl.video.VideoError]" text="VideoError.INVALID_XML" constant="true" tiptext="State variable indicating invalid XML." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#INVALID_XML"/>
                <string name="NO_BITRATE_MATCH" object="[fl.video.VideoError]" text="VideoError.NO_BITRATE_MATCH" constant="true" tiptext="State variable indicating that there is no bitrate match." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#NO_BITRATE_MATCH"/>
                <string name="DELETE_DEFAULT_PLAYER" object="[fl.video.VideoError]" text="VideoError.DELETE_DEFAULT_PLAYER" constant="true" tiptext="State variable indicating that the user cannot delete the default VideoPlayer object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#DELETE_DEFAULT_PLAYER"/>
                <string name="INCMANAGER_CLASS_UNSET" object="[fl.video.VideoError]" text="VideoError.INCMANAGER_CLASS_UNSET" constant="true" tiptext="State variable indicating that the INCManager class is not set." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#INCMANAGER_CLASS_UNSET"/>
                <string name="NULL_URL_LOAD" object="[fl.video.VideoError]" text="VideoError.NULL_URL_LOAD" constant="true" tiptext="State variable indicating that a null URL was sent to the load() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#NULL_URL_LOAD"/>
                <string name="MISSING_SKIN_STYLE" object="[fl.video.VideoError]" text="VideoError.MISSING_SKIN_STYLE" constant="true" tiptext="State variable indicating a missing skin style." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#MISSING_SKIN_STYLE"/>
                <string name="UNSUPPORTED_PROPERTY" object="[fl.video.VideoError]" text="VideoError.UNSUPPORTED_PROPERTY" constant="true" tiptext="State variable indicating that an unsupported property was passed to the INCManager class, or the getProperty or setProperty methods." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#UNSUPPORTED_PROPERTY"/>
                <string name="NETSTREAM_CLIENT_CLASS_UNSET" object="[fl.video.VideoError]" text="VideoError.NETSTREAM_CLIENT_CLASS_UNSET" constant="true" tiptext="An error that occurs when the VideoPlayer.netStatusClientClass static property is set to an invalid value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#NETSTREAM_CLIENT_CLASS_UNSET"/>
                <string name="code" object="[fl.video.VideoError]" text=".code" tiptext="The code that corresponds to the error." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoError.html#code"/>
            </folder>
        </folder>
        <folder name="VideoEvent" id="[fl.video.VideoEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches a VideoEvent object when the user plays a video." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class VideoEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html">
                <string name="VideoEvent" object="[fl.video.VideoEvent]" text="new VideoEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,state:String=null,playheadTime:Number=unknown,vp:uint=0]%)" constructor="true" tiptext="Creates an Event object that contains information about video events." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#VideoEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class VideoEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html">
                <string name="AUTO_REWOUND" object="[fl.video.VideoEvent]" text="VideoEvent.AUTO_REWOUND" constant="true" tiptext="Defines the value of the type property of an autoRewound event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#AUTO_REWOUND"/>
                <string name="BUFFERING_STATE_ENTERED" object="[fl.video.VideoEvent]" text="VideoEvent.BUFFERING_STATE_ENTERED" constant="true" tiptext="Defines the value of the type property of a bufferingStateEntered event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#BUFFERING_STATE_ENTERED"/>
                <string name="CLOSE" object="[fl.video.VideoEvent]" text="VideoEvent.CLOSE" constant="true" tiptext="Defines the value of the type property of a close event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#CLOSE"/>
                <string name="COMPLETE" object="[fl.video.VideoEvent]" text="VideoEvent.COMPLETE" constant="true" tiptext="Defines the value of the type property of a complete event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#COMPLETE"/>
                <string name="FAST_FORWARD" object="[fl.video.VideoEvent]" text="VideoEvent.FAST_FORWARD" constant="true" tiptext="Defines the value of the type property of a fastForward event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#FAST_FORWARD"/>
                <string name="PAUSED_STATE_ENTERED" object="[fl.video.VideoEvent]" text="VideoEvent.PAUSED_STATE_ENTERED" constant="true" tiptext="Defines the value of the type property of a pausedStateEntered event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#PAUSED_STATE_ENTERED"/>
                <string name="PLAYHEAD_UPDATE" object="[fl.video.VideoEvent]" text="VideoEvent.PLAYHEAD_UPDATE" constant="true" tiptext="Defines the value of the type property of a playheadUpdate event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#PLAYHEAD_UPDATE"/>
                <string name="PLAYING_STATE_ENTERED" object="[fl.video.VideoEvent]" text="VideoEvent.PLAYING_STATE_ENTERED" constant="true" tiptext="Defines the value of the type property of a playingStateEntered event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#PLAYING_STATE_ENTERED"/>
                <string name="READY" object="[fl.video.VideoEvent]" text="VideoEvent.READY" constant="true" tiptext="Defines the value of the type property of a ready event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#READY"/>
                <string name="REWIND" object="[fl.video.VideoEvent]" text="VideoEvent.REWIND" constant="true" tiptext="Defines the value of the type property of a rewind event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#REWIND"/>
                <string name="SCRUB_FINISH" object="[fl.video.VideoEvent]" text="VideoEvent.SCRUB_FINISH" constant="true" tiptext="Defines the value of the type property of a scrubFinish event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#SCRUB_FINISH"/>
                <string name="SCRUB_START" object="[fl.video.VideoEvent]" text="VideoEvent.SCRUB_START" constant="true" tiptext="Defines the value of the type property of a scrubStart event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#SCRUB_START"/>
                <string name="SEEKED" object="[fl.video.VideoEvent]" text="VideoEvent.SEEKED" constant="true" tiptext="Defines the value of the type property of a seeked event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#SEEKED"/>
                <string name="SKIN_LOADED" object="[fl.video.VideoEvent]" text="VideoEvent.SKIN_LOADED" constant="true" tiptext="Defines the value of the type property of a skinLoaded event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#SKIN_LOADED"/>
                <string name="STATE_CHANGE" object="[fl.video.VideoEvent]" text="VideoEvent.STATE_CHANGE" constant="true" tiptext="Defines the value of the type property of a stateChange event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#STATE_CHANGE"/>
                <string name="STOPPED_STATE_ENTERED" object="[fl.video.VideoEvent]" text="VideoEvent.STOPPED_STATE_ENTERED" constant="true" tiptext="Defines the value of the type property of a stoppedStateEntered event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#STOPPED_STATE_ENTERED"/>
                <string name="state" object="[fl.video.VideoEvent]" text=".state" tiptext="A string identifying the constant from the VideoState class that describes the playback state of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#state"/>
                <string name="playheadTime" object="[fl.video.VideoEvent]" text=".playheadTime" tiptext="A number that is the current playhead time or position, measured in seconds, which can be a fractional value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#playheadTime"/>
                <string name="vp" object="[fl.video.VideoEvent]" text=".vp" tiptext="The index of the VideoPlayer object involved in this event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoEvent.html#vp"/>
            </folder>
        </folder>
        <folder name="VideoPlayer" id="[fl.video.VideoPlayer]" sort="true" index="true" asAncestors="flash.media:Video,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The VideoPlayer class lets you create a video player with a slightly smaller SWF file than if you used the FLVPlayback component." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class VideoPlayer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html">
                <string name="VideoPlayer" object="[fl.video.VideoPlayer]" text="new VideoPlayer(%[width:int=320,height:int=240]%)" constructor="true" tiptext="Creates a VideoPlayer object with a specified width and height." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#VideoPlayer()"/>
                <string name="setSize" object="[fl.video.VideoPlayer]" text=".setSize(%width:Number,height:Number%):void" tiptext="Sets the width and height properties simultaneously." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#setSize()"/>
                <string name="setScale" object="[fl.video.VideoPlayer]" text=".setScale(%scaleX:Number,scaleY:Number%):void" tiptext="Sets the scaleX and scaleY properties simultaneously." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#setScale()"/>
                <string name="play" object="[fl.video.VideoPlayer]" text=".play(%[url:String=null,totalTime:Number=unknown,isLive:Boolean=false]%):void" tiptext="play method" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#play()"/>
                <string name="playWhenEnoughDownloaded" object="[fl.video.VideoPlayer]" text=".playWhenEnoughDownloaded(%%):void" tiptext="playWhenEnoughDownloaded method" version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#playWhenEnoughDownloaded()"/>
                <string name="load" object="[fl.video.VideoPlayer]" text=".load(%url:String[,totalTime:Number=unknown,isLive:Boolean=false]%):void" tiptext="Similar to the play() method, but causes the FLV file to load without playing." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#load()"/>
                <string name="pause" object="[fl.video.VideoPlayer]" text=".pause(%%):void" tiptext="Pauses video playback." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#pause()"/>
                <string name="stop" object="[fl.video.VideoPlayer]" text=".stop(%%):void" tiptext="Stops video playback." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#stop()"/>
                <string name="seek" object="[fl.video.VideoPlayer]" text=".seek(%time:Number%):void" tiptext="Seeks to a given time in the file, specified in seconds, with a precision of three decimal places (milliseconds)." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#seek()"/>
                <string name="close" object="[fl.video.VideoPlayer]" text=".close(%%):void" tiptext="Forces the video stream and Flash Media Server connection to close." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#close()"/>
                <string name="ncConnected" object="[fl.video.VideoPlayer]" text=".ncConnected(%%):void" tiptext="Called by INCManager after the connection is complete or failed after a call to the INCManager.connectToURL() method." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#ncConnected()"/>
                <string name="ncReconnected" object="[fl.video.VideoPlayer]" text=".ncReconnected(%%):void" tiptext="Called by INCManager after the reconnection is complete or has failed after a call to the INCManager.reconnect() method." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#ncReconnected()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class VideoPlayer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html">
                <string name="VERSION" object="[fl.video.VideoPlayer]" text="VideoPlayer.VERSION" constant="true" tiptext="State variable indicating the long version number of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#VERSION"/>
                <string name="SHORT_VERSION" object="[fl.video.VideoPlayer]" text="VideoPlayer.SHORT_VERSION" constant="true" tiptext="State variable indicating the short version number of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#SHORT_VERSION"/>
                <string name="iNCManagerClass" object="[fl.video.VideoPlayer]" text=".iNCManagerClass" tiptext="To make all VideoPlayer objects use your custom class as the default INCManager implementation, set the iNCManagerClass property to the class object or string name of your custom class." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#iNCManagerClass"/>
                <string name="netStreamClientClass" object="[fl.video.VideoPlayer]" text=".netStreamClientClass" tiptext="Registers a custom class for the NetStream&apos;s client property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#netStreamClientClass"/>
                <string name="scaleX" object="[fl.video.VideoPlayer]" text=".scaleX" tiptext="A number that is the horizontal scale." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#scaleX"/>
                <string name="scaleY" object="[fl.video.VideoPlayer]" text=".scaleY" tiptext="A number that is the vertical scale." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#scaleY"/>
                <string name="x" object="[fl.video.VideoPlayer]" text=".x" tiptext="A number that specifies the horizontal position (in pixels) of the video player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#x"/>
                <string name="y" object="[fl.video.VideoPlayer]" text=".y" tiptext="A number that specifies the vertical position (in pixels) of the video player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#y"/>
                <string name="width" object="[fl.video.VideoPlayer]" text=".width" tiptext="A number that specifies the width of the VideoPlayer instance on the Stage." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#width"/>
                <string name="height" object="[fl.video.VideoPlayer]" text=".height" tiptext="A number that specifies the height of the VideoPlayer instance (in pixels)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#height"/>
                <string name="registrationX" object="[fl.video.VideoPlayer]" text=".registrationX" tiptext="The x coordinate used to align the video content when autoresizing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#registrationX"/>
                <string name="registrationY" object="[fl.video.VideoPlayer]" text=".registrationY" tiptext="The y coordinate used to align the video content when autoresizing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#registrationY"/>
                <string name="registrationWidth" object="[fl.video.VideoPlayer]" text=".registrationWidth" tiptext="The width used to align the video content when autoresizing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#registrationWidth"/>
                <string name="registrationHeight" object="[fl.video.VideoPlayer]" text=".registrationHeight" tiptext="The height used to align the video content when autoresizing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#registrationHeight"/>
                <string name="videoWidth" object="[fl.video.VideoPlayer]" text=".videoWidth" tiptext="The source width of the loaded FLV file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#videoWidth"/>
                <string name="videoHeight" object="[fl.video.VideoPlayer]" text=".videoHeight" tiptext="The source width of the loaded FLV file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#videoHeight"/>
                <string name="visible" object="[fl.video.VideoPlayer]" text=".visible" tiptext="A Boolean value that, if true, makes the VideoPlayer instance visible." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#visible"/>
                <string name="align" object="[fl.video.VideoPlayer]" text=".align" tiptext="Specifies how the video is displayed relative to the registrationX, registrationY, registrationWidth and registrationHeight properties." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#align"/>
                <string name="scaleMode" object="[fl.video.VideoPlayer]" text=".scaleMode" tiptext="Specifies how the video resizes after loading." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#scaleMode"/>
                <string name="autoRewind" object="[fl.video.VideoPlayer]" text=".autoRewind" tiptext="A Boolean value that, if true, causes the FLV file to rewind to Frame 1 when play stops, either because the player reached the end of the stream or the stop() method was called." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#autoRewind"/>
                <string name="playheadTime" object="[fl.video.VideoPlayer]" text=".playheadTime" tiptext="A number that is the current playhead time or position, measured in seconds, which can be a fractional value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#playheadTime"/>
                <string name="source" object="[fl.video.VideoPlayer]" text=".source" tiptext="A string that specifies the URL of the FLV file to stream and how to stream it." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#source"/>
                <string name="volume" object="[fl.video.VideoPlayer]" text=".volume" tiptext="A number in the range of 0 to 1 that indicates the volume control setting." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#volume"/>
                <string name="soundTransform" object="[fl.video.VideoPlayer]" text=".soundTransform" tiptext="Provides direct access to the NetStream.soundTransform property to expose more sound control." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#soundTransform"/>
                <string name="isRTMP" object="[fl.video.VideoPlayer]" text=".isRTMP" tiptext="A Boolean value that is true if the FLV file is streaming from Flash Media Server (FMS) using RTMP." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#isRTMP"/>
                <string name="isLive" object="[fl.video.VideoPlayer]" text=".isLive" tiptext="A Boolean value that is true if the video stream is live." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#isLive"/>
                <string name="state" object="[fl.video.VideoPlayer]" text=".state" tiptext="A string that specifies the state of the component." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#state"/>
                <string name="stateResponsive" object="[fl.video.VideoPlayer]" text=".stateResponsive" tiptext="A Boolean value that is true if the state is responsive." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#stateResponsive"/>
                <string name="bytesLoaded" object="[fl.video.VideoPlayer]" text=".bytesLoaded" tiptext="A number that indicates the extent of downloading, in number of bytes, for an HTTP download." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#bytesLoaded"/>
                <string name="bytesTotal" object="[fl.video.VideoPlayer]" text=".bytesTotal" tiptext="A number that specifies the total number of bytes downloaded for an HTTP download." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#bytesTotal"/>
                <string name="totalTime" object="[fl.video.VideoPlayer]" text=".totalTime" tiptext="A number that is the total playing time for the video in seconds." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#totalTime"/>
                <string name="bufferTime" object="[fl.video.VideoPlayer]" text=".bufferTime" tiptext="A number that specifies the number of seconds to buffer in memory before beginning to play a video stream." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#bufferTime"/>
                <string name="idleTimeout" object="[fl.video.VideoPlayer]" text=".idleTimeout" tiptext="The amount of time, in milliseconds, before Flash terminates an idle connection to a video server, such as Flash Media Server, because playing paused or stopped." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#idleTimeout"/>
                <string name="playheadUpdateInterval" object="[fl.video.VideoPlayer]" text=".playheadUpdateInterval" tiptext="A number that is the amount of time, in milliseconds, between each playheadUpdate event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#playheadUpdateInterval"/>
                <string name="progressInterval" object="[fl.video.VideoPlayer]" text=".progressInterval" tiptext="A number that is the amount of time, in milliseconds, between each progress event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#progressInterval"/>
                <string name="ncMgr" object="[fl.video.VideoPlayer]" text=".ncMgr" tiptext="An INCManager object that provides access to an instance of the class implementing INCManager, which is an interface to the NCManager class." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#ncMgr"/>
                <string name="netConnection" object="[fl.video.VideoPlayer]" text=".netConnection" tiptext="Allows direct access to the NetConnection instance created by the video player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#netConnection"/>
                <string name="netStream" object="[fl.video.VideoPlayer]" text=".netStream" tiptext="Allows direct access to the NetStream instance created by the video player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#netStream"/>
                <string name="metadata" object="[fl.video.VideoPlayer]" text=".metadata" tiptext="An object that is a metadata information packet that is received from a call to the NetSteam.onMetaData() callback method, if available." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#metadata"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class VideoPlayer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html">
                <string name="stateChange" object="[fl.video.VideoPlayer]" text=".addEventListener(%type:String=VideoEvent.STATE_CHANGE{VideoEvent.STATE_CHANGE,VideoEvent.AUTO_REWOUND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,MetadataEvent.METADATA_RECEIVED,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the playback state changes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#event:stateChange"/>
                <string name="autoRewound" object="[fl.video.VideoPlayer]" text=".addEventListener(%type:String=VideoEvent.AUTO_REWOUND{VideoEvent.STATE_CHANGE,VideoEvent.AUTO_REWOUND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,MetadataEvent.METADATA_RECEIVED,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the playhead is moved to the start of the video player because the autoRewind property is set to true." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#event:autoRewound"/>
                <string name="layout" object="[fl.video.VideoPlayer]" text=".addEventListener(%type:String=LayoutEvent.LAYOUT{VideoEvent.STATE_CHANGE,VideoEvent.AUTO_REWOUND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,MetadataEvent.METADATA_RECEIVED,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the video player is resized or laid out." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#event:layout"/>
                <string name="ready" object="[fl.video.VideoPlayer]" text=".addEventListener(%type:String=VideoEvent.READY{VideoEvent.STATE_CHANGE,VideoEvent.AUTO_REWOUND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,MetadataEvent.METADATA_RECEIVED,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Event dispatched when an FLV file is loaded and ready to display." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#event:ready"/>
                <string name="progress" object="[fl.video.VideoPlayer]" text=".addEventListener(%type:String=VideoProgressEvent.PROGRESS{VideoEvent.STATE_CHANGE,VideoEvent.AUTO_REWOUND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,MetadataEvent.METADATA_RECEIVED,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Indicates progress made in number of bytes downloaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#event:progress"/>
                <string name="playheadUpdate" object="[fl.video.VideoPlayer]" text=".addEventListener(%type:String=VideoEvent.PLAYHEAD_UPDATE{VideoEvent.STATE_CHANGE,VideoEvent.AUTO_REWOUND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,MetadataEvent.METADATA_RECEIVED,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched while the FLV file is playing at the frequency specified by the playheadUpdateInterval property or when rewinding starts." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#event:playheadUpdate"/>
                <string name="metadataReceived" object="[fl.video.VideoPlayer]" text=".addEventListener(%type:String=MetadataEvent.METADATA_RECEIVED{VideoEvent.STATE_CHANGE,VideoEvent.AUTO_REWOUND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,MetadataEvent.METADATA_RECEIVED,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched the first time the FLV file&apos;s metadata is reached." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#event:metadataReceived"/>
                <string name="cuePoint" object="[fl.video.VideoPlayer]" text=".addEventListener(%type:String=MetadataEvent.CUE_POINT{VideoEvent.STATE_CHANGE,VideoEvent.AUTO_REWOUND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,MetadataEvent.METADATA_RECEIVED,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a cue point is reached." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#event:cuePoint"/>
                <string name="complete" object="[fl.video.VideoPlayer]" text=".addEventListener(%type:String=VideoEvent.COMPLETE{VideoEvent.STATE_CHANGE,VideoEvent.AUTO_REWOUND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,MetadataEvent.METADATA_RECEIVED,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when playing completes because the player reached the end of the FLV file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#event:complete"/>
                <string name="close" object="[fl.video.VideoPlayer]" text=".addEventListener(%type:String=VideoEvent.CLOSE{VideoEvent.STATE_CHANGE,VideoEvent.AUTO_REWOUND,LayoutEvent.LAYOUT,VideoEvent.READY,VideoProgressEvent.PROGRESS,VideoEvent.PLAYHEAD_UPDATE,MetadataEvent.METADATA_RECEIVED,MetadataEvent.CUE_POINT,VideoEvent.COMPLETE,VideoEvent.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched by the VideoPlayer instance when it closes the NetConnection by timing out or through a call to the close() method, or when you call the load() or play() methods or set the source property and cause the RTMP connection to close as a result." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoPlayer.html#event:close"/>
            </folder>
        </folder>
        <folder name="VideoProgressEvent" id="[fl.video.VideoProgressEvent]" sort="true" index="true" asAncestors="flash.events:ProgressEvent,flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches a VideoProgressEvent object when the user makes a request for the number of bytes loaded during a progressive HTTP download of their video." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoProgressEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class VideoProgressEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoProgressEvent.html">
                <string name="VideoProgressEvent" object="[fl.video.VideoProgressEvent]" text="new VideoProgressEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,bytesLoaded:uint=0,bytesTotal:uint=0,vp:uint=0]%)" constructor="true" tiptext="Creates an Event object that contains information about progress events." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoProgressEvent.html#VideoProgressEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class VideoProgressEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoProgressEvent.html">
                <string name="PROGRESS" object="[fl.video.VideoProgressEvent]" text="VideoProgressEvent.PROGRESS" constant="true" tiptext="Defines the value of the type property of a progress event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoProgressEvent.html#PROGRESS"/>
                <string name="vp" object="[fl.video.VideoProgressEvent]" text=".vp" tiptext="The index of the VideoPlayer object involved in this event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoProgressEvent.html#vp"/>
            </folder>
        </folder>
        <folder name="VideoScaleMode" id="[fl.video.VideoScaleMode]" sort="true" index="true" asAncestors="Object" tiptext="The VideoScaleMode class provides constant values to use for the FLVPlayback.scaleMode and VideoPlayer.scaleMode properties." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoScaleMode.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class VideoScaleMode" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoScaleMode.html">
                <string name="MAINTAIN_ASPECT_RATIO" object="[fl.video.VideoScaleMode]" text="VideoScaleMode.MAINTAIN_ASPECT_RATIO" constant="true" tiptext="Specifies that the video be constrained within the rectangle determined by the registrationX, registrationY, registrationWidth, and registrationHeight properties but that its original aspect ratio be preserved." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoScaleMode.html#MAINTAIN_ASPECT_RATIO"/>
                <string name="NO_SCALE" object="[fl.video.VideoScaleMode]" text="VideoScaleMode.NO_SCALE" constant="true" tiptext="Specifies that the video be displayed at exactly the height and width of the source video." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoScaleMode.html#NO_SCALE"/>
                <string name="EXACT_FIT" object="[fl.video.VideoScaleMode]" text="VideoScaleMode.EXACT_FIT" constant="true" tiptext="Specifies that the video be displayed at the height and width specified by the registrationHeight or height and registrationWidth or width properties." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoScaleMode.html#EXACT_FIT"/>
            </folder>
        </folder>
        <folder name="VideoState" id="[fl.video.VideoState]" sort="true" index="true" asAncestors="Object" tiptext="The VideoState class provides constant values for the read-only FLVPlayback.state and VideoPlayer.state properties." helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoState.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class VideoState" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoState.html">
                <string name="DISCONNECTED" object="[fl.video.VideoState]" text="VideoState.DISCONNECTED" constant="true" tiptext="The video player is in the disconnected state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoState.html#DISCONNECTED"/>
                <string name="STOPPED" object="[fl.video.VideoState]" text="VideoState.STOPPED" constant="true" tiptext="The video player is in the stopped state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoState.html#STOPPED"/>
                <string name="PLAYING" object="[fl.video.VideoState]" text="VideoState.PLAYING" constant="true" tiptext="The video player is in the playing state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoState.html#PLAYING"/>
                <string name="PAUSED" object="[fl.video.VideoState]" text="VideoState.PAUSED" constant="true" tiptext="The video player is in the paused state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoState.html#PAUSED"/>
                <string name="BUFFERING" object="[fl.video.VideoState]" text="VideoState.BUFFERING" constant="true" tiptext="The video player is in the buffering state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoState.html#BUFFERING"/>
                <string name="LOADING" object="[fl.video.VideoState]" text="VideoState.LOADING" constant="true" tiptext="The video player is in the loading state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoState.html#LOADING"/>
                <string name="CONNECTION_ERROR" object="[fl.video.VideoState]" text="VideoState.CONNECTION_ERROR" constant="true" tiptext="The video player is in the connection error state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoState.html#CONNECTION_ERROR"/>
                <string name="REWINDING" object="[fl.video.VideoState]" text="VideoState.REWINDING" constant="true" tiptext="The video player is in the rewinding state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoState.html#REWINDING"/>
                <string name="SEEKING" object="[fl.video.VideoState]" text="VideoState.SEEKING" constant="true" tiptext="The video player is in the seeking state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoState.html#SEEKING"/>
                <string name="RESIZING" object="[fl.video.VideoState]" text="VideoState.RESIZING" constant="true" tiptext="The video player is in the resizing state." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/fl/video/VideoState.html#RESIZING"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.accessibility" id="flash.accessibility" sort="true" tiptext="Classes for package flash.accessibility" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/package-detail.html">
        <folder name="Accessibility" id="[flash.accessibility.Accessibility]" sort="true" index="true" asAncestors="Object" tiptext="The Accessibility class manages communication with screen readers." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/Accessibility.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Accessibility" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/Accessibility.html">
                <string name="updateProperties" object="[flash.accessibility.Accessibility]" text="Accessibility.updateProperties(%%):void" static="true" tiptext="Tells Flash Player to apply any accessibility changes made by using the DisplayObject.accessibilityProperties property." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/Accessibility.html#updateProperties()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Accessibility" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/Accessibility.html">
                <string name="active" object="[flash.accessibility.Accessibility]" text=".active" tiptext="Indicates whether a screen reader is currently active and the player is communicating with it." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/Accessibility.html#active"/>
            </folder>
        </folder>
        <folder name="AccessibilityProperties" id="[flash.accessibility.AccessibilityProperties]" sort="true" index="true" asAncestors="Object" tiptext="The AccessibilityProperties class lets you control the presentation of Flash objects to accessibility aids, such as screen readers." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/AccessibilityProperties.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class AccessibilityProperties" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/AccessibilityProperties.html">
                <string name="AccessibilityProperties" object="[flash.accessibility.AccessibilityProperties]" text="new AccessibilityProperties(%%)" constructor="true" tiptext="Creates a new AccessibilityProperties object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/AccessibilityProperties.html#AccessibilityProperties()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class AccessibilityProperties" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/AccessibilityProperties.html">
                <string name="name" object="[flash.accessibility.AccessibilityProperties]" text=".name" tiptext="Provides a name for this display object in the accessible presentation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/AccessibilityProperties.html#name"/>
                <string name="description" object="[flash.accessibility.AccessibilityProperties]" text=".description" tiptext="Provides a description for this display object in the accessible presentation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/AccessibilityProperties.html#description"/>
                <string name="shortcut" object="[flash.accessibility.AccessibilityProperties]" text=".shortcut" tiptext="Indicates a keyboard shortcut associated with this display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/AccessibilityProperties.html#shortcut"/>
                <string name="silent" object="[flash.accessibility.AccessibilityProperties]" text=".silent" tiptext="If true, excludes this display object from accessible presentation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/AccessibilityProperties.html#silent"/>
                <string name="forceSimple" object="[flash.accessibility.AccessibilityProperties]" text=".forceSimple" tiptext="If true, causes Flash Player to exclude child objects within this display object from the accessible presentation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/AccessibilityProperties.html#forceSimple"/>
                <string name="noAutoLabeling" object="[flash.accessibility.AccessibilityProperties]" text=".noAutoLabeling" tiptext="If true, disables the Flash Player default auto-labeling system." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/accessibility/AccessibilityProperties.html#noAutoLabeling"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.display" id="flash.display" sort="true" tiptext="Classes for package flash.display" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/package-detail.html">
        <folder name="ActionScriptVersion" id="[flash.display.ActionScriptVersion]" sort="true" index="true" asAncestors="Object" tiptext="The ActionScriptVersion class is an enumeration of constant values that indicate the language version of a loaded SWF file." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/ActionScriptVersion.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class ActionScriptVersion" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/ActionScriptVersion.html">
                <string name="ACTIONSCRIPT2" object="[flash.display.ActionScriptVersion]" text="ActionScriptVersion.ACTIONSCRIPT2" constant="true" tiptext="ActionScript language version 2.0 and earlier." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/ActionScriptVersion.html#ACTIONSCRIPT2"/>
                <string name="ACTIONSCRIPT3" object="[flash.display.ActionScriptVersion]" text="ActionScriptVersion.ACTIONSCRIPT3" constant="true" tiptext="ActionScript language version 3.0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/ActionScriptVersion.html#ACTIONSCRIPT3"/>
            </folder>
        </folder>
        <folder name="Bitmap" id="[flash.display.Bitmap]" sort="true" index="true" asAncestors="flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The Bitmap class represents display objects that represent bitmap images." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Bitmap.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Bitmap" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Bitmap.html">
                <string name="Bitmap" object="[flash.display.Bitmap]" text="new Bitmap(%[bitmapData:flash.display:BitmapData=null,pixelSnapping:String=auto,smoothing:Boolean=false]%)" constructor="true" tiptext="Initializes a Bitmap object to refer to the specified BitmapData object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Bitmap.html#Bitmap()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Bitmap" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Bitmap.html">
                <string name="pixelSnapping" object="[flash.display.Bitmap]" text=".pixelSnapping" tiptext="Controls whether or not the Bitmap object is snapped to the nearest pixel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Bitmap.html#pixelSnapping"/>
                <string name="smoothing" object="[flash.display.Bitmap]" text=".smoothing" tiptext="Controls whether or not the bitmap is smoothed when scaled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Bitmap.html#smoothing"/>
                <string name="bitmapData" object="[flash.display.Bitmap]" text=".bitmapData" tiptext="The BitmapData object being referenced." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Bitmap.html#bitmapData"/>
            </folder>
        </folder>
        <folder name="BitmapData" id="[flash.display.BitmapData]" sort="true" index="true" asAncestors="Object" tiptext="The BitmapData class lets you work with the data (pixels) of a Bitmap object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class BitmapData" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html">
                <string name="BitmapData" object="[flash.display.BitmapData]" text="new BitmapData(%width:int,height:int[,transparent:Boolean=true,fillColor:uint=0xFFFFFFFF]%)" constructor="true" tiptext="Creates a BitmapData object with a specified width and height." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#BitmapData()"/>
                <string name="clone" object="[flash.display.BitmapData]" text=".clone(%%):flash.display:BitmapData" tiptext="Returns a new BitmapData object with an exact copy of the original bitmap." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#clone()"/>
                <string name="getPixel" object="[flash.display.BitmapData]" text=".getPixel(%x:int,y:int%):uint" tiptext="Returns an integer representing a RGB pixel value from a BitmapData object at a specific point." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#getPixel()"/>
                <string name="getPixel32" object="[flash.display.BitmapData]" text=".getPixel32(%x:int,y:int%):uint" tiptext="Returns an ARGB color value that contains alpha channel data and RGB data." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#getPixel32()"/>
                <string name="setPixel" object="[flash.display.BitmapData]" text=".setPixel(%x:int,y:int,color:uint%):void" tiptext="Sets a single pixel of a BitmapData object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#setPixel()"/>
                <string name="setPixel32" object="[flash.display.BitmapData]" text=".setPixel32(%x:int,y:int,color:uint%):void" tiptext="Sets the color and alpha transparency values of a single pixel of a BitmapData object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#setPixel32()"/>
                <string name="applyFilter" object="[flash.display.BitmapData]" text=".applyFilter(%sourceBitmapData:flash.display:BitmapData,sourceRect:flash.geom:Rectangle,destPoint:flash.geom:Point,filter:flash.filters:BitmapFilter%):void" tiptext="Takes a source image and a filter object and generates the filtered image." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#applyFilter()"/>
                <string name="colorTransform" object="[flash.display.BitmapData]" text=".colorTransform(%rect:flash.geom:Rectangle,colorTransform:flash.geom:ColorTransform%):void" tiptext="Adjusts the color values in a specified area of a bitmap image by using a ColorTransform object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#colorTransform()"/>
                <string name="compare" object="[flash.display.BitmapData]" text=".compare(%otherBitmapData:flash.display:BitmapData%):Object" tiptext="Compares two BitmapData objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#compare()"/>
                <string name="copyChannel" object="[flash.display.BitmapData]" text=".copyChannel(%sourceBitmapData:flash.display:BitmapData,sourceRect:flash.geom:Rectangle,destPoint:flash.geom:Point,sourceChannel:uint,destChannel:uint%):void" tiptext="Transfers data from one channel of another BitmapData object or the current BitmapData object into a channel of the current BitmapData object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#copyChannel()"/>
                <string name="copyPixels" object="[flash.display.BitmapData]" text=".copyPixels(%sourceBitmapData:flash.display:BitmapData,sourceRect:flash.geom:Rectangle,destPoint:flash.geom:Point[,alphaBitmapData:flash.display:BitmapData=null,alphaPoint:flash.geom:Point=null,mergeAlpha:Boolean=false]%):void" tiptext="Provides a fast routine to perform pixel manipulation between images with no stretching, rotation, or color effects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#copyPixels()"/>
                <string name="dispose" object="[flash.display.BitmapData]" text=".dispose(%%):void" tiptext="Frees memory that is used to store the BitmapData object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#dispose()"/>
                <string name="draw" object="[flash.display.BitmapData]" text=".draw(%source:flash.display:IBitmapDrawable[,matrix:flash.geom:Matrix=null,colorTransform:flash.geom:ColorTransform=null,blendMode:String=null,clipRect:flash.geom:Rectangle=null,smoothing:Boolean=false]%):void" tiptext="Draws the source display object onto the bitmap image, using the Flash Player vector renderer." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#draw()"/>
                <string name="fillRect" object="[flash.display.BitmapData]" text=".fillRect(%rect:flash.geom:Rectangle,color:uint%):void" tiptext="Fills a rectangular area of pixels with a specified ARGB color." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#fillRect()"/>
                <string name="floodFill" object="[flash.display.BitmapData]" text=".floodFill(%x:int,y:int,color:uint%):void" tiptext="Performs a flood fill operation on an image starting at a (x, y) coordinate." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#floodFill()"/>
                <string name="generateFilterRect" object="[flash.display.BitmapData]" text=".generateFilterRect(%sourceRect:flash.geom:Rectangle,filter:flash.filters:BitmapFilter%):flash.geom:Rectangle" tiptext="Determines the destination rectangle that will be affected by the applyFilter() call." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#generateFilterRect()"/>
                <string name="getColorBoundsRect" object="[flash.display.BitmapData]" text=".getColorBoundsRect(%mask:uint,color:uint[,findColor:Boolean=true]%):flash.geom:Rectangle" tiptext="Determines a rectangular region that either fully encloses all pixels of a specified color within the bitmap image (if the findColor parameter is set to true) or fully encloses all pixels that do not include the specified color (if the findColor parameter is set to false)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#getColorBoundsRect()"/>
                <string name="getPixels" object="[flash.display.BitmapData]" text=".getPixels(%rect:flash.geom:Rectangle%):flash.utils:ByteArray" tiptext="Generates a byte array from a rectangular region of pixel data." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#getPixels()"/>
                <string name="hitTest" object="[flash.display.BitmapData]" text=".hitTest(%firstPoint:flash.geom:Point,firstAlphaThreshold:uint,secondObject:Object[,secondBitmapDataPoint:flash.geom:Point=null,secondAlphaThreshold:uint=1]%):Boolean" tiptext="Performs pixel-level hit detection between one bitmap image and a point, rectangle, or other bitmap image." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#hitTest()"/>
                <string name="merge" object="[flash.display.BitmapData]" text=".merge(%sourceBitmapData:flash.display:BitmapData,sourceRect:flash.geom:Rectangle,destPoint:flash.geom:Point,redMultiplier:uint,greenMultiplier:uint,blueMultiplier:uint,alphaMultiplier:uint%):void" tiptext="Performs per-channel blending from a source image to a destination image." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#merge()"/>
                <string name="noise" object="[flash.display.BitmapData]" text=".noise(%randomSeed:int[,low:uint=0,high:uint=255,channelOptions:uint=7,grayScale:Boolean=false]%):void" tiptext="Fills an image with pixels representing random noise." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#noise()"/>
                <string name="paletteMap" object="[flash.display.BitmapData]" text=".paletteMap(%sourceBitmapData:flash.display:BitmapData,sourceRect:flash.geom:Rectangle,destPoint:flash.geom:Point[,redArray:Array=null,greenArray:Array=null,blueArray:Array=null,alphaArray:Array=null]%):void" tiptext="Remaps the color channel values in an image that has up to four arrays of color palette data, one for each channel." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#paletteMap()"/>
                <string name="perlinNoise" object="[flash.display.BitmapData]" text=".perlinNoise(%baseX:Number,baseY:Number,numOctaves:uint,randomSeed:int,stitch:Boolean,fractalNoise:Boolean[,channelOptions:uint=7,grayScale:Boolean=false,offsets:Array=null]%):void" tiptext="Generates a Perlin noise image." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#perlinNoise()"/>
                <string name="pixelDissolve" object="[flash.display.BitmapData]" text=".pixelDissolve(%sourceBitmapData:flash.display:BitmapData,sourceRect:flash.geom:Rectangle,destPoint:flash.geom:Point[,randomSeed:int=0,numPixels:int=0,fillColor:uint=0]%):int" tiptext="Performs a pixel dissolve either from a source image to a destination image or by using the same image." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#pixelDissolve()"/>
                <string name="scroll" object="[flash.display.BitmapData]" text=".scroll(%x:int,y:int%):void" tiptext="Scrolls an image by a certain (x, y) pixel amount." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#scroll()"/>
                <string name="setPixels" object="[flash.display.BitmapData]" text=".setPixels(%rect:flash.geom:Rectangle,inputByteArray:flash.utils:ByteArray%):void" tiptext="Converts a byte array into a rectangular region of pixel data." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#setPixels()"/>
                <string name="threshold" object="[flash.display.BitmapData]" text=".threshold(%sourceBitmapData:flash.display:BitmapData,sourceRect:flash.geom:Rectangle,destPoint:flash.geom:Point,operation:String,threshold:uint[,color:uint=0,mask:uint=0xFFFFFFFF,copySource:Boolean=false]%):uint" tiptext="Tests pixel values in an image against a specified threshold and sets pixels that pass the test to new color values." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#threshold()"/>
                <string name="lock" object="[flash.display.BitmapData]" text=".lock(%%):void" tiptext="Locks an image so that any objects that reference the BitmapData object, such as Bitmap objects, are not updated when this BitmapData object changes." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#lock()"/>
                <string name="unlock" object="[flash.display.BitmapData]" text=".unlock(%[changeRect:flash.geom:Rectangle=null]%):void" tiptext="Unlocks an image so that any objects that reference the BitmapData object, such as Bitmap objects, are updated when this BitmapData object changes." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#unlock()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class BitmapData" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html">
                <string name="width" object="[flash.display.BitmapData]" text=".width" tiptext="The width of the bitmap image in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#width"/>
                <string name="height" object="[flash.display.BitmapData]" text=".height" tiptext="The height of the bitmap image in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#height"/>
                <string name="transparent" object="[flash.display.BitmapData]" text=".transparent" tiptext="Defines whether the bitmap image supports per-pixel transparency." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#transparent"/>
                <string name="rect" object="[flash.display.BitmapData]" text=".rect" tiptext="The rectangle that defines the size and location of the bitmap image." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapData.html#rect"/>
            </folder>
        </folder>
        <folder name="BitmapDataChannel" id="[flash.display.BitmapDataChannel]" sort="true" index="true" asAncestors="Object" tiptext="The BitmapDataChannel class is an enumeration of constant values that indicate which channel to use: red, blue, green, or alpha transparency." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapDataChannel.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class BitmapDataChannel" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapDataChannel.html">
                <string name="RED" object="[flash.display.BitmapDataChannel]" text="BitmapDataChannel.RED" constant="true" tiptext="The red channel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapDataChannel.html#RED"/>
                <string name="GREEN" object="[flash.display.BitmapDataChannel]" text="BitmapDataChannel.GREEN" constant="true" tiptext="The green channel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapDataChannel.html#GREEN"/>
                <string name="BLUE" object="[flash.display.BitmapDataChannel]" text="BitmapDataChannel.BLUE" constant="true" tiptext="The blue channel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapDataChannel.html#BLUE"/>
                <string name="ALPHA" object="[flash.display.BitmapDataChannel]" text="BitmapDataChannel.ALPHA" constant="true" tiptext="The alpha channel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BitmapDataChannel.html#ALPHA"/>
            </folder>
        </folder>
        <folder name="BlendMode" id="[flash.display.BlendMode]" sort="true" index="true" asAncestors="Object" tiptext="A class that provides constant values for visual blend mode effects." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class BlendMode" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html">
                <string name="NORMAL" object="[flash.display.BlendMode]" text="BlendMode.NORMAL" constant="true" tiptext="The display object appears in front of the background." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#NORMAL"/>
                <string name="LAYER" object="[flash.display.BlendMode]" text="BlendMode.LAYER" constant="true" tiptext="Forces the creation of a transparency group for the display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#LAYER"/>
                <string name="MULTIPLY" object="[flash.display.BlendMode]" text="BlendMode.MULTIPLY" constant="true" tiptext="Multiplies the values of the display object constituent colors by the constituent colors of the background color, and normalizes by dividing by 0xFF, resulting in darker colors." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#MULTIPLY"/>
                <string name="SCREEN" object="[flash.display.BlendMode]" text="BlendMode.SCREEN" constant="true" tiptext="Multiplies the complement (inverse) of the display object color by the complement of the background color, resulting in a bleaching effect." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#SCREEN"/>
                <string name="LIGHTEN" object="[flash.display.BlendMode]" text="BlendMode.LIGHTEN" constant="true" tiptext="Selects the lighter of the constituent colors of the display object and the colors of the background (the colors with the larger values)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#LIGHTEN"/>
                <string name="DARKEN" object="[flash.display.BlendMode]" text="BlendMode.DARKEN" constant="true" tiptext="Selects the darker of the constituent colors of the display object and the colors of the background (the colors with the smaller values)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#DARKEN"/>
                <string name="ADD" object="[flash.display.BlendMode]" text="BlendMode.ADD" constant="true" tiptext="Adds the values of the constituent colors of the display object to the colors of its background, applying a ceiling of 0xFF." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#ADD"/>
                <string name="SUBTRACT" object="[flash.display.BlendMode]" text="BlendMode.SUBTRACT" constant="true" tiptext="Subtracts the values of the constituent colors in the display object from the values of the backgroundcolor, applying a floor of 0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#SUBTRACT"/>
                <string name="DIFFERENCE" object="[flash.display.BlendMode]" text="BlendMode.DIFFERENCE" constant="true" tiptext="Compares the constituent colors of the display object with the colors of its background, and subtracts the darker of the values of the two constituent colors from the lighter value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#DIFFERENCE"/>
                <string name="INVERT" object="[flash.display.BlendMode]" text="BlendMode.INVERT" constant="true" tiptext="Inverts the background." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#INVERT"/>
                <string name="OVERLAY" object="[flash.display.BlendMode]" text="BlendMode.OVERLAY" constant="true" tiptext="Adjusts the color of each pixel based on the darkness of the background." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#OVERLAY"/>
                <string name="HARDLIGHT" object="[flash.display.BlendMode]" text="BlendMode.HARDLIGHT" constant="true" tiptext="Adjusts the color of each pixel based on the darkness of the display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#HARDLIGHT"/>
                <string name="ALPHA" object="[flash.display.BlendMode]" text="BlendMode.ALPHA" constant="true" tiptext="Applies the alpha value of each pixel of the display object to the background." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#ALPHA"/>
                <string name="ERASE" object="[flash.display.BlendMode]" text="BlendMode.ERASE" constant="true" tiptext="Erases the background based on the alpha value of the display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/BlendMode.html#ERASE"/>
            </folder>
        </folder>
        <folder name="CapsStyle" id="[flash.display.CapsStyle]" sort="true" index="true" asAncestors="Object" tiptext="The CapsStyle class is an enumeration of constant values that specify the caps style to use in drawing lines." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/CapsStyle.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class CapsStyle" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/CapsStyle.html">
                <string name="ROUND" object="[flash.display.CapsStyle]" text="CapsStyle.ROUND" constant="true" tiptext="Used to specify round caps in the caps parameter of the flash.display.Graphics.lineStyle() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/CapsStyle.html#ROUND"/>
                <string name="NONE" object="[flash.display.CapsStyle]" text="CapsStyle.NONE" constant="true" tiptext="Used to specify no caps in the caps parameter of the flash.display.Graphics.lineStyle() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/CapsStyle.html#NONE"/>
                <string name="SQUARE" object="[flash.display.CapsStyle]" text="CapsStyle.SQUARE" constant="true" tiptext="Used to specify square caps in the caps parameter of the flash.display.Graphics.lineStyle() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/CapsStyle.html#SQUARE"/>
            </folder>
        </folder>
        <folder name="DisplayObject" id="[flash.display.DisplayObject]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The DisplayObject class is the base class for all objects that can be placed on the display list." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DisplayObject" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html">
                <string name="globalToLocal" object="[flash.display.DisplayObject]" text=".globalToLocal(%point:flash.geom:Point%):flash.geom:Point" tiptext="Converts the point object from Stage (global) coordinates to the display object&apos;s (local) coordinates." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#globalToLocal()"/>
                <string name="localToGlobal" object="[flash.display.DisplayObject]" text=".localToGlobal(%point:flash.geom:Point%):flash.geom:Point" tiptext="Converts the point object from the display object&apos;s (local) coordinates to the Stage (global) coordinates." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#localToGlobal()"/>
                <string name="getBounds" object="[flash.display.DisplayObject]" text=".getBounds(%targetCoordinateSpace:flash.display:DisplayObject%):flash.geom:Rectangle" tiptext="Returns a rectangle that defines the area of the display object relative to the coordinate system of the targetCoordinateSpace object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#getBounds()"/>
                <string name="getRect" object="[flash.display.DisplayObject]" text=".getRect(%targetCoordinateSpace:flash.display:DisplayObject%):flash.geom:Rectangle" tiptext="Returns a rectangle that defines the boundary of the display object, based on the coordinate system defined by the targetCoordinateSpace parameter, excluding any strokes on shapes." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#getRect()"/>
                <string name="hitTestObject" object="[flash.display.DisplayObject]" text=".hitTestObject(%obj:flash.display:DisplayObject%):Boolean" tiptext="Evaluates the display object to see if it overlaps or intersects with the display object passed as a parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#hitTestObject()"/>
                <string name="hitTestPoint" object="[flash.display.DisplayObject]" text=".hitTestPoint(%x:Number,y:Number[,shapeFlag:Boolean=false]%):Boolean" tiptext="Evaluates the display object to see if it overlaps or intersects with a point specified by x and y." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#hitTestPoint()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class DisplayObject" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html">
                <string name="root" object="[flash.display.DisplayObject]" text=".root" tiptext="For a display object in a loaded SWF file, the root property is the top-most display object in the portion of the display list&apos;s tree structure represented by that SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#root"/>
                <string name="stage" object="[flash.display.DisplayObject]" text=".stage" tiptext="The Stage of the display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#stage"/>
                <string name="name" object="[flash.display.DisplayObject]" text=".name" tiptext="Indicates the instance name of the DisplayObject." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#name"/>
                <string name="parent" object="[flash.display.DisplayObject]" text=".parent" tiptext="Indicates the DisplayObjectContainer object that contains this display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#parent"/>
                <string name="mask" object="[flash.display.DisplayObject]" text=".mask" tiptext="The calling display object is masked by the specified mask object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#mask"/>
                <string name="visible" object="[flash.display.DisplayObject]" text=".visible" tiptext="Whether or not the display object is visible." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#visible"/>
                <string name="x" object="[flash.display.DisplayObject]" text=".x" tiptext="Indicates the x coordinate of the DisplayObject instance relative to the local coordinates of the parent DisplayObjectContainer." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#x"/>
                <string name="y" object="[flash.display.DisplayObject]" text=".y" tiptext="Indicates the y coordinate of the DisplayObject instance relative to the local coordinates of the parent DisplayObjectContainer." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#y"/>
                <string name="scaleX" object="[flash.display.DisplayObject]" text=".scaleX" tiptext="Indicates the horizontal scale (percentage) of the object as applied from the registration point." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#scaleX"/>
                <string name="scaleY" object="[flash.display.DisplayObject]" text=".scaleY" tiptext="Indicates the vertical scale (percentage) of an object as applied from the registration point of the object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#scaleY"/>
                <string name="mouseX" object="[flash.display.DisplayObject]" text=".mouseX" tiptext="Indicates the x coordinate of the mouse position, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#mouseX"/>
                <string name="mouseY" object="[flash.display.DisplayObject]" text=".mouseY" tiptext="Indicates the y coordinate of the mouse position, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#mouseY"/>
                <string name="rotation" object="[flash.display.DisplayObject]" text=".rotation" tiptext="Indicates the rotation of the DisplayObject instance, in degrees, from its original orientation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#rotation"/>
                <string name="alpha" object="[flash.display.DisplayObject]" text=".alpha" tiptext="Indicates the alpha transparency value of the object specified." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#alpha"/>
                <string name="width" object="[flash.display.DisplayObject]" text=".width" tiptext="Indicates the width of the display object, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#width"/>
                <string name="height" object="[flash.display.DisplayObject]" text=".height" tiptext="Indicates the height of the display object, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#height"/>
                <string name="cacheAsBitmap" object="[flash.display.DisplayObject]" text=".cacheAsBitmap" tiptext="If set to true, Flash Player caches an internal bitmap representation of the display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#cacheAsBitmap"/>
                <string name="opaqueBackground" object="[flash.display.DisplayObject]" text=".opaqueBackground" tiptext="Specifies whether the display object is opaque with a certain background color." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#opaqueBackground"/>
                <string name="scrollRect" object="[flash.display.DisplayObject]" text=".scrollRect" tiptext="The scroll rectangle bounds of the display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#scrollRect"/>
                <string name="filters" object="[flash.display.DisplayObject]" text=".filters" tiptext="An indexed array that contains each filter object currently associated with the display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#filters"/>
                <string name="blendMode" object="[flash.display.DisplayObject]" text=".blendMode" tiptext="A value from the BlendMode class that specifies which blend mode to use." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#blendMode"/>
                <string name="transform" object="[flash.display.DisplayObject]" text=".transform" tiptext="An object with properties pertaining to a display object&apos;s matrix, color transform, and pixel bounds." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#transform"/>
                <string name="scale9Grid" object="[flash.display.DisplayObject]" text=".scale9Grid" tiptext="The current scaling grid that is in effect." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#scale9Grid"/>
                <string name="loaderInfo" object="[flash.display.DisplayObject]" text=".loaderInfo" tiptext="Returns a LoaderInfo object containing information about loading the file to which this display object belongs." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#loaderInfo"/>
                <string name="accessibilityProperties" object="[flash.display.DisplayObject]" text=".accessibilityProperties" tiptext="The current accessibility options for this display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#accessibilityProperties"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class DisplayObject" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html">
                <string name="render" object="[flash.display.DisplayObject]" text=".addEventListener(%type:String=Event.RENDER{Event.RENDER,Event.REMOVED_FROM_STAGE,Event.REMOVED,Event.ENTER_FRAME,Event.ADDED_TO_STAGE,Event.ADDED},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the display list is about to be updated and rendered." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#event:render"/>
                <string name="removedFromStage" object="[flash.display.DisplayObject]" text=".addEventListener(%type:String=Event.REMOVED_FROM_STAGE{Event.RENDER,Event.REMOVED_FROM_STAGE,Event.REMOVED,Event.ENTER_FRAME,Event.ADDED_TO_STAGE,Event.ADDED},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a display object is about to be removed from the display list, either directly or through the removal of a sub tree in which the display object is contained." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#event:removedFromStage"/>
                <string name="removed" object="[flash.display.DisplayObject]" text=".addEventListener(%type:String=Event.REMOVED{Event.RENDER,Event.REMOVED_FROM_STAGE,Event.REMOVED,Event.ENTER_FRAME,Event.ADDED_TO_STAGE,Event.ADDED},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a display object is about to be removed from the display list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#event:removed"/>
                <string name="enterFrame" object="[flash.display.DisplayObject]" text=".addEventListener(%type:String=Event.ENTER_FRAME{Event.RENDER,Event.REMOVED_FROM_STAGE,Event.REMOVED,Event.ENTER_FRAME,Event.ADDED_TO_STAGE,Event.ADDED},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the playhead is entering a new frame." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#event:enterFrame"/>
                <string name="addedToStage" object="[flash.display.DisplayObject]" text=".addEventListener(%type:String=Event.ADDED_TO_STAGE{Event.RENDER,Event.REMOVED_FROM_STAGE,Event.REMOVED,Event.ENTER_FRAME,Event.ADDED_TO_STAGE,Event.ADDED},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a display object is added to the on stage display list, either directly or through the addition of a sub tree in which the display object is contained." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#event:addedToStage"/>
                <string name="added" object="[flash.display.DisplayObject]" text=".addEventListener(%type:String=Event.ADDED{Event.RENDER,Event.REMOVED_FROM_STAGE,Event.REMOVED,Event.ENTER_FRAME,Event.ADDED_TO_STAGE,Event.ADDED},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a display object is added to the display list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObject.html#event:added"/>
            </folder>
        </folder>
        <folder name="DisplayObjectContainer" id="[flash.display.DisplayObjectContainer]" sort="true" index="true" asAncestors="flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The DisplayObjectContainer class is the base class for all objects that can serve as display object containers on the display list." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DisplayObjectContainer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html">
                <string name="DisplayObjectContainer" object="[flash.display.DisplayObjectContainer]" text="new DisplayObjectContainer(%%)" constructor="true" tiptext="Calling the new DisplayObjectContainer() constructor throws an ArgumentError exception." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#DisplayObjectContainer()"/>
                <string name="addChild" object="[flash.display.DisplayObjectContainer]" text=".addChild(%child:flash.display:DisplayObject%):flash.display:DisplayObject" tiptext="Adds a child object to this DisplayObjectContainer instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#addChild()"/>
                <string name="addChildAt" object="[flash.display.DisplayObjectContainer]" text=".addChildAt(%child:flash.display:DisplayObject,index:int%):flash.display:DisplayObject" tiptext="Adds a child object to this DisplayObjectContainer instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#addChildAt()"/>
                <string name="removeChild" object="[flash.display.DisplayObjectContainer]" text=".removeChild(%child:flash.display:DisplayObject%):flash.display:DisplayObject" tiptext="Removes a child display object from the DisplayObjectContainer instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#removeChild()"/>
                <string name="removeChildAt" object="[flash.display.DisplayObjectContainer]" text=".removeChildAt(%index:int%):flash.display:DisplayObject" tiptext="Removes a child display object, at the specified index position, from the DisplayObjectContainer instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#removeChildAt()"/>
                <string name="getChildIndex" object="[flash.display.DisplayObjectContainer]" text=".getChildIndex(%child:flash.display:DisplayObject%):int" tiptext="Returns the index number of a child DisplayObject instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#getChildIndex()"/>
                <string name="setChildIndex" object="[flash.display.DisplayObjectContainer]" text=".setChildIndex(%child:flash.display:DisplayObject,index:int%):void" tiptext="Changes the index number of an existing child." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#setChildIndex()"/>
                <string name="getChildAt" object="[flash.display.DisplayObjectContainer]" text=".getChildAt(%index:int%):flash.display:DisplayObject" tiptext="Returns the child display object instance that exists at the specified index." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#getChildAt()"/>
                <string name="getChildByName" object="[flash.display.DisplayObjectContainer]" text=".getChildByName(%name:String%):flash.display:DisplayObject" tiptext="Returns the child display object that exists with the specified name." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#getChildByName()"/>
                <string name="getObjectsUnderPoint" object="[flash.display.DisplayObjectContainer]" text=".getObjectsUnderPoint(%point:flash.geom:Point%):Array" tiptext="Returns an array of objects that lie under the specified point and are children (or grandchildren, and so on) of this DisplayObjectContainer instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#getObjectsUnderPoint()"/>
                <string name="areInaccessibleObjectsUnderPoint" object="[flash.display.DisplayObjectContainer]" text=".areInaccessibleObjectsUnderPoint(%point:flash.geom:Point%):Boolean" tiptext="Indicates whether the security restrictions would cause any display objects to be omitted from the list returned by calling the DisplayObjectContainer.getObjectsUnderPoint() method with the specified point point." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#areInaccessibleObjectsUnderPoint()"/>
                <string name="contains" object="[flash.display.DisplayObjectContainer]" text=".contains(%child:flash.display:DisplayObject%):Boolean" tiptext="Determines whether the specified display object is a child of the DisplayObjectContainer instance or the instance itself." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#contains()"/>
                <string name="swapChildrenAt" object="[flash.display.DisplayObjectContainer]" text=".swapChildrenAt(%index1:int,index2:int%):void" tiptext="Swaps the z-order (front-to-back order) of the child objects at the two specified index positions in the child list." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#swapChildrenAt()"/>
                <string name="swapChildren" object="[flash.display.DisplayObjectContainer]" text=".swapChildren(%child1:flash.display:DisplayObject,child2:flash.display:DisplayObject%):void" tiptext="Swaps the z-order (front-to-back order) of the two specified child objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#swapChildren()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class DisplayObjectContainer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html">
                <string name="numChildren" object="[flash.display.DisplayObjectContainer]" text=".numChildren" tiptext="Returns the number of children of this object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#numChildren"/>
                <string name="textSnapshot" object="[flash.display.DisplayObjectContainer]" text=".textSnapshot" tiptext="Returns a TextSnapshot object for this DisplayObjectContainer instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#textSnapshot"/>
                <string name="tabChildren" object="[flash.display.DisplayObjectContainer]" text=".tabChildren" tiptext="Determines whether the children of the object are tab enabled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#tabChildren"/>
                <string name="mouseChildren" object="[flash.display.DisplayObjectContainer]" text=".mouseChildren" tiptext="Determines whether or not the children of the object are mouse enabled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/DisplayObjectContainer.html#mouseChildren"/>
            </folder>
        </folder>
        <folder name="FrameLabel" id="[flash.display.FrameLabel]" sort="true" index="true" asAncestors="Object" tiptext="The FrameLabel object contains properties that specify a frame number and the corresponding label name." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/FrameLabel.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class FrameLabel" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/FrameLabel.html">
                <string name="name" object="[flash.display.FrameLabel]" text=".name" tiptext="The name of the label." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/FrameLabel.html#name"/>
                <string name="frame" object="[flash.display.FrameLabel]" text=".frame" tiptext="The frame number containing the label." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/FrameLabel.html#frame"/>
            </folder>
        </folder>
        <folder name="GradientType" id="[flash.display.GradientType]" sort="true" index="true" asAncestors="Object" tiptext="The GradientType class provides values for the type parameter in the beginGradientFill() and lineGradientStyle() methods of the flash.display.Graphics class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/GradientType.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class GradientType" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/GradientType.html">
                <string name="LINEAR" object="[flash.display.GradientType]" text="GradientType.LINEAR" constant="true" tiptext="Value used to specify a linear gradient fill." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/GradientType.html#LINEAR"/>
                <string name="RADIAL" object="[flash.display.GradientType]" text="GradientType.RADIAL" constant="true" tiptext="Value used to specify a radial gradient fill." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/GradientType.html#RADIAL"/>
            </folder>
        </folder>
        <folder name="Graphics" id="[flash.display.Graphics]" sort="true" index="true" asAncestors="Object" tiptext="The Graphics class contains a set of methods that you can use to create a vector shape." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Graphics" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html">
                <string name="clear" object="[flash.display.Graphics]" text=".clear(%%):void" tiptext="Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#clear()"/>
                <string name="beginFill" object="[flash.display.Graphics]" text=".beginFill(%color:uint[,alpha:Number=1.0]%):void" tiptext="Specifies a single-color fill." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#beginFill()"/>
                <string name="beginGradientFill" object="[flash.display.Graphics]" text=".beginGradientFill(%type:String,colors:Array,alphas:Array,ratios:Array[,matrix:flash.geom:Matrix=null,spreadMethod:String=pad,interpolationMethod:String=rgb,focalPointRatio:Number=0]%):void" tiptext="Specifies a gradient fill." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#beginGradientFill()"/>
                <string name="beginBitmapFill" object="[flash.display.Graphics]" text=".beginBitmapFill(%bitmap:flash.display:BitmapData[,matrix:flash.geom:Matrix=null,repeat:Boolean=true,smooth:Boolean=false]%):void" tiptext="Begins a bitmap filled shape." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#beginBitmapFill()"/>
                <string name="lineGradientStyle" object="[flash.display.Graphics]" text=".lineGradientStyle(%type:String,colors:Array,alphas:Array,ratios:Array[,matrix:flash.geom:Matrix=null,spreadMethod:String=pad,interpolationMethod:String=rgb,focalPointRatio:Number=0]%):void" tiptext="Specifies a gradient for the line style that Flash Player uses for subsequent calls to other Graphics methods (such as lineTo() or drawCircle()) for the object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#lineGradientStyle()"/>
                <string name="lineStyle" object="[flash.display.Graphics]" text=".lineStyle(%[thickness:Number=unknown,color:uint=0,alpha:Number=1.0,pixelHinting:Boolean=false,scaleMode:String=normal,caps:String=null,joints:String=null,miterLimit:Number=3]%):void" tiptext="Specifies a line style that Flash uses for drawing lines." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#lineStyle()"/>
                <string name="drawRect" object="[flash.display.Graphics]" text=".drawRect(%x:Number,y:Number,width:Number,height:Number%):void" tiptext="Draws a round rectangle." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#drawRect()"/>
                <string name="drawRoundRect" object="[flash.display.Graphics]" text=".drawRoundRect(%x:Number,y:Number,width:Number,height:Number,ellipseWidth:Number[,ellipseHeight:Number=unknown]%):void" tiptext="Draws a round rectangle." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#drawRoundRect()"/>
                <string name="drawCircle" object="[flash.display.Graphics]" text=".drawCircle(%x:Number,y:Number,radius:Number%):void" tiptext="Draws a circle." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#drawCircle()"/>
                <string name="drawEllipse" object="[flash.display.Graphics]" text=".drawEllipse(%x:Number,y:Number,width:Number,height:Number%):void" tiptext="Draws an ellipse." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#drawEllipse()"/>
                <string name="moveTo" object="[flash.display.Graphics]" text=".moveTo(%x:Number,y:Number%):void" tiptext="Moves the current drawing position to (x, y)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#moveTo()"/>
                <string name="lineTo" object="[flash.display.Graphics]" text=".lineTo(%x:Number,y:Number%):void" tiptext="Draws a line from the current drawing position to (x, y)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#lineTo()"/>
                <string name="curveTo" object="[flash.display.Graphics]" text=".curveTo(%controlX:Number,controlY:Number,anchorX:Number,anchorY:Number%):void" tiptext="Draws a curve from the current drawing position to (anchorX, anchorY) using the control point specified by (controlX, controlY)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#curveTo()"/>
                <string name="endFill" object="[flash.display.Graphics]" text=".endFill(%%):void" tiptext="Applies a fill to the lines and curves." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Graphics.html#endFill()"/>
            </folder>
        </folder>
        <folder name="InteractiveObject" id="[flash.display.InteractiveObject]" sort="true" index="true" asAncestors="flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The InteractiveObject class is the abstract base class for all display objects with which the user can interact, using the mouse and keyboard." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class InteractiveObject" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html">
                <string name="InteractiveObject" object="[flash.display.InteractiveObject]" text="new InteractiveObject(%%)" constructor="true" tiptext="Calling the new InteractiveObject() constructor throws an ArgumentError exception." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#InteractiveObject()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class InteractiveObject" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html">
                <string name="tabEnabled" object="[flash.display.InteractiveObject]" text=".tabEnabled" tiptext="Specifies whether this object is in the tab order." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#tabEnabled"/>
                <string name="tabIndex" object="[flash.display.InteractiveObject]" text=".tabIndex" tiptext="Specifies the tab ordering of objects in a SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#tabIndex"/>
                <string name="focusRect" object="[flash.display.InteractiveObject]" text=".focusRect" tiptext="Specifies whether this object displays a focus rectangle." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#focusRect"/>
                <string name="mouseEnabled" object="[flash.display.InteractiveObject]" text=".mouseEnabled" tiptext="Specifies whether this object receives mouse messages." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#mouseEnabled"/>
                <string name="doubleClickEnabled" object="[flash.display.InteractiveObject]" text=".doubleClickEnabled" tiptext="Specifies whether the object receives doubleClick events." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#doubleClickEnabled"/>
                <string name="contextMenu" object="[flash.display.InteractiveObject]" text=".contextMenu" tiptext="Specifies the context menu associated with this object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#contextMenu"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class InteractiveObject" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html">
                <string name="tabIndexChange" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=Event.TAB_INDEX_CHANGE{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the value of the object&apos;s tabIndex property changes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:tabIndexChange"/>
                <string name="tabEnabledChange" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=Event.TAB_ENABLED_CHANGE{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the object&apos;s tabEnabled flag changes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:tabEnabledChange"/>
                <string name="tabChildrenChange" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=Event.TAB_CHILDREN_CHANGE{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the value of the object&apos;s tabChildren flag changes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:tabChildrenChange"/>
                <string name="keyUp" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=KeyboardEvent.KEY_UP{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user releases a key." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:keyUp"/>
                <string name="keyDown" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=KeyboardEvent.KEY_DOWN{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user presses a key." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:keyDown"/>
                <string name="rollOver" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=MouseEvent.ROLL_OVER{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user moves a pointing device over an InteractiveObject instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:rollOver"/>
                <string name="rollOut" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=MouseEvent.ROLL_OUT{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user moves a pointing device away from an InteractiveObject instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:rollOut"/>
                <string name="mouseWheel" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=MouseEvent.MOUSE_WHEEL{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a mouse wheel is spun over an InteractiveObject instance in the Flash Player window." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:mouseWheel"/>
                <string name="mouseUp" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=MouseEvent.MOUSE_UP{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a user releases the pointing device button over an InteractiveObject instance in the Flash Player window." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:mouseUp"/>
                <string name="mouseOver" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=MouseEvent.MOUSE_OVER{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user moves a pointing device over an InteractiveObject instance in the Flash Player window." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:mouseOver"/>
                <string name="mouseOut" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=MouseEvent.MOUSE_OUT{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user moves a pointing device away from an InteractiveObject instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:mouseOut"/>
                <string name="mouseMove" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=MouseEvent.MOUSE_MOVE{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a user moves the pointing device while it is over an InteractiveObject." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:mouseMove"/>
                <string name="mouseDown" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=MouseEvent.MOUSE_DOWN{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a user presses the pointing device button over an InteractiveObject instance in the Flash Player window." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:mouseDown"/>
                <string name="doubleClick" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=MouseEvent.DOUBLE_CLICK{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a user presses and releases the main button of a pointing device twice in rapid succession over the same InteractiveObject when that object&apos;s doubleClickEnabled flag is set to true." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:doubleClick"/>
                <string name="click" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=MouseEvent.CLICK{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a user presses and releases the main button of the user&apos;s pointing device over the same InteractiveObject." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:click"/>
                <string name="mouseFocusChange" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=FocusEvent.MOUSE_FOCUS_CHANGE{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user attempts to change focus by using a pointer device." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:mouseFocusChange"/>
                <string name="keyFocusChange" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=FocusEvent.KEY_FOCUS_CHANGE{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user attempts to change focus by using keyboard navigation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:keyFocusChange"/>
                <string name="focusOut" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=FocusEvent.FOCUS_OUT{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after a display object loses focus." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:focusOut"/>
                <string name="focusIn" object="[flash.display.InteractiveObject]" text=".addEventListener(%type:String=FocusEvent.FOCUS_IN{Event.TAB_INDEX_CHANGE,Event.TAB_ENABLED_CHANGE,Event.TAB_CHILDREN_CHANGE,KeyboardEvent.KEY_UP,KeyboardEvent.KEY_DOWN,MouseEvent.ROLL_OVER,MouseEvent.ROLL_OUT,MouseEvent.MOUSE_WHEEL,MouseEvent.MOUSE_UP,MouseEvent.MOUSE_OVER,MouseEvent.MOUSE_OUT,MouseEvent.MOUSE_MOVE,MouseEvent.MOUSE_DOWN,MouseEvent.DOUBLE_CLICK,MouseEvent.CLICK,FocusEvent.MOUSE_FOCUS_CHANGE,FocusEvent.KEY_FOCUS_CHANGE,FocusEvent.FOCUS_OUT,FocusEvent.FOCUS_IN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after a display object gains focus." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InteractiveObject.html#event:focusIn"/>
            </folder>
        </folder>
        <folder name="InterpolationMethod" id="[flash.display.InterpolationMethod]" sort="true" index="true" asAncestors="Object" tiptext="The InterpolationMethod class provides values for the interpolationMethod parameter in the Graphics.beginGradientFill() and Graphics.lineGradientStyle() methods." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InterpolationMethod.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class InterpolationMethod" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InterpolationMethod.html">
                <string name="RGB" object="[flash.display.InterpolationMethod]" text="InterpolationMethod.RGB" constant="true" tiptext="Specifies that the RGB interpolation method should be used." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InterpolationMethod.html#RGB"/>
                <string name="LINEAR_RGB" object="[flash.display.InterpolationMethod]" text="InterpolationMethod.LINEAR_RGB" constant="true" tiptext="Specifies that the linear RGB interpolation method should be used." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/InterpolationMethod.html#LINEAR_RGB"/>
            </folder>
        </folder>
        <folder name="JointStyle" id="[flash.display.JointStyle]" sort="true" index="true" asAncestors="Object" tiptext="The JointStyle class is an enumeration of constant values that specify the joint style to use in drawing lines.These constants are provided for use as values in the joints parameter of theflash.display.Graphics.lineStyle() method." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/JointStyle.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class JointStyle" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/JointStyle.html">
                <string name="ROUND" object="[flash.display.JointStyle]" text="JointStyle.ROUND" constant="true" tiptext="Specifies round joints in the joints parameter of the flash.display.Graphics.lineStyle() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/JointStyle.html#ROUND"/>
                <string name="BEVEL" object="[flash.display.JointStyle]" text="JointStyle.BEVEL" constant="true" tiptext="Specifies beveled joints in the joints parameter of the flash.display.Graphics.lineStyle() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/JointStyle.html#BEVEL"/>
                <string name="MITER" object="[flash.display.JointStyle]" text="JointStyle.MITER" constant="true" tiptext="Specifies mitered joints in the joints parameter of the flash.display.Graphics.lineStyle() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/JointStyle.html#MITER"/>
            </folder>
        </folder>
        <folder name="LineScaleMode" id="[flash.display.LineScaleMode]" sort="true" index="true" asAncestors="Object" tiptext="The LineScaleMode class provides values for the scaleMode parameter in the Graphics.lineStyle() method." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LineScaleMode.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class LineScaleMode" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LineScaleMode.html">
                <string name="NORMAL" object="[flash.display.LineScaleMode]" text="LineScaleMode.NORMAL" constant="true" tiptext="With this setting used as the scaleMode parameter of the lineStyle() method, the thickness of the line always scales when the object is scaled (the default)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LineScaleMode.html#NORMAL"/>
                <string name="VERTICAL" object="[flash.display.LineScaleMode]" text="LineScaleMode.VERTICAL" constant="true" tiptext="With this setting used as the scaleMode parameter of the lineStyle() method, the thickness of the line scales only horizontally." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LineScaleMode.html#VERTICAL"/>
                <string name="HORIZONTAL" object="[flash.display.LineScaleMode]" text="LineScaleMode.HORIZONTAL" constant="true" tiptext="With this setting used as the scaleMode parameter of the lineStyle() method, the thickness of the line scales only vertically." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LineScaleMode.html#HORIZONTAL"/>
                <string name="NONE" object="[flash.display.LineScaleMode]" text="LineScaleMode.NONE" constant="true" tiptext="With this setting used as the scaleMode parameter of the lineStyle() method, the thickness of the line never scales." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LineScaleMode.html#NONE"/>
            </folder>
        </folder>
        <folder name="Loader" id="[flash.display.Loader]" sort="true" index="true" asAncestors="flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The Loader class is used to load SWF files or image (JPG, PNG, or GIF) files." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Loader.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Loader" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Loader.html">
                <string name="Loader" object="[flash.display.Loader]" text="new Loader(%%)" constructor="true" tiptext="Creates a Loader object that you can use to load files, such as SWF, JPEG, GIF, or PNG files." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Loader.html#Loader()"/>
                <string name="load" object="[flash.display.Loader]" text=".load(%request:flash.net:URLRequest[,context:flash.system:LoaderContext=null]%):void" tiptext="Loads a SWF file or image file into a DisplayObject that is a child of this Loader instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Loader.html#load()"/>
                <string name="loadBytes" object="[flash.display.Loader]" text=".loadBytes(%bytes:flash.utils:ByteArray[,context:flash.system:LoaderContext=null]%):void" tiptext="Loads from binary data stored in a ByteArray object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Loader.html#loadBytes()"/>
                <string name="close" object="[flash.display.Loader]" text=".close(%%):void" tiptext="Cancels a load() method operation that is currently in progress for the Loader instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Loader.html#close()"/>
                <string name="unload" object="[flash.display.Loader]" text=".unload(%%):void" tiptext="Removes a child of this Loader object that was loaded by using the load() method." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Loader.html#unload()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Loader" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Loader.html">
                <string name="content" object="[flash.display.Loader]" text=".content" tiptext="Contains the root display object of the SWF file or image (JPG, PNG, or GIF) file that was loaded by using the load() or loadBytes() methods." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Loader.html#content"/>
                <string name="contentLoaderInfo" object="[flash.display.Loader]" text=".contentLoaderInfo" tiptext="Returns a LoaderInfo object corresponding to the object being loaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Loader.html#contentLoaderInfo"/>
            </folder>
        </folder>
        <folder name="LoaderInfo" id="[flash.display.LoaderInfo]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The LoaderInfo class provides information about a loaded SWF file or a loaded image file (JPEG, GIF, or PNG)." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class LoaderInfo" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html">
                <string name="getLoaderInfoByDefinition" object="[flash.display.LoaderInfo]" text="LoaderInfo.getLoaderInfoByDefinition(%object:Object%):flash.display:LoaderInfo" static="true" tiptext="Returns the LoaderInfo object associated with a SWF file defined as an object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#getLoaderInfoByDefinition()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class LoaderInfo" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html">
                <string name="loaderURL" object="[flash.display.LoaderInfo]" text=".loaderURL" tiptext="The URL of the SWF file that initiated the loading of the media described by this LoaderInfo object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#loaderURL"/>
                <string name="url" object="[flash.display.LoaderInfo]" text=".url" tiptext="The URL of the media being loaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#url"/>
                <string name="bytesLoaded" object="[flash.display.LoaderInfo]" text=".bytesLoaded" tiptext="The number of bytes that are loaded for the media." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#bytesLoaded"/>
                <string name="bytesTotal" object="[flash.display.LoaderInfo]" text=".bytesTotal" tiptext="The number of compressed bytes in the entire media file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#bytesTotal"/>
                <string name="applicationDomain" object="[flash.display.LoaderInfo]" text=".applicationDomain" tiptext="When an external SWF file is loaded, all ActionScript 3.0 definitions contained in the loaded class are stored in the applicationDomain property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#applicationDomain"/>
                <string name="swfVersion" object="[flash.display.LoaderInfo]" text=".swfVersion" tiptext="The file format version of the loaded SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#swfVersion"/>
                <string name="actionScriptVersion" object="[flash.display.LoaderInfo]" text=".actionScriptVersion" tiptext="The ActionScript version of the loaded SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#actionScriptVersion"/>
                <string name="frameRate" object="[flash.display.LoaderInfo]" text=".frameRate" tiptext="The nominal frame rate, in frames per second, of the loaded SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#frameRate"/>
                <string name="parameters" object="[flash.display.LoaderInfo]" text=".parameters" tiptext="An object that contains name-value pairs that represent the parameters provided to the loaded SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#parameters"/>
                <string name="width" object="[flash.display.LoaderInfo]" text=".width" tiptext="The nominal width of the loaded content." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#width"/>
                <string name="height" object="[flash.display.LoaderInfo]" text=".height" tiptext="The nominal height of the loaded file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#height"/>
                <string name="contentType" object="[flash.display.LoaderInfo]" text=".contentType" tiptext="The MIME type of the loaded file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#contentType"/>
                <string name="sharedEvents" object="[flash.display.LoaderInfo]" text=".sharedEvents" tiptext="An EventDispatcher instance that can be used to exchange events across security boundaries." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#sharedEvents"/>
                <string name="sameDomain" object="[flash.display.LoaderInfo]" text=".sameDomain" tiptext="Expresses the domain relationship between the loader and the content: true if they have the same origin domain; false otherwise." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#sameDomain"/>
                <string name="childAllowsParent" object="[flash.display.LoaderInfo]" text=".childAllowsParent" tiptext="Expresses the trust relationship from content (child) to the Loader (parent)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#childAllowsParent"/>
                <string name="parentAllowsChild" object="[flash.display.LoaderInfo]" text=".parentAllowsChild" tiptext="Expresses the trust relationship from Loader (parent) to the content (child)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#parentAllowsChild"/>
                <string name="loader" object="[flash.display.LoaderInfo]" text=".loader" tiptext="The Loader object associated with this LoaderInfo object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#loader"/>
                <string name="content" object="[flash.display.LoaderInfo]" text=".content" tiptext="The loaded object associated with this LoaderInfo object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#content"/>
                <string name="bytes" object="[flash.display.LoaderInfo]" text=".bytes" tiptext="The bytes associated with a LoaderInfo object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#bytes"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class LoaderInfo" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html">
                <string name="httpStatus" object="[flash.display.LoaderInfo]" text=".addEventListener(%type:String=HTTPStatusEvent.HTTP_STATUS{HTTPStatusEvent.HTTP_STATUS,Event.UNLOAD,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a network request is made over HTTP and Flash Player can detect the HTTP status code." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#event:httpStatus"/>
                <string name="unload" object="[flash.display.LoaderInfo]" text=".addEventListener(%type:String=Event.UNLOAD{HTTPStatusEvent.HTTP_STATUS,Event.UNLOAD,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched by a LoaderInfo object whenever a loaded object is removed by using the unload() method of the Loader object, or when a second load is performed by the same Loader object and the original content is removed prior to the load beginning." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#event:unload"/>
                <string name="progress" object="[flash.display.LoaderInfo]" text=".addEventListener(%type:String=ProgressEvent.PROGRESS{HTTPStatusEvent.HTTP_STATUS,Event.UNLOAD,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when data is received as the download operation progresses." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#event:progress"/>
                <string name="open" object="[flash.display.LoaderInfo]" text=".addEventListener(%type:String=Event.OPEN{HTTPStatusEvent.HTTP_STATUS,Event.UNLOAD,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a load operation starts." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#event:open"/>
                <string name="ioError" object="[flash.display.LoaderInfo]" text=".addEventListener(%type:String=IOErrorEvent.IO_ERROR{HTTPStatusEvent.HTTP_STATUS,Event.UNLOAD,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an input or output error occurs that causes a load operation to fail." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#event:ioError"/>
                <string name="init" object="[flash.display.LoaderInfo]" text=".addEventListener(%type:String=Event.INIT{HTTPStatusEvent.HTTP_STATUS,Event.UNLOAD,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the properties and methods of a loaded SWF file are accessible." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#event:init"/>
                <string name="complete" object="[flash.display.LoaderInfo]" text=".addEventListener(%type:String=Event.COMPLETE{HTTPStatusEvent.HTTP_STATUS,Event.UNLOAD,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.INIT,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when data has loaded successfully." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/LoaderInfo.html#event:complete"/>
            </folder>
        </folder>
        <folder name="MovieClip" id="[flash.display.MovieClip]" sort="true" index="true" asAncestors="flash.display:Sprite,flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The MovieClip class inherits from the following classes: Sprite, DisplayObjectContainer, InteractiveObject, DisplayObject, and EventDispatcher." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class MovieClip" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html">
                <string name="MovieClip" object="[flash.display.MovieClip]" text="new MovieClip(%%)" constructor="true" tiptext="Creates a new MovieClip instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#MovieClip()"/>
                <string name="play" object="[flash.display.MovieClip]" text=".play(%%):void" tiptext="Moves the playhead in the timeline of the movie clip." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#play()"/>
                <string name="stop" object="[flash.display.MovieClip]" text=".stop(%%):void" tiptext="Stops the playhead in the movie clip." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#stop()"/>
                <string name="nextFrame" object="[flash.display.MovieClip]" text=".nextFrame(%%):void" tiptext="Sends the playhead to the next frame and stops it." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#nextFrame()"/>
                <string name="prevFrame" object="[flash.display.MovieClip]" text=".prevFrame(%%):void" tiptext="Sends the playhead to the previous frame and stops it." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#prevFrame()"/>
                <string name="gotoAndPlay" object="[flash.display.MovieClip]" text=".gotoAndPlay(%frame:Object[,scene:String=null]%):void" tiptext="Starts playing the SWF file at the specified frame." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#gotoAndPlay()"/>
                <string name="gotoAndStop" object="[flash.display.MovieClip]" text=".gotoAndStop(%frame:Object[,scene:String=null]%):void" tiptext="Brings the playhead to the specified frame of the movie clip and stops it there." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#gotoAndStop()"/>
                <string name="prevScene" object="[flash.display.MovieClip]" text=".prevScene(%%):void" tiptext="Moves the playhead to the previous scene of the MovieClip instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#prevScene()"/>
                <string name="nextScene" object="[flash.display.MovieClip]" text=".nextScene(%%):void" tiptext="Moves the playhead to the next scene of the MovieClip instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#nextScene()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class MovieClip" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html">
                <string name="currentFrame" object="[flash.display.MovieClip]" text=".currentFrame" tiptext="Specifies the number of the frame in which the playhead is located in the timeline of the MovieClip instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#currentFrame"/>
                <string name="framesLoaded" object="[flash.display.MovieClip]" text=".framesLoaded" tiptext="The number of frames that are loaded from a streaming SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#framesLoaded"/>
                <string name="totalFrames" object="[flash.display.MovieClip]" text=".totalFrames" tiptext="The total number of frames in the MovieClip instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#totalFrames"/>
                <string name="trackAsMenu" object="[flash.display.MovieClip]" text=".trackAsMenu" tiptext="Indicates whether other display objects that are SimpleButton or MovieClip objects can receive mouse release events." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#trackAsMenu"/>
                <string name="scenes" object="[flash.display.MovieClip]" text=".scenes" tiptext="An array of Scene objects, each listing the name, the number of frames, and the frame labels for a scene in the MovieClip instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#scenes"/>
                <string name="currentScene" object="[flash.display.MovieClip]" text=".currentScene" tiptext="The current scene in which the playhead is located in the timeline of the MovieClip instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#currentScene"/>
                <string name="currentLabel" object="[flash.display.MovieClip]" text=".currentLabel" tiptext="The current label in which the playhead is located in the timeline of the MovieClip instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#currentLabel"/>
                <string name="currentLabels" object="[flash.display.MovieClip]" text=".currentLabels" tiptext="Returns an array of FrameLabel objects from the current scene." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#currentLabels"/>
                <string name="enabled" object="[flash.display.MovieClip]" text=".enabled" tiptext="A Boolean value that indicates whether a movie clip is enabled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/MovieClip.html#enabled"/>
            </folder>
        </folder>
        <folder name="PixelSnapping" id="[flash.display.PixelSnapping]" sort="true" index="true" asAncestors="Object" tiptext="The PixelSnapping class is an enumeration of constant values for setting the pixel snapping options by using the pixelSnapping property of a Bitmap object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/PixelSnapping.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class PixelSnapping" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/PixelSnapping.html">
                <string name="NEVER" object="[flash.display.PixelSnapping]" text="PixelSnapping.NEVER" constant="true" tiptext="A constant value used in the pixelSnapping property of a Bitmap object to specify that no pixel snapping occurs." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/PixelSnapping.html#NEVER"/>
                <string name="ALWAYS" object="[flash.display.PixelSnapping]" text="PixelSnapping.ALWAYS" constant="true" tiptext="A constant value used in the pixelSnapping property of a Bitmap object to specify that the bitmap image is always snapped to the nearest pixel, independent of any transformation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/PixelSnapping.html#ALWAYS"/>
                <string name="AUTO" object="[flash.display.PixelSnapping]" text="PixelSnapping.AUTO" constant="true" tiptext="A constant value used in the pixelSnapping property of a Bitmap object to specify that the bitmap image is snapped to the nearest pixel if it is drawn with no rotation or skew and it is drawn at a scale factor of 99.9% to 100.1%." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/PixelSnapping.html#AUTO"/>
            </folder>
        </folder>
        <folder name="Scene" id="[flash.display.Scene]" sort="true" index="true" asAncestors="Object" tiptext="The Scene class includes properties for identifying the name, labels, and number of frames in a scene." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Scene.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class Scene" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Scene.html">
                <string name="name" object="[flash.display.Scene]" text=".name" tiptext="The name of the scene." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Scene.html#name"/>
                <string name="labels" object="[flash.display.Scene]" text=".labels" tiptext="An array of FrameLabel objects for the scene." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Scene.html#labels"/>
                <string name="numFrames" object="[flash.display.Scene]" text=".numFrames" tiptext="The number of frames in the scene." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Scene.html#numFrames"/>
            </folder>
        </folder>
        <folder name="Shape" id="[flash.display.Shape]" sort="true" index="true" asAncestors="flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The Shape class is used to create lightweight shapes by using the ActionScript drawing application program interface (API)." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Shape.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Shape" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Shape.html">
                <string name="Shape" object="[flash.display.Shape]" text="new Shape(%%)" constructor="true" tiptext="Creates a new Shape object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Shape.html#Shape()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Shape" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Shape.html">
                <string name="graphics" object="[flash.display.Shape]" text=".graphics" tiptext="Specifies the Graphics object belonging to this Shape object, where vector drawing commands can occur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Shape.html#graphics"/>
            </folder>
        </folder>
        <folder name="SimpleButton" id="[flash.display.SimpleButton]" sort="true" index="true" asAncestors="flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The SimpleButton class lets you control all instances of button symbols in a SWF file." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SimpleButton.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SimpleButton" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SimpleButton.html">
                <string name="SimpleButton" object="[flash.display.SimpleButton]" text="new SimpleButton(%[upState:flash.display:DisplayObject=null,overState:flash.display:DisplayObject=null,downState:flash.display:DisplayObject=null,hitTestState:flash.display:DisplayObject=null]%)" constructor="true" tiptext="Creates a new SimpleButton instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SimpleButton.html#SimpleButton()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SimpleButton" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SimpleButton.html">
                <string name="useHandCursor" object="[flash.display.SimpleButton]" text=".useHandCursor" tiptext="A Boolean value that, when set to true, indicates whether Flash Player displays the hand cursor when the mouse rolls over a button." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SimpleButton.html#useHandCursor"/>
                <string name="enabled" object="[flash.display.SimpleButton]" text=".enabled" tiptext="A Boolean value that specifies whether a button is enabled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SimpleButton.html#enabled"/>
                <string name="trackAsMenu" object="[flash.display.SimpleButton]" text=".trackAsMenu" tiptext="Indicates whether other display objects that are SimpleButton or MovieClip objects can receive mouse release events." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SimpleButton.html#trackAsMenu"/>
                <string name="upState" object="[flash.display.SimpleButton]" text=".upState" tiptext="Specifies a display object that is used as the visual object for the button up state &amp;#8212; the state that the button is in when the mouse is not positioned over the button." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SimpleButton.html#upState"/>
                <string name="overState" object="[flash.display.SimpleButton]" text=".overState" tiptext="Specifies a display object that is used as the visual object for the button over state &amp;#8212; the state that the button is in when the mouse is positioned over the button." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SimpleButton.html#overState"/>
                <string name="downState" object="[flash.display.SimpleButton]" text=".downState" tiptext="Specifies a display object that is used as the visual object for the button &quot;Down&quot; state &amp;#8212;the state that the button is in when the user clicks the hitTestState object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SimpleButton.html#downState"/>
                <string name="hitTestState" object="[flash.display.SimpleButton]" text=".hitTestState" tiptext="Specifies a display object that is used as the hit testing object for the button." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SimpleButton.html#hitTestState"/>
                <string name="soundTransform" object="[flash.display.SimpleButton]" text=".soundTransform" tiptext="The SoundTransform object assigned to this button." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SimpleButton.html#soundTransform"/>
            </folder>
        </folder>
        <folder name="SpreadMethod" id="[flash.display.SpreadMethod]" sort="true" index="true" asAncestors="Object" tiptext="The SpreadMethod class provides values for the spreadMethod parameter in the beginGradientFill() and lineGradientStyle() methods of the Graphics class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SpreadMethod.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class SpreadMethod" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SpreadMethod.html">
                <string name="PAD" object="[flash.display.SpreadMethod]" text="SpreadMethod.PAD" constant="true" tiptext="Specifies that the gradient use the pad spread method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SpreadMethod.html#PAD"/>
                <string name="REFLECT" object="[flash.display.SpreadMethod]" text="SpreadMethod.REFLECT" constant="true" tiptext="Specifies that the gradient use the reflect spread method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SpreadMethod.html#REFLECT"/>
                <string name="REPEAT" object="[flash.display.SpreadMethod]" text="SpreadMethod.REPEAT" constant="true" tiptext="Specifies that the gradient use the repeat spread method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SpreadMethod.html#REPEAT"/>
            </folder>
        </folder>
        <folder name="Sprite" id="[flash.display.Sprite]" sort="true" index="true" asAncestors="flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The Sprite class is a basic display list building block: a display list node that can display graphics and can also contain children." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Sprite.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Sprite" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Sprite.html">
                <string name="Sprite" object="[flash.display.Sprite]" text="new Sprite(%%)" constructor="true" tiptext="Creates a new Sprite instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Sprite.html#Sprite()"/>
                <string name="startDrag" object="[flash.display.Sprite]" text=".startDrag(%[lockCenter:Boolean=false,bounds:flash.geom:Rectangle=null]%):void" tiptext="Lets the user drag the specified sprite." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Sprite.html#startDrag()"/>
                <string name="stopDrag" object="[flash.display.Sprite]" text=".stopDrag(%%):void" tiptext="Ends the startDrag() method." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Sprite.html#stopDrag()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Sprite" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Sprite.html">
                <string name="graphics" object="[flash.display.Sprite]" text=".graphics" tiptext="Specifies the Graphics object that belongs to this sprite where vector drawing commands can occur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Sprite.html#graphics"/>
                <string name="buttonMode" object="[flash.display.Sprite]" text=".buttonMode" tiptext="Specifies the button mode of this sprite." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Sprite.html#buttonMode"/>
                <string name="dropTarget" object="[flash.display.Sprite]" text=".dropTarget" tiptext="Specifies the display object over which the sprite is being dragged, or on which the sprite was dropped." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Sprite.html#dropTarget"/>
                <string name="hitArea" object="[flash.display.Sprite]" text=".hitArea" tiptext="Designates another sprite to serve as the hit area for a sprite." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Sprite.html#hitArea"/>
                <string name="useHandCursor" object="[flash.display.Sprite]" text=".useHandCursor" tiptext="A Boolean value that indicates whether the pointing hand (hand cursor) appears when the mouse rolls over a sprite in which the buttonMode property is set to true." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Sprite.html#useHandCursor"/>
                <string name="soundTransform" object="[flash.display.Sprite]" text=".soundTransform" tiptext="Controls sound within this sprite." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Sprite.html#soundTransform"/>
            </folder>
        </folder>
        <folder name="Stage" id="[flash.display.Stage]" sort="true" index="true" asAncestors="flash.display:DisplayObjectContainer,flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The Stage class represents the main drawing area." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Stage" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html">
                <string name="invalidate" object="[flash.display.Stage]" text=".invalidate(%%):void" tiptext="Signals Flash Player to update properties of display objects on the next opportunity it has to refresh the Stage." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#invalidate()"/>
                <string name="isFocusInaccessible" object="[flash.display.Stage]" text=".isFocusInaccessible(%%):Boolean" tiptext="Determines whether the Stage.focus property would return null for security reasons." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#isFocusInaccessible()"/>
                <string name="addChild" object="[flash.display.Stage]" text=".addChild(%child:flash.display:DisplayObject%):flash.display:DisplayObject" tiptext="Adds a child DisplayObject instance to this DisplayObjectContainer instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#addChild()"/>
                <string name="addChildAt" object="[flash.display.Stage]" text=".addChildAt(%child:flash.display:DisplayObject,index:int%):flash.display:DisplayObject" tiptext="Adds a child DisplayObject instance to this DisplayObjectContainer instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#addChildAt()"/>
                <string name="setChildIndex" object="[flash.display.Stage]" text=".setChildIndex(%child:flash.display:DisplayObject,index:int%):void" tiptext="Changes the position of an existing child in the display object container." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#setChildIndex()"/>
                <string name="addEventListener" object="[flash.display.Stage]" text=".addEventListener(%type:String,listener:Function[,useCapture:Boolean=false,priority:int=0,useWeakReference:Boolean=false]%):void" tiptext="Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#addEventListener()"/>
                <string name="dispatchEvent" object="[flash.display.Stage]" text=".dispatchEvent(%event:flash.events:Event%):Boolean" tiptext="Dispatches an event into the event flow." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#dispatchEvent()"/>
                <string name="hasEventListener" object="[flash.display.Stage]" text=".hasEventListener(%type:String%):Boolean" tiptext="Checks whether the EventDispatcher object has any listeners registered for a specific type of event." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#hasEventListener()"/>
                <string name="willTrigger" object="[flash.display.Stage]" text=".willTrigger(%type:String%):Boolean" tiptext="Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#willTrigger()"/>
                <string name="removeChildAt" object="[flash.display.Stage]" text=".removeChildAt(%index:int%):flash.display:DisplayObject" tiptext="Removes a child DisplayObject from the specified index position in the child list of the DisplayObjectContainer." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#removeChildAt()"/>
                <string name="swapChildrenAt" object="[flash.display.Stage]" text=".swapChildrenAt(%index1:int,index2:int%):void" tiptext="Swaps the z-order (front-to-back order) of the child objects at the two specified index positions in the child list." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#swapChildrenAt()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Stage" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html">
                <string name="frameRate" object="[flash.display.Stage]" text=".frameRate" tiptext="Gets and sets the frame rate of the stage." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#frameRate"/>
                <string name="scaleMode" object="[flash.display.Stage]" text=".scaleMode" tiptext="A value from the StageScaleMode class that specifies which scale mode to use." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#scaleMode"/>
                <string name="align" object="[flash.display.Stage]" text=".align" tiptext="A value from the StageAlign class that specifies the alignment of the stage in Flash Player or the browser." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#align"/>
                <string name="stageWidth" object="[flash.display.Stage]" text=".stageWidth" tiptext="Specifies the current width, in pixels, of the Stage." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#stageWidth"/>
                <string name="stageHeight" object="[flash.display.Stage]" text=".stageHeight" tiptext="The current height, in pixels, of the Stage." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#stageHeight"/>
                <string name="showDefaultContextMenu" object="[flash.display.Stage]" text=".showDefaultContextMenu" tiptext="Specifies whether to show or hide the default items in the Flash Player context menu." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#showDefaultContextMenu"/>
                <string name="focus" object="[flash.display.Stage]" text=".focus" tiptext="The interactive object with keyboard focus; or null if focus is not set or if the focused object belongs to a security sandbox to which the calling object does not have access." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#focus"/>
                <string name="stageFocusRect" object="[flash.display.Stage]" text=".stageFocusRect" tiptext="Specifies whether or not objects display a glowing border when they have focus." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#stageFocusRect"/>
                <string name="quality" object="[flash.display.Stage]" text=".quality" tiptext="A value from the StageQuality class that specifies which rendering quality Flash Player uses." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#quality"/>
                <string name="displayState" object="[flash.display.Stage]" text=".displayState" tiptext="A value from the StageDisplayState class that specifies which display state to use." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#displayState"/>
                <string name="fullScreenSourceRect" object="[flash.display.Stage]" text=".fullScreenSourceRect" tiptext="Sets Flash Player to scale a specific region of the stage to full-screen mode." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#fullScreenSourceRect"/>
                <string name="fullScreenWidth" object="[flash.display.Stage]" text=".fullScreenWidth" tiptext="Returns the width of the monitor that will be used when going to full screen size, if that state is entered immediately." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#fullScreenWidth"/>
                <string name="fullScreenHeight" object="[flash.display.Stage]" text=".fullScreenHeight" tiptext="Returns the height of the monitor that will be used when going to full screen size, if that state is entered immediately." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#fullScreenHeight"/>
                <string name="width" object="[flash.display.Stage]" text=".width" tiptext="Indicates the width of the display object, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#width"/>
                <string name="height" object="[flash.display.Stage]" text=".height" tiptext="Indicates the height of the display object, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#height"/>
                <string name="textSnapshot" object="[flash.display.Stage]" text=".textSnapshot" tiptext="Returns a TextSnapshot object for this DisplayObjectContainer instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#textSnapshot"/>
                <string name="mouseChildren" object="[flash.display.Stage]" text=".mouseChildren" tiptext="Determines whether or not the children of the object are mouse enabled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#mouseChildren"/>
                <string name="numChildren" object="[flash.display.Stage]" text=".numChildren" tiptext="Returns the number of children of this object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#numChildren"/>
                <string name="tabChildren" object="[flash.display.Stage]" text=".tabChildren" tiptext="Determines whether the children of the object are tab enabled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#tabChildren"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class Stage" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html">
                <string name="fullScreen" object="[flash.display.Stage]" text=".addEventListener(%type:String=FullScreenEvent.FULL_SCREEN{FullScreenEvent.FULL_SCREEN,Event.RESIZE,Event.MOUSE_LEAVE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched by Flash Player when the Stage object enters, or leaves, full-screen mode." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#event:fullScreen"/>
                <string name="resize" object="[flash.display.Stage]" text=".addEventListener(%type:String=Event.RESIZE{FullScreenEvent.FULL_SCREEN,Event.RESIZE,Event.MOUSE_LEAVE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the scaleMode property of the Stage object is set to StageScaleMode.NO_SCALE and the SWF file is resized." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#event:resize"/>
                <string name="mouseLeave" object="[flash.display.Stage]" text=".addEventListener(%type:String=Event.MOUSE_LEAVE{FullScreenEvent.FULL_SCREEN,Event.RESIZE,Event.MOUSE_LEAVE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched by the Stage object when the mouse pointer moves out of the Flash Player window area." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/Stage.html#event:mouseLeave"/>
            </folder>
        </folder>
        <folder name="StageAlign" id="[flash.display.StageAlign]" sort="true" index="true" asAncestors="Object" tiptext="The StageAlign class provides constant values to use for the Stage.align property." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageAlign.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class StageAlign" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageAlign.html">
                <string name="TOP" object="[flash.display.StageAlign]" text="StageAlign.TOP" constant="true" tiptext="Specifies that the Stage is aligned at the top." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageAlign.html#TOP"/>
                <string name="LEFT" object="[flash.display.StageAlign]" text="StageAlign.LEFT" constant="true" tiptext="Specifies that the Stage is aligned on the left." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageAlign.html#LEFT"/>
                <string name="BOTTOM" object="[flash.display.StageAlign]" text="StageAlign.BOTTOM" constant="true" tiptext="Specifies that the Stage is aligned at the bottom." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageAlign.html#BOTTOM"/>
                <string name="RIGHT" object="[flash.display.StageAlign]" text="StageAlign.RIGHT" constant="true" tiptext="Specifies that the Stage is aligned to the right." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageAlign.html#RIGHT"/>
                <string name="TOP_LEFT" object="[flash.display.StageAlign]" text="StageAlign.TOP_LEFT" constant="true" tiptext="Specifies that the Stage is aligned in the top-left corner." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageAlign.html#TOP_LEFT"/>
                <string name="TOP_RIGHT" object="[flash.display.StageAlign]" text="StageAlign.TOP_RIGHT" constant="true" tiptext="Specifies that the Stage is aligned in the top-right corner." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageAlign.html#TOP_RIGHT"/>
                <string name="BOTTOM_LEFT" object="[flash.display.StageAlign]" text="StageAlign.BOTTOM_LEFT" constant="true" tiptext="Specifies that the Stage is aligned in the bottom-left corner." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageAlign.html#BOTTOM_LEFT"/>
                <string name="BOTTOM_RIGHT" object="[flash.display.StageAlign]" text="StageAlign.BOTTOM_RIGHT" constant="true" tiptext="Specifies that the Stage is aligned in the bottom-right corner." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageAlign.html#BOTTOM_RIGHT"/>
            </folder>
        </folder>
        <folder name="StageDisplayState" id="[flash.display.StageDisplayState]" sort="true" index="true" asAncestors="Object" tiptext="The StageDisplayState class provides values for the Stage.displayState property." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageDisplayState.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class StageDisplayState" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageDisplayState.html">
                <string name="FULL_SCREEN" object="[flash.display.StageDisplayState]" text="StageDisplayState.FULL_SCREEN" constant="true" tiptext="Specifies that the Stage is in full-screen mode." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageDisplayState.html#FULL_SCREEN"/>
                <string name="NORMAL" object="[flash.display.StageDisplayState]" text="StageDisplayState.NORMAL" constant="true" tiptext="Specifies that the Stage is in normal mode." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageDisplayState.html#NORMAL"/>
            </folder>
        </folder>
        <folder name="StageQuality" id="[flash.display.StageQuality]" sort="true" index="true" asAncestors="Object" tiptext="The StageQuality class provides values for the Stage.quality property." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageQuality.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class StageQuality" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageQuality.html">
                <string name="LOW" object="[flash.display.StageQuality]" text="StageQuality.LOW" constant="true" tiptext="Specifies low rendering quality: graphics are not anti-aliased, and bitmaps are not smoothed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageQuality.html#LOW"/>
                <string name="MEDIUM" object="[flash.display.StageQuality]" text="StageQuality.MEDIUM" constant="true" tiptext="Specifies medium rendering quality: graphics are anti-aliased using a 2 x 2 pixel grid, but bitmaps are not smoothed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageQuality.html#MEDIUM"/>
                <string name="HIGH" object="[flash.display.StageQuality]" text="StageQuality.HIGH" constant="true" tiptext="Specifies high rendering quality: graphics are anti-aliased using a 4 x 4 pixel grid, and bitmaps are smoothed if the movie is static." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageQuality.html#HIGH"/>
                <string name="BEST" object="[flash.display.StageQuality]" text="StageQuality.BEST" constant="true" tiptext="Specifies very high rendering quality: graphics are anti-aliased using a 4 x 4 pixel grid and bitmaps are always smoothed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageQuality.html#BEST"/>
            </folder>
        </folder>
        <folder name="StageScaleMode" id="[flash.display.StageScaleMode]" sort="true" index="true" asAncestors="Object" tiptext="The StageScaleMode class provides values for the Stage.scaleMode property." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageScaleMode.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class StageScaleMode" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageScaleMode.html">
                <string name="SHOW_ALL" object="[flash.display.StageScaleMode]" text="StageScaleMode.SHOW_ALL" constant="true" tiptext="Specifies that the entire Flash application be visible in the specified area without distortion while maintaining the original aspect ratio of the application." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageScaleMode.html#SHOW_ALL"/>
                <string name="EXACT_FIT" object="[flash.display.StageScaleMode]" text="StageScaleMode.EXACT_FIT" constant="true" tiptext="Specifies that the entire Adobe&amp;#xAE; Flash&amp;#xAE; application be visible in the specified area without trying to preserve the original aspect ratio." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageScaleMode.html#EXACT_FIT"/>
                <string name="NO_BORDER" object="[flash.display.StageScaleMode]" text="StageScaleMode.NO_BORDER" constant="true" tiptext="Specifies that the entire Flash application fill the specified area, without distortion but possibly with some cropping, while maintaining the original aspect ratio of the application." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageScaleMode.html#NO_BORDER"/>
                <string name="NO_SCALE" object="[flash.display.StageScaleMode]" text="StageScaleMode.NO_SCALE" constant="true" tiptext="Specifies that the size of the Flash application be fixed, so that it remains unchanged even as the size of the player window changes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/StageScaleMode.html#NO_SCALE"/>
            </folder>
        </folder>
        <folder name="SWFVersion" id="[flash.display.SWFVersion]" sort="true" index="true" asAncestors="Object" tiptext="The SWFVersion class is an enumeration of constant values that indicate the file format version of a loaded SWF file." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SWFVersion.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class SWFVersion" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SWFVersion.html">
                <string name="FLASH1" object="[flash.display.SWFVersion]" text="SWFVersion.FLASH1" constant="true" tiptext="SWF file format version 1.0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SWFVersion.html#FLASH1"/>
                <string name="FLASH2" object="[flash.display.SWFVersion]" text="SWFVersion.FLASH2" constant="true" tiptext="SWF file format version 2.0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SWFVersion.html#FLASH2"/>
                <string name="FLASH3" object="[flash.display.SWFVersion]" text="SWFVersion.FLASH3" constant="true" tiptext="SWF file format version 3.0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SWFVersion.html#FLASH3"/>
                <string name="FLASH4" object="[flash.display.SWFVersion]" text="SWFVersion.FLASH4" constant="true" tiptext="SWF file format version 4.0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SWFVersion.html#FLASH4"/>
                <string name="FLASH5" object="[flash.display.SWFVersion]" text="SWFVersion.FLASH5" constant="true" tiptext="SWF file format version 5.0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SWFVersion.html#FLASH5"/>
                <string name="FLASH6" object="[flash.display.SWFVersion]" text="SWFVersion.FLASH6" constant="true" tiptext="SWF file format version 6.0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SWFVersion.html#FLASH6"/>
                <string name="FLASH7" object="[flash.display.SWFVersion]" text="SWFVersion.FLASH7" constant="true" tiptext="SWF file format version 7.0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SWFVersion.html#FLASH7"/>
                <string name="FLASH8" object="[flash.display.SWFVersion]" text="SWFVersion.FLASH8" constant="true" tiptext="SWF file format version 8.0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SWFVersion.html#FLASH8"/>
                <string name="FLASH9" object="[flash.display.SWFVersion]" text="SWFVersion.FLASH9" constant="true" tiptext="SWF file format version 9.0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/display/SWFVersion.html#FLASH9"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.errors" id="flash.errors" sort="true" tiptext="Classes for package flash.errors" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/package-detail.html">
        <folder name="EOFError" id="[flash.errors.EOFError]" sort="true" index="true" asAncestors="flash.errors:IOError,Error,Object" tiptext="An EOFError exception is thrown when you attempt to read past the end of the available data." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/EOFError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class EOFError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/EOFError.html">
                <string name="EOFError" object="[flash.errors.EOFError]" text="new EOFError(%message:String%)" constructor="true" tiptext="Creates a new EOFError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/EOFError.html#EOFError()"/>
            </folder>
        </folder>
        <folder name="IllegalOperationError" id="[flash.errors.IllegalOperationError]" sort="true" index="true" asAncestors="Error,Object" tiptext="The IllegalOperationError exception is thrown when a method is not implemented or the implementation doesn&apos;t cover the current usage." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/IllegalOperationError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IllegalOperationError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/IllegalOperationError.html">
                <string name="IllegalOperationError" object="[flash.errors.IllegalOperationError]" text="new IllegalOperationError(%message:String%)" constructor="true" tiptext="Creates a new IllegalOperationError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/IllegalOperationError.html#IllegalOperationError()"/>
            </folder>
        </folder>
        <folder name="IOError" id="[flash.errors.IOError]" sort="true" index="true" asAncestors="Error,Object" tiptext="The IOError exception is thrown when some type of input or output failure occurs." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/IOError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IOError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/IOError.html">
                <string name="IOError" object="[flash.errors.IOError]" text="new IOError(%message:String%)" constructor="true" tiptext="Creates a new IOError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/IOError.html#IOError()"/>
            </folder>
        </folder>
        <folder name="MemoryError" id="[flash.errors.MemoryError]" sort="true" index="true" asAncestors="Error,Object" tiptext="The MemoryError exception is thrown when a memory allocation request fails." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/MemoryError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class MemoryError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/MemoryError.html">
                <string name="MemoryError" object="[flash.errors.MemoryError]" text="new MemoryError(%message:String%)" constructor="true" tiptext="Creates a new MemoryError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/MemoryError.html#MemoryError()"/>
            </folder>
        </folder>
        <folder name="ScriptTimeoutError" id="[flash.errors.ScriptTimeoutError]" sort="true" index="true" asAncestors="Error,Object" tiptext="The ScriptTimeoutError exception is thrown when the script timeout interval is reached." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/ScriptTimeoutError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ScriptTimeoutError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/ScriptTimeoutError.html">
                <string name="ScriptTimeoutError" object="[flash.errors.ScriptTimeoutError]" text="new ScriptTimeoutError(%message:String%)" constructor="true" tiptext="Creates a new ScriptTimeoutError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/ScriptTimeoutError.html#ScriptTimeoutError()"/>
            </folder>
        </folder>
        <folder name="StackOverflowError" id="[flash.errors.StackOverflowError]" sort="true" index="true" asAncestors="Error,Object" tiptext="ActionScript throws a StackOverflowError exception when the stack available to the script is exhausted." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/StackOverflowError.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class StackOverflowError" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/StackOverflowError.html">
                <string name="StackOverflowError" object="[flash.errors.StackOverflowError]" text="new StackOverflowError(%message:String%)" constructor="true" tiptext="Creates a new StackOverflowError object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/errors/StackOverflowError.html#StackOverflowError()"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.events" id="flash.events" sort="true" tiptext="Classes for package flash.events" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/package-detail.html">
        <folder name="ActivityEvent" id="[flash.events.ActivityEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="A Camera or Microphone object dispatches an ActivityEvent object whenever a camera or microphone reports that it has become active or inactive." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ActivityEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ActivityEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ActivityEvent.html">
                <string name="ActivityEvent" object="[flash.events.ActivityEvent]" text="new ActivityEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,activating:Boolean=false]%)" constructor="true" tiptext="Constructor for ActivityEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ActivityEvent.html#ActivityEvent()"/>
                <string name="clone" object="[flash.events.ActivityEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of an ActivityEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ActivityEvent.html#clone()"/>
                <string name="toString" object="[flash.events.ActivityEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the ActivityEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ActivityEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ActivityEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ActivityEvent.html">
                <string name="ACTIVITY" object="[flash.events.ActivityEvent]" text="ActivityEvent.ACTIVITY" constant="true" tiptext="The ActivityEvent.ACTIVITY constant defines the value of the type property of an activity event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ActivityEvent.html#ACTIVITY"/>
                <string name="activating" object="[flash.events.ActivityEvent]" text=".activating" tiptext="Indicates whether the device is activating (true) or deactivating (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ActivityEvent.html#activating"/>
            </folder>
        </folder>
        <folder name="AsyncErrorEvent" id="[flash.events.AsyncErrorEvent]" sort="true" index="true" asAncestors="flash.events:ErrorEvent,flash.events:TextEvent,flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches an AsyncErrorEvent when an exception is thrown from native asynchronous code, which could be from, for example, LocalConnection, NetConnection, SharedObject, or NetStream." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/AsyncErrorEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class AsyncErrorEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/AsyncErrorEvent.html">
                <string name="AsyncErrorEvent" object="[flash.events.AsyncErrorEvent]" text="new AsyncErrorEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,text:String,error:Error=null]%)" constructor="true" tiptext="Constructor for AsyncErrorEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/AsyncErrorEvent.html#AsyncErrorEvent()"/>
                <string name="clone" object="[flash.events.AsyncErrorEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the AsyncErrorEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/AsyncErrorEvent.html#clone()"/>
                <string name="toString" object="[flash.events.AsyncErrorEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the AsyncErrorEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/AsyncErrorEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class AsyncErrorEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/AsyncErrorEvent.html">
                <string name="ASYNC_ERROR" object="[flash.events.AsyncErrorEvent]" text="AsyncErrorEvent.ASYNC_ERROR" constant="true" tiptext="The AsyncErrorEvent.ASYNC_ERROR constant defines the value of the type property of an asyncError event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/AsyncErrorEvent.html#ASYNC_ERROR"/>
                <string name="error" object="[flash.events.AsyncErrorEvent]" text=".error" tiptext="The exception that was thrown." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/AsyncErrorEvent.html#error"/>
            </folder>
        </folder>
        <folder name="ContextMenuEvent" id="[flash.events.ContextMenuEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches ContextMenuEvent objects when a user generates or interacts with the context menu." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ContextMenuEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ContextMenuEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ContextMenuEvent.html">
                <string name="ContextMenuEvent" object="[flash.events.ContextMenuEvent]" text="new ContextMenuEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,mouseTarget:flash.display:InteractiveObject=null,contextMenuOwner:flash.display:InteractiveObject=null]%)" constructor="true" tiptext="Constructor for ContextMenuEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ContextMenuEvent.html#ContextMenuEvent()"/>
                <string name="clone" object="[flash.events.ContextMenuEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the ContextMenuEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ContextMenuEvent.html#clone()"/>
                <string name="toString" object="[flash.events.ContextMenuEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the ContextMenuEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ContextMenuEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ContextMenuEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ContextMenuEvent.html">
                <string name="MENU_ITEM_SELECT" object="[flash.events.ContextMenuEvent]" text="ContextMenuEvent.MENU_ITEM_SELECT" constant="true" tiptext="Defines the value of the type property of a menuItemSelect event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ContextMenuEvent.html#MENU_ITEM_SELECT"/>
                <string name="MENU_SELECT" object="[flash.events.ContextMenuEvent]" text="ContextMenuEvent.MENU_SELECT" constant="true" tiptext="Defines the value of the type property of a menuSelect event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ContextMenuEvent.html#MENU_SELECT"/>
                <string name="mouseTarget" object="[flash.events.ContextMenuEvent]" text=".mouseTarget" tiptext="The display list object on which the user right-clicked to display the context menu." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ContextMenuEvent.html#mouseTarget"/>
                <string name="contextMenuOwner" object="[flash.events.ContextMenuEvent]" text=".contextMenuOwner" tiptext="The display list object to which the menu is attached." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ContextMenuEvent.html#contextMenuOwner"/>
            </folder>
        </folder>
        <folder name="DataEvent" id="[flash.events.DataEvent]" sort="true" index="true" asAncestors="flash.events:TextEvent,flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches DataEvent objects when raw data has completed loading into Flash Player." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/DataEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DataEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/DataEvent.html">
                <string name="DataEvent" object="[flash.events.DataEvent]" text="new DataEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,data:String]%)" constructor="true" tiptext="Constructor for DataEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/DataEvent.html#DataEvent()"/>
                <string name="clone" object="[flash.events.DataEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the DataEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/DataEvent.html#clone()"/>
                <string name="toString" object="[flash.events.DataEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the DataEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/DataEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class DataEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/DataEvent.html">
                <string name="DATA" object="[flash.events.DataEvent]" text="DataEvent.DATA" constant="true" tiptext="Defines the value of the type property of a data event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/DataEvent.html#DATA"/>
                <string name="UPLOAD_COMPLETE_DATA" object="[flash.events.DataEvent]" text="DataEvent.UPLOAD_COMPLETE_DATA" constant="true" tiptext="Defines the value of the type property of an uploadCompleteData event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/DataEvent.html#UPLOAD_COMPLETE_DATA"/>
                <string name="data" object="[flash.events.DataEvent]" text=".data" tiptext="The raw data loaded into Flash Player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/DataEvent.html#data"/>
            </folder>
        </folder>
        <folder name="ErrorEvent" id="[flash.events.ErrorEvent]" sort="true" index="true" asAncestors="flash.events:TextEvent,flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches ErrorEvent objects when an error causes a network operation to fail." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ErrorEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ErrorEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ErrorEvent.html">
                <string name="ErrorEvent" object="[flash.events.ErrorEvent]" text="new ErrorEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,text:String]%)" constructor="true" tiptext="Constructor for ErrorEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ErrorEvent.html#ErrorEvent()"/>
                <string name="clone" object="[flash.events.ErrorEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the ErrorEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ErrorEvent.html#clone()"/>
                <string name="toString" object="[flash.events.ErrorEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the ErrorEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ErrorEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ErrorEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ErrorEvent.html">
                <string name="ERROR" object="[flash.events.ErrorEvent]" text="ErrorEvent.ERROR" constant="true" tiptext="Defines the value of the type property of an error event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ErrorEvent.html#ERROR"/>
            </folder>
        </folder>
        <folder name="Event" id="[flash.events.Event]" sort="true" index="true" asAncestors="Object" tiptext="The Event class is used as the base class for the creation of Event objects, which are passed as parameters to event listeners when an event occurs." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Event" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html">
                <string name="Event" object="[flash.events.Event]" text="new Event(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false]%)" constructor="true" tiptext="Used to create new Event object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#Event()"/>
                <string name="formatToString" object="[flash.events.Event]" text=".formatToString(%className:String,arguments:restParam%):String" tiptext="A utility function for implementing the toString() method in your custom Event class." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#formatToString()"/>
                <string name="clone" object="[flash.events.Event]" text=".clone(%%):flash.events:Event" tiptext="Duplicates an instance of an Event subclass." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#clone()"/>
                <string name="toString" object="[flash.events.Event]" text=".toString(%%):String" tiptext="Returns a string containing all the properties of the Event object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#toString()"/>
                <string name="stopPropagation" object="[flash.events.Event]" text=".stopPropagation(%%):void" tiptext="Prevents processing of any event listeners in nodes subsequent to the current node in the event flow." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#stopPropagation()"/>
                <string name="stopImmediatePropagation" object="[flash.events.Event]" text=".stopImmediatePropagation(%%):void" tiptext="Prevents processing of any event listeners in the current node and any subsequent nodes in the event flow." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#stopImmediatePropagation()"/>
                <string name="preventDefault" object="[flash.events.Event]" text=".preventDefault(%%):void" tiptext="Cancels an event&apos;s default behavior if that behavior can be canceled." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#preventDefault()"/>
                <string name="isDefaultPrevented" object="[flash.events.Event]" text=".isDefaultPrevented(%%):Boolean" tiptext="Checks whether preventDefault() has been called on the event." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#isDefaultPrevented()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Event" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html">
                <string name="ACTIVATE" object="[flash.events.Event]" text="Event.ACTIVATE" constant="true" tiptext="Defines the value of the type property of an activate event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#ACTIVATE"/>
                <string name="ADDED" object="[flash.events.Event]" text="Event.ADDED" constant="true" tiptext="Defines the value of the type property of an added event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#ADDED"/>
                <string name="ADDED_TO_STAGE" object="[flash.events.Event]" text="Event.ADDED_TO_STAGE" constant="true" tiptext="Defines the value of the type property of an addedToStage event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#ADDED_TO_STAGE"/>
                <string name="CANCEL" object="[flash.events.Event]" text="Event.CANCEL" constant="true" tiptext="Defines the value of the type property of a cancel event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#CANCEL"/>
                <string name="CHANGE" object="[flash.events.Event]" text="Event.CHANGE" constant="true" tiptext="Defines the value of the type property of a change event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#CHANGE"/>
                <string name="CLOSE" object="[flash.events.Event]" text="Event.CLOSE" constant="true" tiptext="Defines the value of the type property of a close event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#CLOSE"/>
                <string name="COMPLETE" object="[flash.events.Event]" text="Event.COMPLETE" constant="true" tiptext="Defines the value of the type property of a complete event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#COMPLETE"/>
                <string name="CONNECT" object="[flash.events.Event]" text="Event.CONNECT" constant="true" tiptext="Defines the value of the type property of a connect event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#CONNECT"/>
                <string name="DEACTIVATE" object="[flash.events.Event]" text="Event.DEACTIVATE" constant="true" tiptext="Defines the value of the type property of a deactivate event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#DEACTIVATE"/>
                <string name="ENTER_FRAME" object="[flash.events.Event]" text="Event.ENTER_FRAME" constant="true" tiptext="Defines the value of the type property of an enterFrame event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#ENTER_FRAME"/>
                <string name="ID3" object="[flash.events.Event]" text="Event.ID3" constant="true" tiptext="Defines the value of the type property of an id3 event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#ID3"/>
                <string name="INIT" object="[flash.events.Event]" text="Event.INIT" constant="true" tiptext="Defines the value of the type property of an init event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#INIT"/>
                <string name="MOUSE_LEAVE" object="[flash.events.Event]" text="Event.MOUSE_LEAVE" constant="true" tiptext="Defines the value of the type property of a mouseLeave event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#MOUSE_LEAVE"/>
                <string name="OPEN" object="[flash.events.Event]" text="Event.OPEN" constant="true" tiptext="Defines the value of the type property of an open event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#OPEN"/>
                <string name="REMOVED" object="[flash.events.Event]" text="Event.REMOVED" constant="true" tiptext="Defines the value of the type property of a removed event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#REMOVED"/>
                <string name="REMOVED_FROM_STAGE" object="[flash.events.Event]" text="Event.REMOVED_FROM_STAGE" constant="true" tiptext="Defines the value of the type property of a removedFromStage event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#REMOVED_FROM_STAGE"/>
                <string name="RENDER" object="[flash.events.Event]" text="Event.RENDER" constant="true" tiptext="Defines the value of the type property of a render event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#RENDER"/>
                <string name="RESIZE" object="[flash.events.Event]" text="Event.RESIZE" constant="true" tiptext="Defines the value of the type property of a resize event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#RESIZE"/>
                <string name="SCROLL" object="[flash.events.Event]" text="Event.SCROLL" constant="true" tiptext="Defines the value of the type property of a scroll event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#SCROLL"/>
                <string name="SELECT" object="[flash.events.Event]" text="Event.SELECT" constant="true" tiptext="Defines the value of the type property of a select event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#SELECT"/>
                <string name="SOUND_COMPLETE" object="[flash.events.Event]" text="Event.SOUND_COMPLETE" constant="true" tiptext="Defines the value of the type property of a soundComplete event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#SOUND_COMPLETE"/>
                <string name="TAB_CHILDREN_CHANGE" object="[flash.events.Event]" text="Event.TAB_CHILDREN_CHANGE" constant="true" tiptext="Defines the value of the type property of a tabChildrenChange event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#TAB_CHILDREN_CHANGE"/>
                <string name="TAB_ENABLED_CHANGE" object="[flash.events.Event]" text="Event.TAB_ENABLED_CHANGE" constant="true" tiptext="Defines the value of the type property of a tabEnabledChange event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#TAB_ENABLED_CHANGE"/>
                <string name="TAB_INDEX_CHANGE" object="[flash.events.Event]" text="Event.TAB_INDEX_CHANGE" constant="true" tiptext="Defines the value of the type property of a tabIndexChange event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#TAB_INDEX_CHANGE"/>
                <string name="UNLOAD" object="[flash.events.Event]" text="Event.UNLOAD" constant="true" tiptext="Defines the value of the type property of an unload event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#UNLOAD"/>
                <string name="FULLSCREEN" object="[flash.events.Event]" text="Event.FULLSCREEN" constant="true" tiptext="Defines the value of the type property of a fullScreen event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#FULLSCREEN"/>
                <string name="type" object="[flash.events.Event]" text=".type" tiptext="The type of event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#type"/>
                <string name="bubbles" object="[flash.events.Event]" text=".bubbles" tiptext="Indicates whether an event is a bubbling event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#bubbles"/>
                <string name="cancelable" object="[flash.events.Event]" text=".cancelable" tiptext="Indicates whether the behavior associated with the event can be prevented." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#cancelable"/>
                <string name="target" object="[flash.events.Event]" text=".target" tiptext="The event target." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#target"/>
                <string name="currentTarget" object="[flash.events.Event]" text=".currentTarget" tiptext="The object that is actively processing the Event object with an event listener." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#currentTarget"/>
                <string name="eventPhase" object="[flash.events.Event]" text=".eventPhase" tiptext="The current phase in the event flow." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/Event.html#eventPhase"/>
            </folder>
        </folder>
        <folder name="EventDispatcher" id="[flash.events.EventDispatcher]" sort="true" index="true" asAncestors="Object" tiptext="The EventDispatcher class implements the IEventDispatcher interface and is the base class for the DisplayObject class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventDispatcher.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class EventDispatcher" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventDispatcher.html">
                <string name="EventDispatcher" object="[flash.events.EventDispatcher]" text="new EventDispatcher(%[target:flash.events:IEventDispatcher=null]%)" constructor="true" tiptext="Aggregates an instance of the EventDispatcher class." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventDispatcher.html#EventDispatcher()"/>
                <string name="addEventListener" object="[flash.events.EventDispatcher]" text=".addEventListener(%type:String,listener:Function[,useCapture:Boolean=false,priority:int=0,useWeakReference:Boolean=false]%):void" tiptext="Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventDispatcher.html#addEventListener()"/>
                <string name="removeEventListener" object="[flash.events.EventDispatcher]" text=".removeEventListener(%type:String,listener:Function[,useCapture:Boolean=false]%):void" tiptext="Removes a listener from the EventDispatcher object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventDispatcher.html#removeEventListener()"/>
                <string name="dispatchEvent" object="[flash.events.EventDispatcher]" text=".dispatchEvent(%event:flash.events:Event%):Boolean" tiptext="Dispatches an event into the event flow." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventDispatcher.html#dispatchEvent()"/>
                <string name="hasEventListener" object="[flash.events.EventDispatcher]" text=".hasEventListener(%type:String%):Boolean" tiptext="Checks whether the EventDispatcher object has any listeners registered for a specific type of event." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventDispatcher.html#hasEventListener()"/>
                <string name="willTrigger" object="[flash.events.EventDispatcher]" text=".willTrigger(%type:String%):Boolean" tiptext="Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventDispatcher.html#willTrigger()"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class EventDispatcher" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventDispatcher.html">
                <string name="deactivate" object="[flash.events.EventDispatcher]" text=".addEventListener(%type:String=Event.DEACTIVATE{Event.DEACTIVATE,Event.ACTIVATE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when Flash Player loses operating system focus and is becoming inactive." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventDispatcher.html#event:deactivate"/>
                <string name="activate" object="[flash.events.EventDispatcher]" text=".addEventListener(%type:String=Event.ACTIVATE{Event.DEACTIVATE,Event.ACTIVATE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when Flash Player gains operating system focus and becomes active." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventDispatcher.html#event:activate"/>
            </folder>
        </folder>
        <folder name="EventPhase" id="[flash.events.EventPhase]" sort="true" index="true" asAncestors="Object" tiptext="The EventPhase class provides values for the eventPhase property of the Event class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventPhase.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class EventPhase" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventPhase.html">
                <string name="CAPTURING_PHASE" object="[flash.events.EventPhase]" text="EventPhase.CAPTURING_PHASE" constant="true" tiptext="The capturing phase, which is the first phase of the event flow." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventPhase.html#CAPTURING_PHASE"/>
                <string name="AT_TARGET" object="[flash.events.EventPhase]" text="EventPhase.AT_TARGET" constant="true" tiptext="The target phase, which is the second phase of the event flow." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventPhase.html#AT_TARGET"/>
                <string name="BUBBLING_PHASE" object="[flash.events.EventPhase]" text="EventPhase.BUBBLING_PHASE" constant="true" tiptext="The bubbling phase, which is the third phase of the event flow." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/EventPhase.html#BUBBLING_PHASE"/>
            </folder>
        </folder>
        <folder name="FocusEvent" id="[flash.events.FocusEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches FocusEvent objects when the user changes the focus from one object in the display list to another." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class FocusEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html">
                <string name="FocusEvent" object="[flash.events.FocusEvent]" text="new FocusEvent(%type:String[,bubbles:Boolean=true,cancelable:Boolean=false,relatedObject:flash.display:InteractiveObject=null,shiftKey:Boolean=false,keyCode:uint=0]%)" constructor="true" tiptext="Constructor for FocusEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html#FocusEvent()"/>
                <string name="clone" object="[flash.events.FocusEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the FocusEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html#clone()"/>
                <string name="toString" object="[flash.events.FocusEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the FocusEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class FocusEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html">
                <string name="FOCUS_IN" object="[flash.events.FocusEvent]" text="FocusEvent.FOCUS_IN" constant="true" tiptext="Defines the value of the type property of a focusIn event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html#FOCUS_IN"/>
                <string name="FOCUS_OUT" object="[flash.events.FocusEvent]" text="FocusEvent.FOCUS_OUT" constant="true" tiptext="Defines the value of the type property of a focusOut event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html#FOCUS_OUT"/>
                <string name="KEY_FOCUS_CHANGE" object="[flash.events.FocusEvent]" text="FocusEvent.KEY_FOCUS_CHANGE" constant="true" tiptext="Defines the value of the type property of a keyFocusChange event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html#KEY_FOCUS_CHANGE"/>
                <string name="MOUSE_FOCUS_CHANGE" object="[flash.events.FocusEvent]" text="FocusEvent.MOUSE_FOCUS_CHANGE" constant="true" tiptext="Defines the value of the type property of a mouseFocusChange event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html#MOUSE_FOCUS_CHANGE"/>
                <string name="relatedObject" object="[flash.events.FocusEvent]" text=".relatedObject" tiptext="A reference to the complementary InteractiveObject instance that is affected by the change in focus." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html#relatedObject"/>
                <string name="shiftKey" object="[flash.events.FocusEvent]" text=".shiftKey" tiptext="Indicates whether the Shift key modifier is activated, in which case the value is true." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html#shiftKey"/>
                <string name="keyCode" object="[flash.events.FocusEvent]" text=".keyCode" tiptext="The key code value of the key pressed to trigger a keyFocusChange event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FocusEvent.html#keyCode"/>
            </folder>
        </folder>
        <folder name="FullScreenEvent" id="[flash.events.FullScreenEvent]" sort="true" index="true" asAncestors="flash.events:ActivityEvent,flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches a FullScreenEvent object whenever the Stage enters or leaves full-screen display mode." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FullScreenEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class FullScreenEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FullScreenEvent.html">
                <string name="FullScreenEvent" object="[flash.events.FullScreenEvent]" text="new FullScreenEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,fullScreen:Boolean=false]%)" constructor="true" tiptext="Constructor for FullScreenEvent objects." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FullScreenEvent.html#FullScreenEvent()"/>
                <string name="clone" object="[flash.events.FullScreenEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of a FullScreenEvent object and sets the value of each property to match that of the original." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FullScreenEvent.html#clone()"/>
                <string name="toString" object="[flash.events.FullScreenEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the FullScreenEvent object." version="9.0.28.0 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FullScreenEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class FullScreenEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FullScreenEvent.html">
                <string name="FULL_SCREEN" object="[flash.events.FullScreenEvent]" text="FullScreenEvent.FULL_SCREEN" constant="true" tiptext="The FullScreenEvent.FULL_SCREEN constant defines the value of the type property of a fullScreen event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FullScreenEvent.html#FULL_SCREEN"/>
                <string name="fullScreen" object="[flash.events.FullScreenEvent]" text=".fullScreen" tiptext="Indicates whether the Stage object is in full-screen mode (true) or not (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/FullScreenEvent.html#fullScreen"/>
            </folder>
        </folder>
        <folder name="HTTPStatusEvent" id="[flash.events.HTTPStatusEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches HTTPStatusEvent objects when a network request returns an HTTPstatus code." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/HTTPStatusEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class HTTPStatusEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/HTTPStatusEvent.html">
                <string name="HTTPStatusEvent" object="[flash.events.HTTPStatusEvent]" text="new HTTPStatusEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,status:int=0]%)" constructor="true" tiptext="Constructor for HTTPStatusEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/HTTPStatusEvent.html#HTTPStatusEvent()"/>
                <string name="clone" object="[flash.events.HTTPStatusEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the HTTPStatusEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/HTTPStatusEvent.html#clone()"/>
                <string name="toString" object="[flash.events.HTTPStatusEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the HTTPStatusEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/HTTPStatusEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class HTTPStatusEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/HTTPStatusEvent.html">
                <string name="HTTP_STATUS" object="[flash.events.HTTPStatusEvent]" text="HTTPStatusEvent.HTTP_STATUS" constant="true" tiptext="Defines the value of the type property of a httpStatus event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/HTTPStatusEvent.html#HTTP_STATUS"/>
                <string name="status" object="[flash.events.HTTPStatusEvent]" text=".status" tiptext="The HTTP status code returned by the server." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/HTTPStatusEvent.html#status"/>
            </folder>
        </folder>
        <folder name="IEventDispatcher" id="[flash.events.IEventDispatcher]" sort="true" index="true" tiptext="The IEventDispatcher interface defines methods for adding or removing event listeners, checks whether specific types of event listeners are registered, and dispatches events.Event targets are an important part of the Flash&amp;#xAE; Player event model." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IEventDispatcher.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IEventDispatcher" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IEventDispatcher.html">
                <string name="addEventListener" object="[flash.events.IEventDispatcher]" text=".addEventListener(%type:String,listener:Function[,useCapture:Boolean=false,priority:int=0,useWeakReference:Boolean=false]%):void" tiptext="Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IEventDispatcher.html#addEventListener()"/>
                <string name="removeEventListener" object="[flash.events.IEventDispatcher]" text=".removeEventListener(%type:String,listener:Function[,useCapture:Boolean=false]%):void" tiptext="Removes a listener from the EventDispatcher object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IEventDispatcher.html#removeEventListener()"/>
                <string name="dispatchEvent" object="[flash.events.IEventDispatcher]" text=".dispatchEvent(%event:flash.events:Event%):Boolean" tiptext="Dispatches an event into the event flow." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IEventDispatcher.html#dispatchEvent()"/>
                <string name="hasEventListener" object="[flash.events.IEventDispatcher]" text=".hasEventListener(%type:String%):Boolean" tiptext="Checks whether the EventDispatcher object has any listeners registered for a specific type of event." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IEventDispatcher.html#hasEventListener()"/>
                <string name="willTrigger" object="[flash.events.IEventDispatcher]" text=".willTrigger(%type:String%):Boolean" tiptext="Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IEventDispatcher.html#willTrigger()"/>
            </folder>
        </folder>
        <folder name="IMEEvent" id="[flash.events.IMEEvent]" sort="true" index="true" asAncestors="flash.events:TextEvent,flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches IMEEvent objects when a user enters text using an input method editor (IME)." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IMEEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IMEEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IMEEvent.html">
                <string name="IMEEvent" object="[flash.events.IMEEvent]" text="new IMEEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,text:String]%)" constructor="true" tiptext="Constructor for IMEEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IMEEvent.html#IMEEvent()"/>
                <string name="clone" object="[flash.events.IMEEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the IMEEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IMEEvent.html#clone()"/>
                <string name="toString" object="[flash.events.IMEEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the IMEEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IMEEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class IMEEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IMEEvent.html">
                <string name="IME_COMPOSITION" object="[flash.events.IMEEvent]" text="IMEEvent.IME_COMPOSITION" constant="true" tiptext="Defines the value of the type property of an imeComposition event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IMEEvent.html#IME_COMPOSITION"/>
            </folder>
        </folder>
        <folder name="IOErrorEvent" id="[flash.events.IOErrorEvent]" sort="true" index="true" asAncestors="flash.events:ErrorEvent,flash.events:TextEvent,flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches an IOErrorEvent object when an error causes a send or load operation to fail.You can check for error events that do not have any listeners by using the debugger version of Flash Player." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IOErrorEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IOErrorEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IOErrorEvent.html">
                <string name="IOErrorEvent" object="[flash.events.IOErrorEvent]" text="new IOErrorEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,text:String]%)" constructor="true" tiptext="Constructor for IOErrorEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IOErrorEvent.html#IOErrorEvent()"/>
                <string name="clone" object="[flash.events.IOErrorEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the IOErrorEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IOErrorEvent.html#clone()"/>
                <string name="toString" object="[flash.events.IOErrorEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the IOErrorEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IOErrorEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class IOErrorEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IOErrorEvent.html">
                <string name="IO_ERROR" object="[flash.events.IOErrorEvent]" text="IOErrorEvent.IO_ERROR" constant="true" tiptext="Defines the value of the type property of an ioError event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/IOErrorEvent.html#IO_ERROR"/>
            </folder>
        </folder>
        <folder name="KeyboardEvent" id="[flash.events.KeyboardEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches KeyboardEvent objects in response to user input through a keyboard." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class KeyboardEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html">
                <string name="KeyboardEvent" object="[flash.events.KeyboardEvent]" text="new KeyboardEvent(%type:String[,bubbles:Boolean=true,cancelable:Boolean=false,charCode:uint=0,keyCode:uint=0,keyLocation:uint=0,ctrlKey:Boolean=false,altKey:Boolean=false,shiftKey:Boolean=false]%)" constructor="true" tiptext="Constructor for KeyboardEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html#KeyboardEvent()"/>
                <string name="clone" object="[flash.events.KeyboardEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the KeyboardEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html#clone()"/>
                <string name="toString" object="[flash.events.KeyboardEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the KeyboardEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html#toString()"/>
                <string name="updateAfterEvent" object="[flash.events.KeyboardEvent]" text=".updateAfterEvent(%%):void" tiptext="Instructs Flash Player to render after processing of this event completes, if the display list has been modified" version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html#updateAfterEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class KeyboardEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html">
                <string name="KEY_DOWN" object="[flash.events.KeyboardEvent]" text="KeyboardEvent.KEY_DOWN" constant="true" tiptext="Defines the value of the type property of a keyDown event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html#KEY_DOWN"/>
                <string name="KEY_UP" object="[flash.events.KeyboardEvent]" text="KeyboardEvent.KEY_UP" constant="true" tiptext="Defines the value of the type property of a keyUp event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html#KEY_UP"/>
                <string name="charCode" object="[flash.events.KeyboardEvent]" text=".charCode" tiptext="Contains the character code value of the key pressed or released." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html#charCode"/>
                <string name="keyCode" object="[flash.events.KeyboardEvent]" text=".keyCode" tiptext="The key code value of the key pressed or released." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html#keyCode"/>
                <string name="keyLocation" object="[flash.events.KeyboardEvent]" text=".keyLocation" tiptext="Indicates the location of the key on the keyboard." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html#keyLocation"/>
                <string name="ctrlKey" object="[flash.events.KeyboardEvent]" text=".ctrlKey" tiptext="Indicates whether the Control key is active (true) or inactive (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html#ctrlKey"/>
                <string name="altKey" object="[flash.events.KeyboardEvent]" text=".altKey" tiptext="Indicates whether the Alt key is active (true) or inactive (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html#altKey"/>
                <string name="shiftKey" object="[flash.events.KeyboardEvent]" text=".shiftKey" tiptext="Indicates whether the Shift key modifier is active (true) or inactive (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/KeyboardEvent.html#shiftKey"/>
            </folder>
        </folder>
        <folder name="MouseEvent" id="[flash.events.MouseEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches MouseEvent objects into the event flow whenever mouse events occur." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class MouseEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html">
                <string name="MouseEvent" object="[flash.events.MouseEvent]" text="new MouseEvent(%type:String[,bubbles:Boolean=true,cancelable:Boolean=false,localX:Number=unknown,localY:Number=unknown,relatedObject:flash.display:InteractiveObject=null,ctrlKey:Boolean=false,altKey:Boolean=false,shiftKey:Boolean=false,buttonDown:Boolean=false,delta:int=0]%)" constructor="true" tiptext="Constructor for MouseEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#MouseEvent()"/>
                <string name="clone" object="[flash.events.MouseEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the MouseEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#clone()"/>
                <string name="toString" object="[flash.events.MouseEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the MouseEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#toString()"/>
                <string name="updateAfterEvent" object="[flash.events.MouseEvent]" text=".updateAfterEvent(%%):void" tiptext="Instructs Flash Player to render after processing of this event completes, if the display list has been modified." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#updateAfterEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class MouseEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html">
                <string name="CLICK" object="[flash.events.MouseEvent]" text="MouseEvent.CLICK" constant="true" tiptext="Defines the value of the type property of a click event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#CLICK"/>
                <string name="DOUBLE_CLICK" object="[flash.events.MouseEvent]" text="MouseEvent.DOUBLE_CLICK" constant="true" tiptext="Defines the value of the type property of a doubleClick event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#DOUBLE_CLICK"/>
                <string name="MOUSE_DOWN" object="[flash.events.MouseEvent]" text="MouseEvent.MOUSE_DOWN" constant="true" tiptext="Defines the value of the type property of a mouseDown event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#MOUSE_DOWN"/>
                <string name="MOUSE_MOVE" object="[flash.events.MouseEvent]" text="MouseEvent.MOUSE_MOVE" constant="true" tiptext="Defines the value of the type property of a mouseMove event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#MOUSE_MOVE"/>
                <string name="MOUSE_OUT" object="[flash.events.MouseEvent]" text="MouseEvent.MOUSE_OUT" constant="true" tiptext="Defines the value of the type property of a mouseOut event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#MOUSE_OUT"/>
                <string name="MOUSE_OVER" object="[flash.events.MouseEvent]" text="MouseEvent.MOUSE_OVER" constant="true" tiptext="Defines the value of the type property of a mouseOver event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#MOUSE_OVER"/>
                <string name="MOUSE_UP" object="[flash.events.MouseEvent]" text="MouseEvent.MOUSE_UP" constant="true" tiptext="Defines the value of the type property of a mouseUp event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#MOUSE_UP"/>
                <string name="MOUSE_WHEEL" object="[flash.events.MouseEvent]" text="MouseEvent.MOUSE_WHEEL" constant="true" tiptext="Defines the value of the type property of a mouseWheel event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#MOUSE_WHEEL"/>
                <string name="ROLL_OUT" object="[flash.events.MouseEvent]" text="MouseEvent.ROLL_OUT" constant="true" tiptext="Defines the value of the type property of a rollOut event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#ROLL_OUT"/>
                <string name="ROLL_OVER" object="[flash.events.MouseEvent]" text="MouseEvent.ROLL_OVER" constant="true" tiptext="Defines the value of the type property of a rollOver event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#ROLL_OVER"/>
                <string name="localX" object="[flash.events.MouseEvent]" text=".localX" tiptext="The horizontal coordinate at which the event occurred relative to the containing sprite." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#localX"/>
                <string name="localY" object="[flash.events.MouseEvent]" text=".localY" tiptext="The vertical coordinate at which the event occurred relative to the containing sprite." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#localY"/>
                <string name="relatedObject" object="[flash.events.MouseEvent]" text=".relatedObject" tiptext="A reference to a display list object that is related to the event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#relatedObject"/>
                <string name="ctrlKey" object="[flash.events.MouseEvent]" text=".ctrlKey" tiptext="Indicates whether the Control key is active (true) or inactive (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#ctrlKey"/>
                <string name="altKey" object="[flash.events.MouseEvent]" text=".altKey" tiptext="Indicates whether the Alt key is active (true) or inactive (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#altKey"/>
                <string name="shiftKey" object="[flash.events.MouseEvent]" text=".shiftKey" tiptext="Indicates whether the Shift key is active (true) or inactive (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#shiftKey"/>
                <string name="buttonDown" object="[flash.events.MouseEvent]" text=".buttonDown" tiptext="Indicates whether the primary mouse button is pressed (true) or not (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#buttonDown"/>
                <string name="delta" object="[flash.events.MouseEvent]" text=".delta" tiptext="Indicates how many lines should be scrolled for each unit the user rotates the mouse wheel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#delta"/>
                <string name="stageX" object="[flash.events.MouseEvent]" text=".stageX" tiptext="The horizontal coordinate at which the event occurred in global Stage coordinates." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#stageX"/>
                <string name="stageY" object="[flash.events.MouseEvent]" text=".stageY" tiptext="The vertical coordinate at which the event occurred in global Stage coordinates." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/MouseEvent.html#stageY"/>
            </folder>
        </folder>
        <folder name="NetStatusEvent" id="[flash.events.NetStatusEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches NetStatusEvent objects when a NetConnection, NetStream, orSharedObject object reports its status." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/NetStatusEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class NetStatusEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/NetStatusEvent.html">
                <string name="NetStatusEvent" object="[flash.events.NetStatusEvent]" text="new NetStatusEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,info:Object=null]%)" constructor="true" tiptext="Constructor for NetStatusEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/NetStatusEvent.html#NetStatusEvent()"/>
                <string name="clone" object="[flash.events.NetStatusEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the NetStatusEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/NetStatusEvent.html#clone()"/>
                <string name="toString" object="[flash.events.NetStatusEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the NetStatusEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/NetStatusEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class NetStatusEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/NetStatusEvent.html">
                <string name="NET_STATUS" object="[flash.events.NetStatusEvent]" text="NetStatusEvent.NET_STATUS" constant="true" tiptext="Defines the value of the type property of a netStatus event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/NetStatusEvent.html#NET_STATUS"/>
                <string name="info" object="[flash.events.NetStatusEvent]" text=".info" tiptext="An object with properties that describe the object&apos;s status or error condition." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/NetStatusEvent.html#info"/>
            </folder>
        </folder>
        <folder name="ProgressEvent" id="[flash.events.ProgressEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches ProgressEvent objects when a load operation has begun or a socket has received data." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ProgressEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ProgressEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ProgressEvent.html">
                <string name="ProgressEvent" object="[flash.events.ProgressEvent]" text="new ProgressEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,bytesLoaded:uint=0,bytesTotal:uint=0]%)" constructor="true" tiptext="Constructor for ProgressEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ProgressEvent.html#ProgressEvent()"/>
                <string name="clone" object="[flash.events.ProgressEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the ProgressEvent object and sets each property&apos;s value to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ProgressEvent.html#clone()"/>
                <string name="toString" object="[flash.events.ProgressEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the ProgressEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ProgressEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ProgressEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ProgressEvent.html">
                <string name="PROGRESS" object="[flash.events.ProgressEvent]" text="ProgressEvent.PROGRESS" constant="true" tiptext="Defines the value of the type property of a progress event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ProgressEvent.html#PROGRESS"/>
                <string name="SOCKET_DATA" object="[flash.events.ProgressEvent]" text="ProgressEvent.SOCKET_DATA" constant="true" tiptext="Defines the value of the type property of a socketData event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ProgressEvent.html#SOCKET_DATA"/>
                <string name="bytesLoaded" object="[flash.events.ProgressEvent]" text=".bytesLoaded" tiptext="The number of items or bytes loaded when the listener processes the event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ProgressEvent.html#bytesLoaded"/>
                <string name="bytesTotal" object="[flash.events.ProgressEvent]" text=".bytesTotal" tiptext="The total number of items or bytes that will be loaded if the loading process succeeds." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/ProgressEvent.html#bytesTotal"/>
            </folder>
        </folder>
        <folder name="SecurityErrorEvent" id="[flash.events.SecurityErrorEvent]" sort="true" index="true" asAncestors="flash.events:ErrorEvent,flash.events:TextEvent,flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches SecurityErrorEvent objects to report the occurrence of a security error." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SecurityErrorEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SecurityErrorEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SecurityErrorEvent.html">
                <string name="SecurityErrorEvent" object="[flash.events.SecurityErrorEvent]" text="new SecurityErrorEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,text:String]%)" constructor="true" tiptext="Constructor for SecurityErrorEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SecurityErrorEvent.html#SecurityErrorEvent()"/>
                <string name="clone" object="[flash.events.SecurityErrorEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the SecurityErrorEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SecurityErrorEvent.html#clone()"/>
                <string name="toString" object="[flash.events.SecurityErrorEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the SecurityErrorEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SecurityErrorEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SecurityErrorEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SecurityErrorEvent.html">
                <string name="SECURITY_ERROR" object="[flash.events.SecurityErrorEvent]" text="SecurityErrorEvent.SECURITY_ERROR" constant="true" tiptext="The SecurityErrorEvent.SECURITY_ERROR constant defines the value of the type property of a securityError event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SecurityErrorEvent.html#SECURITY_ERROR"/>
            </folder>
        </folder>
        <folder name="StatusEvent" id="[flash.events.StatusEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches StatusEvent objects when a device, such as a camera or microphone, or an object such as a LocalConnection object reports its status." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/StatusEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class StatusEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/StatusEvent.html">
                <string name="StatusEvent" object="[flash.events.StatusEvent]" text="new StatusEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,code:String,level:String]%)" constructor="true" tiptext="Constructor for StatusEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/StatusEvent.html#StatusEvent()"/>
                <string name="clone" object="[flash.events.StatusEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the StatusEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/StatusEvent.html#clone()"/>
                <string name="toString" object="[flash.events.StatusEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the StatusEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/StatusEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class StatusEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/StatusEvent.html">
                <string name="STATUS" object="[flash.events.StatusEvent]" text="StatusEvent.STATUS" constant="true" tiptext="Defines the value of the type property of a status event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/StatusEvent.html#STATUS"/>
                <string name="code" object="[flash.events.StatusEvent]" text=".code" tiptext="A description of the object&apos;s status." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/StatusEvent.html#code"/>
                <string name="level" object="[flash.events.StatusEvent]" text=".level" tiptext="The category of the message, such as &quot;status&quot;, &quot;warning&quot; or &quot;error&quot;." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/StatusEvent.html#level"/>
            </folder>
        </folder>
        <folder name="SyncEvent" id="[flash.events.SyncEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches SyncEvent objects when a remote SharedObject instance has been updated by the server." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SyncEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SyncEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SyncEvent.html">
                <string name="SyncEvent" object="[flash.events.SyncEvent]" text="new SyncEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,changeList:Array=null]%)" constructor="true" tiptext="Constructor for SyncEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SyncEvent.html#SyncEvent()"/>
                <string name="clone" object="[flash.events.SyncEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the SyncEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SyncEvent.html#clone()"/>
                <string name="toString" object="[flash.events.SyncEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the SyncEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SyncEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SyncEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SyncEvent.html">
                <string name="SYNC" object="[flash.events.SyncEvent]" text="SyncEvent.SYNC" constant="true" tiptext="Defines the value of the type property of a sync event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SyncEvent.html#SYNC"/>
                <string name="changeList" object="[flash.events.SyncEvent]" text=".changeList" tiptext="An array of objects; each object contains properties that describe the changed members of a remote shared object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/SyncEvent.html#changeList"/>
            </folder>
        </folder>
        <folder name="TextEvent" id="[flash.events.TextEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches TextEvent objects when a user enters text in a text field or clicks a hyperlink in an HTML-enabled text field." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TextEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TextEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TextEvent.html">
                <string name="TextEvent" object="[flash.events.TextEvent]" text="new TextEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false,text:String]%)" constructor="true" tiptext="Constructor for TextEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TextEvent.html#TextEvent()"/>
                <string name="clone" object="[flash.events.TextEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the TextEvent object and sets the value of each property to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TextEvent.html#clone()"/>
                <string name="toString" object="[flash.events.TextEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the TextEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TextEvent.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TextEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TextEvent.html">
                <string name="LINK" object="[flash.events.TextEvent]" text="TextEvent.LINK" constant="true" tiptext="Defines the value of the type property of a link event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TextEvent.html#LINK"/>
                <string name="TEXT_INPUT" object="[flash.events.TextEvent]" text="TextEvent.TEXT_INPUT" constant="true" tiptext="Defines the value of the type property of a textInput event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TextEvent.html#TEXT_INPUT"/>
                <string name="text" object="[flash.events.TextEvent]" text=".text" tiptext="For a textInput event, the character or sequence of characters entered by the user." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TextEvent.html#text"/>
            </folder>
        </folder>
        <folder name="TimerEvent" id="[flash.events.TimerEvent]" sort="true" index="true" asAncestors="flash.events:Event,Object" tiptext="Flash&amp;#xAE; Player dispatches TimerEvent objects whenever a Timer object reaches the interval specified by the Timer.delay property." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TimerEvent.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TimerEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TimerEvent.html">
                <string name="TimerEvent" object="[flash.events.TimerEvent]" text="new TimerEvent(%type:String[,bubbles:Boolean=false,cancelable:Boolean=false]%)" constructor="true" tiptext="Constructor for TimerEvent objects." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TimerEvent.html#TimerEvent()"/>
                <string name="clone" object="[flash.events.TimerEvent]" text=".clone(%%):flash.events:Event" tiptext="Creates a copy of the TimerEvent object and sets each property&apos;s value to match that of the original." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TimerEvent.html#clone()"/>
                <string name="toString" object="[flash.events.TimerEvent]" text=".toString(%%):String" tiptext="Returns a string that contains all the properties of the TimerEvent object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TimerEvent.html#toString()"/>
                <string name="updateAfterEvent" object="[flash.events.TimerEvent]" text=".updateAfterEvent(%%):void" tiptext="Instructs Flash Player to render after processing of this event completes, if the display list has been modified." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TimerEvent.html#updateAfterEvent()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TimerEvent" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TimerEvent.html">
                <string name="TIMER" object="[flash.events.TimerEvent]" text="TimerEvent.TIMER" constant="true" tiptext="Defines the value of the type property of a timer event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TimerEvent.html#TIMER"/>
                <string name="TIMER_COMPLETE" object="[flash.events.TimerEvent]" text="TimerEvent.TIMER_COMPLETE" constant="true" tiptext="Defines the value of the type property of a timerComplete event object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/events/TimerEvent.html#TIMER_COMPLETE"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.external" id="flash.external" sort="true" tiptext="Classes for package flash.external" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/external/package-detail.html">
        <folder name="ExternalInterface" id="[flash.external.ExternalInterface]" sort="true" index="true" asAncestors="Object" tiptext="The ExternalInterface class is the External API, an application programming interface that enables straightforward communication between ActionScript and the Flash Player container&amp;#8211; for example, an HTML page with JavaScript." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/external/ExternalInterface.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ExternalInterface" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/external/ExternalInterface.html">
                <string name="addCallback" object="[flash.external.ExternalInterface]" text="ExternalInterface.addCallback(%functionName:String,closure:Function%):void" static="true" tiptext="Registers an ActionScript method as callable from the container." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/external/ExternalInterface.html#addCallback()"/>
                <string name="call" object="[flash.external.ExternalInterface]" text="ExternalInterface.call(%functionName:String,arguments:restParam%)" static="true" tiptext="Calls a function in the container." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/external/ExternalInterface.html#call()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ExternalInterface" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/external/ExternalInterface.html">
                <string name="marshallExceptions" object="[flash.external.ExternalInterface]" text=".marshallExceptions" tiptext="Indicates whether the external interface should attempt to pass ActionScript exceptions to the current browser and JavaScript exceptions to Flash Player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/external/ExternalInterface.html#marshallExceptions"/>
                <string name="available" object="[flash.external.ExternalInterface]" text=".available" tiptext="Indicates whether this player is in a container that offers an external interface." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/external/ExternalInterface.html#available"/>
                <string name="objectID" object="[flash.external.ExternalInterface]" text=".objectID" tiptext="Returns the id attribute of the object tag in Internet Explorer, or the name attribute of the embed tag in Netscape." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/external/ExternalInterface.html#objectID"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.filters" id="flash.filters" sort="true" tiptext="Classes for package flash.filters" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/package-detail.html">
        <folder name="BevelFilter" id="[flash.filters.BevelFilter]" sort="true" index="true" asAncestors="flash.filters:BitmapFilter,Object" tiptext="The BevelFilter class lets you add a bevel effect to display objects." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class BevelFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html">
                <string name="BevelFilter" object="[flash.filters.BevelFilter]" text="new BevelFilter(%[distance:Number=4.0,angle:Number=45,highlightColor:uint=0xFFFFFF,highlightAlpha:Number=1.0,shadowColor:uint=0x000000,shadowAlpha:Number=1.0,blurX:Number=4.0,blurY:Number=4.0,strength:Number=1,quality:int=1,type:String=inner,knockout:Boolean=false]%)" constructor="true" tiptext="Initializes a new BevelFilter instance with the specified parameters." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#BevelFilter()"/>
                <string name="clone" object="[flash.filters.BevelFilter]" text=".clone(%%):flash.filters:BitmapFilter" tiptext="Returns a copy of this filter object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class BevelFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html">
                <string name="distance" object="[flash.filters.BevelFilter]" text=".distance" tiptext="The offset distance of the bevel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#distance"/>
                <string name="angle" object="[flash.filters.BevelFilter]" text=".angle" tiptext="The angle of the bevel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#angle"/>
                <string name="highlightColor" object="[flash.filters.BevelFilter]" text=".highlightColor" tiptext="The highlight color of the bevel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#highlightColor"/>
                <string name="highlightAlpha" object="[flash.filters.BevelFilter]" text=".highlightAlpha" tiptext="The alpha transparency value of the highlight color." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#highlightAlpha"/>
                <string name="shadowColor" object="[flash.filters.BevelFilter]" text=".shadowColor" tiptext="The shadow color of the bevel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#shadowColor"/>
                <string name="shadowAlpha" object="[flash.filters.BevelFilter]" text=".shadowAlpha" tiptext="The alpha transparency value of the shadow color." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#shadowAlpha"/>
                <string name="blurX" object="[flash.filters.BevelFilter]" text=".blurX" tiptext="The amount of horizontal blur, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#blurX"/>
                <string name="blurY" object="[flash.filters.BevelFilter]" text=".blurY" tiptext="The amount of vertical blur, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#blurY"/>
                <string name="knockout" object="[flash.filters.BevelFilter]" text=".knockout" tiptext="Applies a knockout effect (true), which effectively makes the object&apos;s fill transparent and reveals the background color of the document." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#knockout"/>
                <string name="quality" object="[flash.filters.BevelFilter]" text=".quality" tiptext="The number of times to apply the filter." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#quality"/>
                <string name="strength" object="[flash.filters.BevelFilter]" text=".strength" tiptext="The strength of the imprint or spread." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#strength"/>
                <string name="type" object="[flash.filters.BevelFilter]" text=".type" tiptext="The placement of the bevel on the object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BevelFilter.html#type"/>
            </folder>
        </folder>
        <folder name="BitmapFilter" id="[flash.filters.BitmapFilter]" sort="true" index="true" asAncestors="Object" tiptext="The BitmapFilter class is the base class for all image filter effects." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilter.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class BitmapFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilter.html">
                <string name="clone" object="[flash.filters.BitmapFilter]" text=".clone(%%):flash.filters:BitmapFilter" tiptext="A copy of the BitmapFilter object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilter.html#clone()"/>
            </folder>
        </folder>
        <folder name="BitmapFilterQuality" id="[flash.filters.BitmapFilterQuality]" sort="true" index="true" asAncestors="Object" tiptext="The BitmapFilterQuality class contains values to set the rendering quality of a BitmapFilter object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilterQuality.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class BitmapFilterQuality" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilterQuality.html">
                <string name="LOW" object="[flash.filters.BitmapFilterQuality]" text="BitmapFilterQuality.LOW" constant="true" tiptext="Defines the low quality filter setting." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilterQuality.html#LOW"/>
                <string name="MEDIUM" object="[flash.filters.BitmapFilterQuality]" text="BitmapFilterQuality.MEDIUM" constant="true" tiptext="Defines the medium quality filter setting." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilterQuality.html#MEDIUM"/>
                <string name="HIGH" object="[flash.filters.BitmapFilterQuality]" text="BitmapFilterQuality.HIGH" constant="true" tiptext="Defines the high quality filter setting." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilterQuality.html#HIGH"/>
            </folder>
        </folder>
        <folder name="BitmapFilterType" id="[flash.filters.BitmapFilterType]" sort="true" index="true" asAncestors="Object" tiptext="The BitmapFilterType class contains values to set the type of a BitmapFilter." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilterType.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class BitmapFilterType" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilterType.html">
                <string name="INNER" object="[flash.filters.BitmapFilterType]" text="BitmapFilterType.INNER" constant="true" tiptext="Defines the setting that applies a filter to the inner area of an object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilterType.html#INNER"/>
                <string name="OUTER" object="[flash.filters.BitmapFilterType]" text="BitmapFilterType.OUTER" constant="true" tiptext="Defines the setting that applies a filter to the outer area of an object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilterType.html#OUTER"/>
                <string name="FULL" object="[flash.filters.BitmapFilterType]" text="BitmapFilterType.FULL" constant="true" tiptext="Defines the setting that applies a filter to the entire area of an object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BitmapFilterType.html#FULL"/>
            </folder>
        </folder>
        <folder name="BlurFilter" id="[flash.filters.BlurFilter]" sort="true" index="true" asAncestors="flash.filters:BitmapFilter,Object" tiptext="The BlurFilter class lets you apply a blur visual effect to display objects." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BlurFilter.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class BlurFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BlurFilter.html">
                <string name="BlurFilter" object="[flash.filters.BlurFilter]" text="new BlurFilter(%[blurX:Number=4.0,blurY:Number=4.0,quality:int=1]%)" constructor="true" tiptext="Initializes the filter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BlurFilter.html#BlurFilter()"/>
                <string name="clone" object="[flash.filters.BlurFilter]" text=".clone(%%):flash.filters:BitmapFilter" tiptext="Returns a copy of this filter object." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BlurFilter.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class BlurFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BlurFilter.html">
                <string name="blurX" object="[flash.filters.BlurFilter]" text=".blurX" tiptext="The amount of horizontal blur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BlurFilter.html#blurX"/>
                <string name="blurY" object="[flash.filters.BlurFilter]" text=".blurY" tiptext="The amount of vertical blur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BlurFilter.html#blurY"/>
                <string name="quality" object="[flash.filters.BlurFilter]" text=".quality" tiptext="The number of times to perform the blur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/BlurFilter.html#quality"/>
            </folder>
        </folder>
        <folder name="ColorMatrixFilter" id="[flash.filters.ColorMatrixFilter]" sort="true" index="true" asAncestors="flash.filters:BitmapFilter,Object" tiptext="The ColorMatrixFilter class lets you apply a 4 x 5 matrix transformation on the RGBA color and alpha valuesof every pixel in the input image to produce a result with a new set of RGBA color and alpha values." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ColorMatrixFilter.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ColorMatrixFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ColorMatrixFilter.html">
                <string name="ColorMatrixFilter" object="[flash.filters.ColorMatrixFilter]" text="new ColorMatrixFilter(%[matrix:Array=null]%)" constructor="true" tiptext="Initializes a new ColorMatrixFilter instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ColorMatrixFilter.html#ColorMatrixFilter()"/>
                <string name="clone" object="[flash.filters.ColorMatrixFilter]" text=".clone(%%):flash.filters:BitmapFilter" tiptext="Returns a copy of this filter object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ColorMatrixFilter.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ColorMatrixFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ColorMatrixFilter.html">
                <string name="matrix" object="[flash.filters.ColorMatrixFilter]" text=".matrix" tiptext="An array of 20 items for 4 x 5 color transform." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ColorMatrixFilter.html#matrix"/>
            </folder>
        </folder>
        <folder name="ConvolutionFilter" id="[flash.filters.ConvolutionFilter]" sort="true" index="true" asAncestors="flash.filters:BitmapFilter,Object" tiptext="The ConvolutionFilter class applies a matrix convolution filter effect." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ConvolutionFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html">
                <string name="ConvolutionFilter" object="[flash.filters.ConvolutionFilter]" text="new ConvolutionFilter(%[matrixX:Number=0,matrixY:Number=0,matrix:Array=null,divisor:Number=1.0,bias:Number=0.0,preserveAlpha:Boolean=true,clamp:Boolean=true,color:uint=0,alpha:Number=0.0]%)" constructor="true" tiptext="Initializes a ConvolutionFilter instance with the specified parameters." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html#ConvolutionFilter()"/>
                <string name="clone" object="[flash.filters.ConvolutionFilter]" text=".clone(%%):flash.filters:BitmapFilter" tiptext="Returns a copy of this filter object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ConvolutionFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html">
                <string name="matrix" object="[flash.filters.ConvolutionFilter]" text=".matrix" tiptext="An array of values used for matrix transformation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html#matrix"/>
                <string name="matrixX" object="[flash.filters.ConvolutionFilter]" text=".matrixX" tiptext="The x dimension of the matrix (the number of columns in the matrix)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html#matrixX"/>
                <string name="matrixY" object="[flash.filters.ConvolutionFilter]" text=".matrixY" tiptext="The y dimension of the matrix (the number of rows in the matrix)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html#matrixY"/>
                <string name="divisor" object="[flash.filters.ConvolutionFilter]" text=".divisor" tiptext="The divisor used during matrix transformation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html#divisor"/>
                <string name="bias" object="[flash.filters.ConvolutionFilter]" text=".bias" tiptext="The amount of bias to add to the result of the matrix transformation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html#bias"/>
                <string name="preserveAlpha" object="[flash.filters.ConvolutionFilter]" text=".preserveAlpha" tiptext="Indicates if the alpha channel is preserved without the filter effect or if the convolution filter is applied to the alpha channel as well as the color channels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html#preserveAlpha"/>
                <string name="clamp" object="[flash.filters.ConvolutionFilter]" text=".clamp" tiptext="Indicates whether the image should be clamped." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html#clamp"/>
                <string name="color" object="[flash.filters.ConvolutionFilter]" text=".color" tiptext="The hexadecimal color to substitute for pixels that are off the source image." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html#color"/>
                <string name="alpha" object="[flash.filters.ConvolutionFilter]" text=".alpha" tiptext="The alpha transparency value of the substitute color." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/ConvolutionFilter.html#alpha"/>
            </folder>
        </folder>
        <folder name="DisplacementMapFilter" id="[flash.filters.DisplacementMapFilter]" sort="true" index="true" asAncestors="flash.filters:BitmapFilter,Object" tiptext="The DisplacementMapFilter class uses the pixel values from the specified BitmapData object (called the displacement map image) to perform a displacement of an object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DisplacementMapFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html">
                <string name="DisplacementMapFilter" object="[flash.filters.DisplacementMapFilter]" text="new DisplacementMapFilter(%[mapBitmap:flash.display:BitmapData=null,mapPoint:flash.geom:Point=null,componentX:uint=0,componentY:uint=0,scaleX:Number=0.0,scaleY:Number=0.0,mode:String=wrap,color:uint=0,alpha:Number=0.0]%)" constructor="true" tiptext="Initializes a DisplacementMapFilter instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html#DisplacementMapFilter()"/>
                <string name="clone" object="[flash.filters.DisplacementMapFilter]" text=".clone(%%):flash.filters:BitmapFilter" tiptext="Returns a copy of this filter object." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class DisplacementMapFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html">
                <string name="mapBitmap" object="[flash.filters.DisplacementMapFilter]" text=".mapBitmap" tiptext="A BitmapData object containing the displacement map data." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html#mapBitmap"/>
                <string name="mapPoint" object="[flash.filters.DisplacementMapFilter]" text=".mapPoint" tiptext="A value that contains the offset of the upper-left corner of the target display object from the upper-left corner of the map image." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html#mapPoint"/>
                <string name="componentX" object="[flash.filters.DisplacementMapFilter]" text=".componentX" tiptext="Describes which color channel to use in the map image to displace the x result." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html#componentX"/>
                <string name="componentY" object="[flash.filters.DisplacementMapFilter]" text=".componentY" tiptext="Describes which color channel to use in the map image to displace the y result." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html#componentY"/>
                <string name="scaleX" object="[flash.filters.DisplacementMapFilter]" text=".scaleX" tiptext="The multiplier to use to scale the x displacement result from the map calculation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html#scaleX"/>
                <string name="scaleY" object="[flash.filters.DisplacementMapFilter]" text=".scaleY" tiptext="The multiplier to use to scale the y displacement result from the map calculation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html#scaleY"/>
                <string name="mode" object="[flash.filters.DisplacementMapFilter]" text=".mode" tiptext="The mode for the filter." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html#mode"/>
                <string name="color" object="[flash.filters.DisplacementMapFilter]" text=".color" tiptext="Specifies what color to use for out-of-bounds displacements." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html#color"/>
                <string name="alpha" object="[flash.filters.DisplacementMapFilter]" text=".alpha" tiptext="Specifies the alpha transparency value to use for out-of-bounds displacements." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilter.html#alpha"/>
            </folder>
        </folder>
        <folder name="DisplacementMapFilterMode" id="[flash.filters.DisplacementMapFilterMode]" sort="true" index="true" asAncestors="Object" tiptext="The DisplacementMapFilterMode class provides values for the mode propertyof the DisplacementMapFilter class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilterMode.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class DisplacementMapFilterMode" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilterMode.html">
                <string name="WRAP" object="[flash.filters.DisplacementMapFilterMode]" text="DisplacementMapFilterMode.WRAP" constant="true" tiptext="Wraps the displacement value to the other side of the source image." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilterMode.html#WRAP"/>
                <string name="CLAMP" object="[flash.filters.DisplacementMapFilterMode]" text="DisplacementMapFilterMode.CLAMP" constant="true" tiptext="Clamps the displacement value to the edge of the source image." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilterMode.html#CLAMP"/>
                <string name="IGNORE" object="[flash.filters.DisplacementMapFilterMode]" text="DisplacementMapFilterMode.IGNORE" constant="true" tiptext="If the displacement value is out of range, ignores the displacement and uses the source pixel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilterMode.html#IGNORE"/>
                <string name="COLOR" object="[flash.filters.DisplacementMapFilterMode]" text="DisplacementMapFilterMode.COLOR" constant="true" tiptext="If the displacement value is outside the image, substitutes the values in the color and alpha properties." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DisplacementMapFilterMode.html#COLOR"/>
            </folder>
        </folder>
        <folder name="DropShadowFilter" id="[flash.filters.DropShadowFilter]" sort="true" index="true" asAncestors="flash.filters:BitmapFilter,Object" tiptext="The DropShadowFilter class lets you add a drop shadow to display objects.The shadow algorithm is based on the same box filter that the blur filter uses." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class DropShadowFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html">
                <string name="DropShadowFilter" object="[flash.filters.DropShadowFilter]" text="new DropShadowFilter(%[distance:Number=4.0,angle:Number=45,color:uint=0,alpha:Number=1.0,blurX:Number=4.0,blurY:Number=4.0,strength:Number=1.0,quality:int=1,inner:Boolean=false,knockout:Boolean=false,hideObject:Boolean=false]%)" constructor="true" tiptext="Creates a new DropShadowFilter instance with the specified parameters." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#DropShadowFilter()"/>
                <string name="clone" object="[flash.filters.DropShadowFilter]" text=".clone(%%):flash.filters:BitmapFilter" tiptext="Returns a copy of this filter object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class DropShadowFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html">
                <string name="distance" object="[flash.filters.DropShadowFilter]" text=".distance" tiptext="The offset distance for the shadow, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#distance"/>
                <string name="angle" object="[flash.filters.DropShadowFilter]" text=".angle" tiptext="The angle of the shadow." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#angle"/>
                <string name="color" object="[flash.filters.DropShadowFilter]" text=".color" tiptext="The color of the shadow." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#color"/>
                <string name="alpha" object="[flash.filters.DropShadowFilter]" text=".alpha" tiptext="The alpha transparency value for the shadow color." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#alpha"/>
                <string name="blurX" object="[flash.filters.DropShadowFilter]" text=".blurX" tiptext="The amount of horizontal blur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#blurX"/>
                <string name="blurY" object="[flash.filters.DropShadowFilter]" text=".blurY" tiptext="The amount of vertical blur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#blurY"/>
                <string name="hideObject" object="[flash.filters.DropShadowFilter]" text=".hideObject" tiptext="Indicates whether or not the object is hidden." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#hideObject"/>
                <string name="inner" object="[flash.filters.DropShadowFilter]" text=".inner" tiptext="Indicates whether or not the shadow is an inner shadow." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#inner"/>
                <string name="knockout" object="[flash.filters.DropShadowFilter]" text=".knockout" tiptext="Applies a knockout effect (true), which effectively makes the object&apos;s fill transparent and reveals the background color of the document." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#knockout"/>
                <string name="quality" object="[flash.filters.DropShadowFilter]" text=".quality" tiptext="The number of times to apply the filter." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#quality"/>
                <string name="strength" object="[flash.filters.DropShadowFilter]" text=".strength" tiptext="The strength of the imprint or spread." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/DropShadowFilter.html#strength"/>
            </folder>
        </folder>
        <folder name="GlowFilter" id="[flash.filters.GlowFilter]" sort="true" index="true" asAncestors="flash.filters:BitmapFilter,Object" tiptext="The GlowFilter class lets you apply a glow effect to display objects." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class GlowFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html">
                <string name="GlowFilter" object="[flash.filters.GlowFilter]" text="new GlowFilter(%[color:uint=0xFF0000,alpha:Number=1.0,blurX:Number=6.0,blurY:Number=6.0,strength:Number=2,quality:int=1,inner:Boolean=false,knockout:Boolean=false]%)" constructor="true" tiptext="Initializes a new GlowFilter instance with the specified parameters." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html#GlowFilter()"/>
                <string name="clone" object="[flash.filters.GlowFilter]" text=".clone(%%):flash.filters:BitmapFilter" tiptext="Returns a copy of this filter object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class GlowFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html">
                <string name="color" object="[flash.filters.GlowFilter]" text=".color" tiptext="The color of the glow." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html#color"/>
                <string name="alpha" object="[flash.filters.GlowFilter]" text=".alpha" tiptext="The alpha transparency value for the color." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html#alpha"/>
                <string name="blurX" object="[flash.filters.GlowFilter]" text=".blurX" tiptext="The amount of horizontal blur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html#blurX"/>
                <string name="blurY" object="[flash.filters.GlowFilter]" text=".blurY" tiptext="The amount of vertical blur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html#blurY"/>
                <string name="inner" object="[flash.filters.GlowFilter]" text=".inner" tiptext="Specifies whether the glow is an inner glow." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html#inner"/>
                <string name="knockout" object="[flash.filters.GlowFilter]" text=".knockout" tiptext="Specifies whether the object has a knockout effect." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html#knockout"/>
                <string name="quality" object="[flash.filters.GlowFilter]" text=".quality" tiptext="The number of times to apply the filter." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html#quality"/>
                <string name="strength" object="[flash.filters.GlowFilter]" text=".strength" tiptext="The strength of the imprint or spread." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GlowFilter.html#strength"/>
            </folder>
        </folder>
        <folder name="GradientBevelFilter" id="[flash.filters.GradientBevelFilter]" sort="true" index="true" asAncestors="flash.filters:BitmapFilter,Object" tiptext="The GradientBevelFilter class lets you apply a gradient bevel effect to display objects." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class GradientBevelFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html">
                <string name="GradientBevelFilter" object="[flash.filters.GradientBevelFilter]" text="new GradientBevelFilter(%[distance:Number=4.0,angle:Number=45,colors:Array=null,alphas:Array=null,ratios:Array=null,blurX:Number=4.0,blurY:Number=4.0,strength:Number=1,quality:int=1,type:String=inner,knockout:Boolean=false]%)" constructor="true" tiptext="Initializes the filter with the specified parameters." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#GradientBevelFilter()"/>
                <string name="clone" object="[flash.filters.GradientBevelFilter]" text=".clone(%%):flash.filters:BitmapFilter" tiptext="Returns a copy of this filter object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class GradientBevelFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html">
                <string name="distance" object="[flash.filters.GradientBevelFilter]" text=".distance" tiptext="The offset distance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#distance"/>
                <string name="angle" object="[flash.filters.GradientBevelFilter]" text=".angle" tiptext="The angle, in degrees." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#angle"/>
                <string name="colors" object="[flash.filters.GradientBevelFilter]" text=".colors" tiptext="An array of RGB hexadecimal color values to use in the gradient." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#colors"/>
                <string name="alphas" object="[flash.filters.GradientBevelFilter]" text=".alphas" tiptext="An array of alpha transparency values for the corresponding colors in the colors array." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#alphas"/>
                <string name="ratios" object="[flash.filters.GradientBevelFilter]" text=".ratios" tiptext="An array of color distribution ratios for the corresponding colors in the colors array." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#ratios"/>
                <string name="blurX" object="[flash.filters.GradientBevelFilter]" text=".blurX" tiptext="The amount of horizontal blur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#blurX"/>
                <string name="blurY" object="[flash.filters.GradientBevelFilter]" text=".blurY" tiptext="The amount of vertical blur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#blurY"/>
                <string name="knockout" object="[flash.filters.GradientBevelFilter]" text=".knockout" tiptext="Specifies whether the object has a knockout effect." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#knockout"/>
                <string name="quality" object="[flash.filters.GradientBevelFilter]" text=".quality" tiptext="The number of times to apply the filter." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#quality"/>
                <string name="strength" object="[flash.filters.GradientBevelFilter]" text=".strength" tiptext="The strength of the imprint or spread." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#strength"/>
                <string name="type" object="[flash.filters.GradientBevelFilter]" text=".type" tiptext="The placement of the bevel effect." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientBevelFilter.html#type"/>
            </folder>
        </folder>
        <folder name="GradientGlowFilter" id="[flash.filters.GradientGlowFilter]" sort="true" index="true" asAncestors="flash.filters:BitmapFilter,Object" tiptext="The GradientGlowFilter class lets you apply a gradient glow effect to display objects." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class GradientGlowFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html">
                <string name="GradientGlowFilter" object="[flash.filters.GradientGlowFilter]" text="new GradientGlowFilter(%[distance:Number=4.0,angle:Number=45,colors:Array=null,alphas:Array=null,ratios:Array=null,blurX:Number=4.0,blurY:Number=4.0,strength:Number=1,quality:int=1,type:String=inner,knockout:Boolean=false]%)" constructor="true" tiptext="Initializes the filter with the specified parameters." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#GradientGlowFilter()"/>
                <string name="clone" object="[flash.filters.GradientGlowFilter]" text=".clone(%%):flash.filters:BitmapFilter" tiptext="Returns a copy of this filter object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class GradientGlowFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html">
                <string name="angle" object="[flash.filters.GradientGlowFilter]" text=".angle" tiptext="The angle, in degrees." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#angle"/>
                <string name="alphas" object="[flash.filters.GradientGlowFilter]" text=".alphas" tiptext="An array of alpha transparency values for the corresponding colors in the colors array." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#alphas"/>
                <string name="blurX" object="[flash.filters.GradientGlowFilter]" text=".blurX" tiptext="The amount of horizontal blur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#blurX"/>
                <string name="blurY" object="[flash.filters.GradientGlowFilter]" text=".blurY" tiptext="The amount of vertical blur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#blurY"/>
                <string name="colors" object="[flash.filters.GradientGlowFilter]" text=".colors" tiptext="An array of colors that defines a gradient." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#colors"/>
                <string name="distance" object="[flash.filters.GradientGlowFilter]" text=".distance" tiptext="The offset distance of the glow." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#distance"/>
                <string name="knockout" object="[flash.filters.GradientGlowFilter]" text=".knockout" tiptext="Specifies whether the object has a knockout effect." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#knockout"/>
                <string name="quality" object="[flash.filters.GradientGlowFilter]" text=".quality" tiptext="The number of times to apply the filter." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#quality"/>
                <string name="ratios" object="[flash.filters.GradientGlowFilter]" text=".ratios" tiptext="An array of color distribution ratios for the corresponding colors in the colors array." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#ratios"/>
                <string name="strength" object="[flash.filters.GradientGlowFilter]" text=".strength" tiptext="The strength of the imprint or spread." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#strength"/>
                <string name="type" object="[flash.filters.GradientGlowFilter]" text=".type" tiptext="The placement of the filter effect." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/filters/GradientGlowFilter.html#type"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.geom" id="flash.geom" sort="true" tiptext="Classes for package flash.geom" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/package-detail.html">
        <folder name="ColorTransform" id="[flash.geom.ColorTransform]" sort="true" index="true" asAncestors="Object" tiptext="The ColorTransform class lets you adjust the color values in a display object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ColorTransform" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html">
                <string name="ColorTransform" object="[flash.geom.ColorTransform]" text="new ColorTransform(%[redMultiplier:Number=1.0,greenMultiplier:Number=1.0,blueMultiplier:Number=1.0,alphaMultiplier:Number=1.0,redOffset:Number=0,greenOffset:Number=0,blueOffset:Number=0,alphaOffset:Number=0]%)" constructor="true" tiptext="Creates a ColorTransform object for a display object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html#ColorTransform()"/>
                <string name="concat" object="[flash.geom.ColorTransform]" text=".concat(%second:flash.geom:ColorTransform%):void" tiptext="Concatenates the ColorTranform object specified by the second parameter with the current ColorTransform object and sets the current object as the result, which is an additive combination of the two color transformations." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html#concat()"/>
                <string name="toString" object="[flash.geom.ColorTransform]" text=".toString(%%):String" tiptext="Formats and returns a string that describes all of the properties of the ColorTransform object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ColorTransform" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html">
                <string name="redMultiplier" object="[flash.geom.ColorTransform]" text=".redMultiplier" tiptext="A decimal value that is multiplied with the red channel value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html#redMultiplier"/>
                <string name="greenMultiplier" object="[flash.geom.ColorTransform]" text=".greenMultiplier" tiptext="A decimal value that is multiplied with the green channel value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html#greenMultiplier"/>
                <string name="blueMultiplier" object="[flash.geom.ColorTransform]" text=".blueMultiplier" tiptext="A decimal value that is multiplied with the blue channel value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html#blueMultiplier"/>
                <string name="alphaMultiplier" object="[flash.geom.ColorTransform]" text=".alphaMultiplier" tiptext="A decimal value that is multiplied with the alpha transparency channel value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html#alphaMultiplier"/>
                <string name="redOffset" object="[flash.geom.ColorTransform]" text=".redOffset" tiptext="A number from -255 to 255 that is added to the red channel value after it has been multiplied by the redMultiplier value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html#redOffset"/>
                <string name="greenOffset" object="[flash.geom.ColorTransform]" text=".greenOffset" tiptext="A number from -255 to 255 that is added to the green channel value after it has been multiplied by the greenMultiplier value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html#greenOffset"/>
                <string name="blueOffset" object="[flash.geom.ColorTransform]" text=".blueOffset" tiptext="A number from -255 to 255 that is added to the blue channel value after it has been multiplied by the blueMultiplier value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html#blueOffset"/>
                <string name="alphaOffset" object="[flash.geom.ColorTransform]" text=".alphaOffset" tiptext="A number from -255 to 255 that is added to the alpha transparency channel value after it has been multiplied by the alphaMultiplier value." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html#alphaOffset"/>
                <string name="color" object="[flash.geom.ColorTransform]" text=".color" tiptext="The RGB color value for a ColorTransform object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/ColorTransform.html#color"/>
            </folder>
        </folder>
        <folder name="Matrix" id="[flash.geom.Matrix]" sort="true" index="true" asAncestors="Object" tiptext="The Matrix class represents a transformation matrix that determines how to map points from one coordinate space to another." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Matrix" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html">
                <string name="Matrix" object="[flash.geom.Matrix]" text="new Matrix(%[a:Number=1,b:Number=0,c:Number=0,d:Number=1,tx:Number=0,ty:Number=0]%)" constructor="true" tiptext="Creates a new two-dimensional Matrix object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#Matrix()"/>
                <string name="clone" object="[flash.geom.Matrix]" text=".clone(%%):flash.geom:Matrix" tiptext="Returns a new Matrix object that is a copy of the current matrix." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#clone()"/>
                <string name="concat" object="[flash.geom.Matrix]" text=".concat(%m:flash.geom:Matrix%):void" tiptext="Concatenates a matrix with the current matrix, effectively combining the geometric effects of the two." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#concat()"/>
                <string name="invert" object="[flash.geom.Matrix]" text=".invert(%%):void" tiptext="Performs the opposite transformation of the original matrix." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#invert()"/>
                <string name="identity" object="[flash.geom.Matrix]" text=".identity(%%):void" tiptext="Sets each matrix property to a value that causes a null transformation." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#identity()"/>
                <string name="createBox" object="[flash.geom.Matrix]" text=".createBox(%scaleX:Number,scaleY:Number[,rotation:Number=0,tx:Number=0,ty:Number=0]%):void" tiptext="Creates a Matrix with scaling, rotation, and translation values." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#createBox()"/>
                <string name="createGradientBox" object="[flash.geom.Matrix]" text=".createGradientBox(%width:Number,height:Number[,rotation:Number=0,tx:Number=0,ty:Number=0]%):void" tiptext="Creates the specific style of matrix expected by the beginGradientFill() method of the Graphics class." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#createGradientBox()"/>
                <string name="rotate" object="[flash.geom.Matrix]" text=".rotate(%angle:Number%):void" tiptext="Applies a rotation transformation to the Matrix object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#rotate()"/>
                <string name="translate" object="[flash.geom.Matrix]" text=".translate(%dx:Number,dy:Number%):void" tiptext="A transformation that moves an object along the x and y axes." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#translate()"/>
                <string name="scale" object="[flash.geom.Matrix]" text=".scale(%sx:Number,sy:Number%):void" tiptext="Applies a scaling transformation to the matrix." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#scale()"/>
                <string name="deltaTransformPoint" object="[flash.geom.Matrix]" text=".deltaTransformPoint(%point:flash.geom:Point%):flash.geom:Point" tiptext="Given a point in the pretransform coordinate space, returns the coordinates of that point after the transformation occurs." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#deltaTransformPoint()"/>
                <string name="transformPoint" object="[flash.geom.Matrix]" text=".transformPoint(%point:flash.geom:Point%):flash.geom:Point" tiptext="Returns the result of a geometric transformation to a Point object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#transformPoint()"/>
                <string name="toString" object="[flash.geom.Matrix]" text=".toString(%%):String" tiptext="Returns a text value listing the properties of this Matrix object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Matrix" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html">
                <string name="a" object="[flash.geom.Matrix]" text=".a" tiptext="The value in the first row and first column of the Matrix object, which affects the positioning of pixels along the x axis when scaling or rotating an image." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#a"/>
                <string name="b" object="[flash.geom.Matrix]" text=".b" tiptext="The value in the first row and second column of the Matrix object, which affects the positioning of pixels along the y axis when rotating or skewing an image." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#b"/>
                <string name="c" object="[flash.geom.Matrix]" text=".c" tiptext="The value in the second row and first column of the Matrix object, which affects the positioning of pixels along the x axis when rotating or skewing an image." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#c"/>
                <string name="d" object="[flash.geom.Matrix]" text=".d" tiptext="The value in the second row and second column of the Matrix object, which affects the positioning of pixels along the y axis when scaling or rotating an image." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#d"/>
                <string name="tx" object="[flash.geom.Matrix]" text=".tx" tiptext="The distance by which to translate each point along the x axis." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#tx"/>
                <string name="ty" object="[flash.geom.Matrix]" text=".ty" tiptext="The distance by which to translate each point along the y axis." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Matrix.html#ty"/>
            </folder>
        </folder>
        <folder name="Point" id="[flash.geom.Point]" sort="true" index="true" asAncestors="Object" tiptext="The Point object represents a location in a two-dimensional coordinate system, where x represents the horizontal axis and y represents the vertical axis." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Point" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html">
                <string name="Point" object="[flash.geom.Point]" text="new Point(%[x:Number=0,y:Number=0]%)" constructor="true" tiptext="Creates a new point." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#Point()"/>
                <string name="clone" object="[flash.geom.Point]" text=".clone(%%):flash.geom:Point" tiptext="Creates a copy of the Point object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#clone()"/>
                <string name="offset" object="[flash.geom.Point]" text=".offset(%dx:Number,dy:Number%):void" tiptext="Offsets the Point object by the specified amount." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#offset()"/>
                <string name="equals" object="[flash.geom.Point]" text=".equals(%toCompare:flash.geom:Point%):Boolean" tiptext="Determines whether two points are equal." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#equals()"/>
                <string name="interpolate" object="[flash.geom.Point]" text="Point.interpolate(%pt1:flash.geom:Point,pt2:flash.geom:Point,f:Number%):flash.geom:Point" static="true" tiptext="Determines a point between two specified points." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#interpolate()"/>
                <string name="subtract" object="[flash.geom.Point]" text=".subtract(%v:flash.geom:Point%):flash.geom:Point" tiptext="Subtracts the coordinates of another point from the coordinates of this point to create a new point." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#subtract()"/>
                <string name="add" object="[flash.geom.Point]" text=".add(%v:flash.geom:Point%):flash.geom:Point" tiptext="Adds the coordinates of another point to the coordinates of this point to create a new point." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#add()"/>
                <string name="distance" object="[flash.geom.Point]" text="Point.distance(%pt1:flash.geom:Point,pt2:flash.geom:Point%):Number" static="true" tiptext="Returns the distance between pt1 and pt2." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#distance()"/>
                <string name="polar" object="[flash.geom.Point]" text="Point.polar(%len:Number,angle:Number%):flash.geom:Point" static="true" tiptext="Converts a pair of polar coordinates to a Cartesian point coordinate." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#polar()"/>
                <string name="normalize" object="[flash.geom.Point]" text=".normalize(%thickness:Number%):void" tiptext="Scales the line segment between (0,0) and the current point to a set length." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#normalize()"/>
                <string name="toString" object="[flash.geom.Point]" text=".toString(%%):String" tiptext="Returns a string that contains the values of the x and y coordinates." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Point" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html">
                <string name="x" object="[flash.geom.Point]" text=".x" tiptext="The horizontal coordinate of the point." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#x"/>
                <string name="y" object="[flash.geom.Point]" text=".y" tiptext="The vertical coordinate of the point." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#y"/>
                <string name="length" object="[flash.geom.Point]" text=".length" tiptext="The length of the line segment from (0,0) to this point." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Point.html#length"/>
            </folder>
        </folder>
        <folder name="Rectangle" id="[flash.geom.Rectangle]" sort="true" index="true" asAncestors="Object" tiptext="A Rectangle object is an area defined by its position, as indicated by its top-left corner point (x, y) and by its width and its height." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Rectangle" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html">
                <string name="Rectangle" object="[flash.geom.Rectangle]" text="new Rectangle(%[x:Number=0,y:Number=0,width:Number=0,height:Number=0]%)" constructor="true" tiptext="Creates a new Rectangle object with the top-left corner specified by the x and y parameters and with the specified width and height." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#Rectangle()"/>
                <string name="clone" object="[flash.geom.Rectangle]" text=".clone(%%):flash.geom:Rectangle" tiptext="Returns a copy of this Rectangle object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#clone()"/>
                <string name="isEmpty" object="[flash.geom.Rectangle]" text=".isEmpty(%%):Boolean" tiptext="Determines whether or not this Rectangle object is empty." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#isEmpty()"/>
                <string name="setEmpty" object="[flash.geom.Rectangle]" text=".setEmpty(%%):void" tiptext="Sets all properties to 0." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#setEmpty()"/>
                <string name="inflate" object="[flash.geom.Rectangle]" text=".inflate(%dx:Number,dy:Number%):void" tiptext="Increases the size of the Rectangle object by the specified amounts, in pixels." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#inflate()"/>
                <string name="inflatePoint" object="[flash.geom.Rectangle]" text=".inflatePoint(%point:flash.geom:Point%):void" tiptext="Increases the size of the Rectangle object using a Point object as a parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#inflatePoint()"/>
                <string name="offset" object="[flash.geom.Rectangle]" text=".offset(%dx:Number,dy:Number%):void" tiptext="Adjusts the location of the Rectangle object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#offset()"/>
                <string name="offsetPoint" object="[flash.geom.Rectangle]" text=".offsetPoint(%point:flash.geom:Point%):void" tiptext="Adjusts the location of the Rectangle object using a Point object as a parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#offsetPoint()"/>
                <string name="contains" object="[flash.geom.Rectangle]" text=".contains(%x:Number,y:Number%):Boolean" tiptext="Determines if the specified point is contained within the rectangular region." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#contains()"/>
                <string name="containsPoint" object="[flash.geom.Rectangle]" text=".containsPoint(%point:flash.geom:Point%):Boolean" tiptext="Determines if the specified point is contained within the rectangular region defined by this Rectangle object using a Point object as a parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#containsPoint()"/>
                <string name="containsRect" object="[flash.geom.Rectangle]" text=".containsRect(%rect:flash.geom:Rectangle%):Boolean" tiptext="Determines if the Rectangle object specified by the rect parameter is contained within this Rectangle object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#containsRect()"/>
                <string name="intersection" object="[flash.geom.Rectangle]" text=".intersection(%toIntersect:flash.geom:Rectangle%):flash.geom:Rectangle" tiptext="Returns the area of intersection." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#intersection()"/>
                <string name="intersects" object="[flash.geom.Rectangle]" text=".intersects(%toIntersect:flash.geom:Rectangle%):Boolean" tiptext="Determines if the object specified in the toIntersect parameter intersects with this Rectangle object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#intersects()"/>
                <string name="union" object="[flash.geom.Rectangle]" text=".union(%toUnion:flash.geom:Rectangle%):flash.geom:Rectangle" tiptext="Adds two rectangles together to create a new Rectangle object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#union()"/>
                <string name="equals" object="[flash.geom.Rectangle]" text=".equals(%toCompare:flash.geom:Rectangle%):Boolean" tiptext="Determines if the object specified in the toCompare parameter is equal to this Rectangle object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#equals()"/>
                <string name="toString" object="[flash.geom.Rectangle]" text=".toString(%%):String" tiptext="Builds and returns a string that lists the horizontal and vertical positions and the width and height of the Rectangle object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Rectangle" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html">
                <string name="x" object="[flash.geom.Rectangle]" text=".x" tiptext="The x coordinate of the top-left corner of the rectangle." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#x"/>
                <string name="y" object="[flash.geom.Rectangle]" text=".y" tiptext="The y coordinate of the top-left corner of the rectangle." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#y"/>
                <string name="width" object="[flash.geom.Rectangle]" text=".width" tiptext="The width of the rectangle, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#width"/>
                <string name="height" object="[flash.geom.Rectangle]" text=".height" tiptext="The height of the rectangle, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#height"/>
                <string name="left" object="[flash.geom.Rectangle]" text=".left" tiptext="The x coordinate of the top-left corner of the rectangle." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#left"/>
                <string name="right" object="[flash.geom.Rectangle]" text=".right" tiptext="The sum of the x and width properties." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#right"/>
                <string name="top" object="[flash.geom.Rectangle]" text=".top" tiptext="The y coordinate of the top-left corner of the rectangle." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#top"/>
                <string name="bottom" object="[flash.geom.Rectangle]" text=".bottom" tiptext="The sum of the y and height properties." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#bottom"/>
                <string name="topLeft" object="[flash.geom.Rectangle]" text=".topLeft" tiptext="The location of the Rectangle object&apos;s top-left corner, determined by the x and y coordinates of the point." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#topLeft"/>
                <string name="bottomRight" object="[flash.geom.Rectangle]" text=".bottomRight" tiptext="The location of the Rectangle object&apos;s bottom-right corner, determined by the values of the right and bottom properties." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#bottomRight"/>
                <string name="size" object="[flash.geom.Rectangle]" text=".size" tiptext="The size of the Rectangle object, expressed as a Point object with the values of the width and height properties." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Rectangle.html#size"/>
            </folder>
        </folder>
        <folder name="Transform" id="[flash.geom.Transform]" sort="true" index="true" asAncestors="Object" tiptext="The Transform class collects data about color transformations and coordinate transformations that are applied to a display object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Transform.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class Transform" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Transform.html">
                <string name="matrix" object="[flash.geom.Transform]" text=".matrix" tiptext="A Matrix object containing values that affect the scaling, rotation, and translation of the display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Transform.html#matrix"/>
                <string name="colorTransform" object="[flash.geom.Transform]" text=".colorTransform" tiptext="A ColorTransform object containing values that universally adjust the colors in the display object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Transform.html#colorTransform"/>
                <string name="concatenatedMatrix" object="[flash.geom.Transform]" text=".concatenatedMatrix" tiptext="A Matrix object representing the combined transformation matrixes of the display object and all of its parent objects, back to the root level." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Transform.html#concatenatedMatrix"/>
                <string name="concatenatedColorTransform" object="[flash.geom.Transform]" text=".concatenatedColorTransform" tiptext="A ColorTransform object representing the combined color transformations applied to the display object and all of its parent objects, back to the root level." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Transform.html#concatenatedColorTransform"/>
                <string name="pixelBounds" object="[flash.geom.Transform]" text=".pixelBounds" tiptext="A Rectangle object that defines the bounding rectangle of the display object on the Stage." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/geom/Transform.html#pixelBounds"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.media" id="flash.media" sort="true" tiptext="Classes for package flash.media" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/package-detail.html">
        <folder name="Camera" id="[flash.media.Camera]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="Use the Camera class to capture video from a camera attached to a computer running Flash Player." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Camera" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html">
                <string name="getCamera" object="[flash.media.Camera]" text="Camera.getCamera(%[name:String=null]%):flash.media:Camera" static="true" tiptext="Returns a reference to a Camera object for capturing video." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#getCamera()"/>
                <string name="setKeyFrameInterval" object="[flash.media.Camera]" text=".setKeyFrameInterval(%keyFrameInterval:int%):void" tiptext="Specifies which video frames are transmitted in full (called keyframes) instead of being interpolated by the video compression algorithm." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#setKeyFrameInterval()"/>
                <string name="setLoopback" object="[flash.media.Camera]" text=".setLoopback(%[compress:Boolean=false]%):void" tiptext="Specifies whether to use a compressed video stream for a local view of the camera." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#setLoopback()"/>
                <string name="setMode" object="[flash.media.Camera]" text=".setMode(%width:int,height:int,fps:Number[,favorArea:Boolean=true]%):void" tiptext="Sets the camera capture mode to the native mode that best meets the specified requirements." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#setMode()"/>
                <string name="setMotionLevel" object="[flash.media.Camera]" text=".setMotionLevel(%motionLevel:int[,timeout:int=2000]%):void" tiptext="Specifies how much motion is required to dispatch the activity event." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#setMotionLevel()"/>
                <string name="setQuality" object="[flash.media.Camera]" text=".setQuality(%bandwidth:int,quality:int%):void" tiptext="Sets the maximum amount of bandwidth per second or the required picture quality of the current outgoing video feed." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#setQuality()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Camera" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html">
                <string name="activityLevel" object="[flash.media.Camera]" text=".activityLevel" tiptext="The amount of motion the camera is detecting." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#activityLevel"/>
                <string name="bandwidth" object="[flash.media.Camera]" text=".bandwidth" tiptext="The maximum amount of bandwidth the current outgoing video feed can use, in bytes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#bandwidth"/>
                <string name="currentFPS" object="[flash.media.Camera]" text=".currentFPS" tiptext="The rate at which the camera is capturing data, in frames per second." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#currentFPS"/>
                <string name="fps" object="[flash.media.Camera]" text=".fps" tiptext="The maximum rate at which the camera can capture data, in frames per second." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#fps"/>
                <string name="height" object="[flash.media.Camera]" text=".height" tiptext="The current capture height, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#height"/>
                <string name="index" object="[flash.media.Camera]" text=".index" tiptext="A zero-based integer that specifies the index of the camera, as reflected in the array returned by the names property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#index"/>
                <string name="keyFrameInterval" object="[flash.media.Camera]" text=".keyFrameInterval" tiptext="The number of video frames transmitted in full (called keyframes) instead of being interpolated by the video compression algorithm." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#keyFrameInterval"/>
                <string name="loopback" object="[flash.media.Camera]" text=".loopback" tiptext="Indicates whether a local view of what the camera is capturing is compressed and decompressed (true), as it would be for live transmission using Flash Media Server, or uncompressed (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#loopback"/>
                <string name="motionLevel" object="[flash.media.Camera]" text=".motionLevel" tiptext="The amount of motion required to invoke the activity event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#motionLevel"/>
                <string name="motionTimeout" object="[flash.media.Camera]" text=".motionTimeout" tiptext="The number of milliseconds between the time the camera stops detecting motion and the time the activity event is invoked." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#motionTimeout"/>
                <string name="muted" object="[flash.media.Camera]" text=".muted" tiptext="A Boolean value indicating whether the user has denied access to the camera (true) or allowed access (false) in the Flash Player Privacy dialog box." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#muted"/>
                <string name="name" object="[flash.media.Camera]" text=".name" tiptext="The name of the current camera, as returned by the camera hardware." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#name"/>
                <string name="names" object="[flash.media.Camera]" text=".names" tiptext="An array of strings indicating the names of all available cameras without displaying the Flash Player Privacy dialog box." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#names"/>
                <string name="quality" object="[flash.media.Camera]" text=".quality" tiptext="The required level of picture quality, as determined by the amount of compression being applied to each video frame." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#quality"/>
                <string name="width" object="[flash.media.Camera]" text=".width" tiptext="The current capture width, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#width"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class Camera" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html">
                <string name="status" object="[flash.media.Camera]" text=".addEventListener(%type:String=StatusEvent.STATUS{StatusEvent.STATUS,ActivityEvent.ACTIVITY},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a camera reports its status." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#event:status"/>
                <string name="activity" object="[flash.media.Camera]" text=".addEventListener(%type:String=ActivityEvent.ACTIVITY{StatusEvent.STATUS,ActivityEvent.ACTIVITY},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a camera begins or ends a session." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Camera.html#event:activity"/>
            </folder>
        </folder>
        <folder name="ID3Info" id="[flash.media.ID3Info]" sort="true" index="true" asAncestors="Object" tiptext="The ID3Info class contains properties that reflect ID3 metadata." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/ID3Info.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class ID3Info" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/ID3Info.html">
                <string name="songName" object="[flash.media.ID3Info]" text=".songName" tiptext="The name of the song; corresponds to the ID3 2.0 tag TIT2." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/ID3Info.html#songName"/>
                <string name="artist" object="[flash.media.ID3Info]" text=".artist" tiptext="The name of the artist; corresponds to the ID3 2.0 tag TPE1." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/ID3Info.html#artist"/>
                <string name="album" object="[flash.media.ID3Info]" text=".album" tiptext="The name of the album; corresponds to the ID3 2.0 tag TALB." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/ID3Info.html#album"/>
                <string name="year" object="[flash.media.ID3Info]" text=".year" tiptext="The year of the recording; corresponds to the ID3 2.0 tag TYER." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/ID3Info.html#year"/>
                <string name="comment" object="[flash.media.ID3Info]" text=".comment" tiptext="A comment about the recording; corresponds to the ID3 2.0 tag COMM." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/ID3Info.html#comment"/>
                <string name="genre" object="[flash.media.ID3Info]" text=".genre" tiptext="The genre of the song; corresponds to the ID3 2.0 tag TCON." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/ID3Info.html#genre"/>
                <string name="track" object="[flash.media.ID3Info]" text=".track" tiptext="The track number; corresponds to the ID3 2.0 tag TRCK." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/ID3Info.html#track"/>
            </folder>
        </folder>
        <folder name="Microphone" id="[flash.media.Microphone]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="Use the Microphone class to capture audio from a microphone attached to a computer running Flash Player." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Microphone" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html">
                <string name="getMicrophone" object="[flash.media.Microphone]" text="Microphone.getMicrophone(%[index:int=0]%):flash.media:Microphone" static="true" tiptext="Returns a reference to a Microphone object for capturing audio." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#getMicrophone()"/>
                <string name="setSilenceLevel" object="[flash.media.Microphone]" text=".setSilenceLevel(%silenceLevel:Number[,timeout:int=-1]%):void" tiptext="Sets the minimum input level that should be considered sound and (optionally) the amount of silent time signifying that silence has actually begun." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#setSilenceLevel()"/>
                <string name="setUseEchoSuppression" object="[flash.media.Microphone]" text=".setUseEchoSuppression(%useEchoSuppression:Boolean%):void" tiptext="Specifies whether to use the echo suppression feature of the audio codec." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#setUseEchoSuppression()"/>
                <string name="setLoopBack" object="[flash.media.Microphone]" text=".setLoopBack(%[state:Boolean=true]%):void" tiptext="Routes audio captured by a microphone to the local speakers." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#setLoopBack()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Microphone" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html">
                <string name="names" object="[flash.media.Microphone]" text=".names" tiptext="An array of strings containing the names of all available sound capture devices." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#names"/>
                <string name="gain" object="[flash.media.Microphone]" text=".gain" tiptext="The microphone gain--that is, the amount by which the microphone should multiply the signal before transmitting it." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#gain"/>
                <string name="rate" object="[flash.media.Microphone]" text=".rate" tiptext="The rate at which the microphone captures sound, in kHz." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#rate"/>
                <string name="activityLevel" object="[flash.media.Microphone]" text=".activityLevel" tiptext="The amount of sound the microphone is detecting." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#activityLevel"/>
                <string name="index" object="[flash.media.Microphone]" text=".index" tiptext="The index of the microphone, as reflected in the array returned by Microphone.names." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#index"/>
                <string name="muted" object="[flash.media.Microphone]" text=".muted" tiptext="Specifies whether the user has denied access to the microphone (true) or allowed access (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#muted"/>
                <string name="name" object="[flash.media.Microphone]" text=".name" tiptext="The name of the current sound capture device, as returned by the sound capture hardware." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#name"/>
                <string name="silenceLevel" object="[flash.media.Microphone]" text=".silenceLevel" tiptext="The amount of sound required to activate the microphone and dispatch the activity event." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#silenceLevel"/>
                <string name="silenceTimeout" object="[flash.media.Microphone]" text=".silenceTimeout" tiptext="The number of milliseconds between the time the microphone stops detecting sound and the time the activity event is dispatched." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#silenceTimeout"/>
                <string name="useEchoSuppression" object="[flash.media.Microphone]" text=".useEchoSuppression" tiptext="Set to true if echo suppression is enabled; false otherwise." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#useEchoSuppression"/>
                <string name="soundTransform" object="[flash.media.Microphone]" text=".soundTransform" tiptext="Controls the sound of this microphone object when it is in loopback mode." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#soundTransform"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class Microphone" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html">
                <string name="status" object="[flash.media.Microphone]" text=".addEventListener(%type:String=StatusEvent.STATUS{StatusEvent.STATUS,ActivityEvent.ACTIVITY},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a microphone reports its status." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#event:status"/>
                <string name="activity" object="[flash.media.Microphone]" text=".addEventListener(%type:String=ActivityEvent.ACTIVITY{StatusEvent.STATUS,ActivityEvent.ACTIVITY},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a microphone begins or ends a session." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Microphone.html#event:activity"/>
            </folder>
        </folder>
        <folder name="Sound" id="[flash.media.Sound]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The Sound class lets you work with sound in an application." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Sound" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html">
                <string name="Sound" object="[flash.media.Sound]" text="new Sound(%[stream:flash.net:URLRequest=null,context:flash.media:SoundLoaderContext=null]%)" constructor="true" tiptext="Creates a new Sound object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#Sound()"/>
                <string name="load" object="[flash.media.Sound]" text=".load(%stream:flash.net:URLRequest[,context:flash.media:SoundLoaderContext=null]%):void" tiptext="Initiates loading of an external MP3 file from the specified URL." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#load()"/>
                <string name="play" object="[flash.media.Sound]" text=".play(%[startTime:Number=0,loops:int=0,sndTransform:flash.media:SoundTransform=null]%):flash.media:SoundChannel" tiptext="Generates a new SoundChannel object to play back the sound." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#play()"/>
                <string name="close" object="[flash.media.Sound]" text=".close(%%):void" tiptext="Closes the stream, causing any download of data to cease." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#close()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Sound" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html">
                <string name="url" object="[flash.media.Sound]" text=".url" tiptext="The URL from which this sound was loaded." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#url"/>
                <string name="length" object="[flash.media.Sound]" text=".length" tiptext="The length of the current sound in milliseconds." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#length"/>
                <string name="isBuffering" object="[flash.media.Sound]" text=".isBuffering" tiptext="Returns the buffering state of external MP3 files." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#isBuffering"/>
                <string name="bytesLoaded" object="[flash.media.Sound]" text=".bytesLoaded" tiptext="Returns the currently available number of bytes in this sound object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#bytesLoaded"/>
                <string name="bytesTotal" object="[flash.media.Sound]" text=".bytesTotal" tiptext="Returns the total number of bytes in this sound object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#bytesTotal"/>
                <string name="id3" object="[flash.media.Sound]" text=".id3" tiptext="Provides access to the metadata that is part of an MP3 file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#id3"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class Sound" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html">
                <string name="progress" object="[flash.media.Sound]" text=".addEventListener(%type:String=ProgressEvent.PROGRESS{ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.ID3,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when data is received as a load operation progresses." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#event:progress"/>
                <string name="open" object="[flash.media.Sound]" text=".addEventListener(%type:String=Event.OPEN{ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.ID3,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a load operation starts." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#event:open"/>
                <string name="ioError" object="[flash.media.Sound]" text=".addEventListener(%type:String=IOErrorEvent.IO_ERROR{ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.ID3,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an input/output error occurs that causes a load operation to fail." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#event:ioError"/>
                <string name="id3" object="[flash.media.Sound]" text=".addEventListener(%type:String=Event.ID3{ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.ID3,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched by a Sound object when ID3 data is available for an MP3 sound." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#event:id3"/>
                <string name="complete" object="[flash.media.Sound]" text=".addEventListener(%type:String=Event.COMPLETE{ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.ID3,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when data has loaded successfully." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Sound.html#event:complete"/>
            </folder>
        </folder>
        <folder name="SoundChannel" id="[flash.media.SoundChannel]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The SoundChannel class controls a sound in an application." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundChannel.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SoundChannel" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundChannel.html">
                <string name="stop" object="[flash.media.SoundChannel]" text=".stop(%%):void" tiptext="Stops the sound playing in the channel." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundChannel.html#stop()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SoundChannel" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundChannel.html">
                <string name="position" object="[flash.media.SoundChannel]" text=".position" tiptext="When the sound is playing, the position property indicates the current point that is being played in the sound file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundChannel.html#position"/>
                <string name="soundTransform" object="[flash.media.SoundChannel]" text=".soundTransform" tiptext="The SoundTransform object assigned to the sound channel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundChannel.html#soundTransform"/>
                <string name="leftPeak" object="[flash.media.SoundChannel]" text=".leftPeak" tiptext="The current amplitude (volume) of the left channel, from 0 (silent) to 1 (full amplitude)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundChannel.html#leftPeak"/>
                <string name="rightPeak" object="[flash.media.SoundChannel]" text=".rightPeak" tiptext="The current amplitude (volume) of the right channel, from 0 (silent) to 1 (full amplitude)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundChannel.html#rightPeak"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class SoundChannel" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundChannel.html">
                <string name="soundComplete" object="[flash.media.SoundChannel]" text=".addEventListener(%type:String=Event.SOUND_COMPLETE{Event.SOUND_COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a sound has finished playing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundChannel.html#event:soundComplete"/>
            </folder>
        </folder>
        <folder name="SoundLoaderContext" id="[flash.media.SoundLoaderContext]" sort="true" index="true" asAncestors="Object" tiptext="The SoundLoaderContext class provides security checks for SWF files that load sound." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundLoaderContext.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SoundLoaderContext" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundLoaderContext.html">
                <string name="SoundLoaderContext" object="[flash.media.SoundLoaderContext]" text="new SoundLoaderContext(%[bufferTime:Number=1000,checkPolicyFile:Boolean=false]%)" constructor="true" tiptext="Creates a new sound loader context object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundLoaderContext.html#SoundLoaderContext()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SoundLoaderContext" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundLoaderContext.html">
                <string name="bufferTime" object="[flash.media.SoundLoaderContext]" text=".bufferTime" tiptext="The number of seconds to preload a streaming sound into a buffer before the sound starts to stream." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundLoaderContext.html#bufferTime"/>
                <string name="checkPolicyFile" object="[flash.media.SoundLoaderContext]" text=".checkPolicyFile" tiptext="Specifies whether Flash Player should try to download a cross-domain policy file from the loaded sound&apos;s server before beginning to load the sound." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundLoaderContext.html#checkPolicyFile"/>
            </folder>
        </folder>
        <folder name="SoundMixer" id="[flash.media.SoundMixer]" sort="true" index="true" asAncestors="Object" tiptext="The SoundMixer class contains static properties and methods for global sound controlin the SWF file." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundMixer.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SoundMixer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundMixer.html">
                <string name="stopAll" object="[flash.media.SoundMixer]" text="SoundMixer.stopAll(%%):void" static="true" tiptext="Stops all sounds currently playing." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundMixer.html#stopAll()"/>
                <string name="computeSpectrum" object="[flash.media.SoundMixer]" text="SoundMixer.computeSpectrum(%outputArray:flash.utils:ByteArray[,FFTMode:Boolean=false,stretchFactor:int=0]%):void" static="true" tiptext="Takes a snapshot of the current sound wave and places it into the specified ByteArray object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundMixer.html#computeSpectrum()"/>
                <string name="areSoundsInaccessible" object="[flash.media.SoundMixer]" text="SoundMixer.areSoundsInaccessible(%%):Boolean" static="true" tiptext="Determines whether any sounds are not accessible due to security restrictions." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundMixer.html#areSoundsInaccessible()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SoundMixer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundMixer.html">
                <string name="bufferTime" object="[flash.media.SoundMixer]" text=".bufferTime" tiptext="The number of seconds to preload an embedded streaming sound into a buffer before it starts to stream." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundMixer.html#bufferTime"/>
                <string name="soundTransform" object="[flash.media.SoundMixer]" text=".soundTransform" tiptext="The SoundTransform object that controls global sound properties." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundMixer.html#soundTransform"/>
            </folder>
        </folder>
        <folder name="SoundTransform" id="[flash.media.SoundTransform]" sort="true" index="true" asAncestors="Object" tiptext="The SoundTransform class contains properties for volume and panning." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundTransform.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SoundTransform" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundTransform.html">
                <string name="SoundTransform" object="[flash.media.SoundTransform]" text="new SoundTransform(%[vol:Number=1,panning:Number=0]%)" constructor="true" tiptext="Creates a SoundTransform object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundTransform.html#SoundTransform()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SoundTransform" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundTransform.html">
                <string name="volume" object="[flash.media.SoundTransform]" text=".volume" tiptext="The volume, ranging from 0 (silent) to 1 (full volume)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundTransform.html#volume"/>
                <string name="leftToLeft" object="[flash.media.SoundTransform]" text=".leftToLeft" tiptext="A value, from 0 (none) to 1 (all), specifying how much of the left input is played in the left speaker." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundTransform.html#leftToLeft"/>
                <string name="leftToRight" object="[flash.media.SoundTransform]" text=".leftToRight" tiptext="A value, from 0 (none) to 1 (all), specifying how much of the left input is played in the right speaker." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundTransform.html#leftToRight"/>
                <string name="rightToRight" object="[flash.media.SoundTransform]" text=".rightToRight" tiptext="A value, from 0 (none) to 1 (all), specifying how much of the right input is played in the right speaker." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundTransform.html#rightToRight"/>
                <string name="rightToLeft" object="[flash.media.SoundTransform]" text=".rightToLeft" tiptext="A value, from 0 (none) to 1 (all), specifying how much of the right input is played in the left speaker." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundTransform.html#rightToLeft"/>
                <string name="pan" object="[flash.media.SoundTransform]" text=".pan" tiptext="The left-to-right panning of the sound, ranging from -1 (full pan left) to 1 (full pan right)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/SoundTransform.html#pan"/>
            </folder>
        </folder>
        <folder name="Video" id="[flash.media.Video]" sort="true" index="true" asAncestors="flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The Video class displays live or recorded video in an application without embedding the video in your SWF file." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Video.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Video" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Video.html">
                <string name="Video" object="[flash.media.Video]" text="new Video(%[width:int=320,height:int=240]%)" constructor="true" tiptext="Creates a new Video instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Video.html#Video()"/>
                <string name="clear" object="[flash.media.Video]" text=".clear(%%):void" tiptext="Clears the image currently displayed in the Video object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Video.html#clear()"/>
                <string name="attachNetStream" object="[flash.media.Video]" text=".attachNetStream(%netStream:flash.net:NetStream%):void" tiptext="Specifies a video stream to be displayed within the boundaries of the Video object in the application." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Video.html#attachNetStream()"/>
                <string name="attachCamera" object="[flash.media.Video]" text=".attachCamera(%camera:flash.media:Camera%):void" tiptext="Specifies a video stream from a camera to be displayed within the boundaries of the Video object in the application." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Video.html#attachCamera()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Video" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Video.html">
                <string name="deblocking" object="[flash.media.Video]" text=".deblocking" tiptext="Indicates the type of filter applied to decoded video as part of post-processing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Video.html#deblocking"/>
                <string name="smoothing" object="[flash.media.Video]" text=".smoothing" tiptext="Specifies whether the video should be smoothed (interpolated) when it is scaled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Video.html#smoothing"/>
                <string name="videoWidth" object="[flash.media.Video]" text=".videoWidth" tiptext="An integer specifying the width of the video stream, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Video.html#videoWidth"/>
                <string name="videoHeight" object="[flash.media.Video]" text=".videoHeight" tiptext="An integer specifying the height of the video stream, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/media/Video.html#videoHeight"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.net" id="flash.net" sort="true" tiptext="Classes for package flash.net" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/package-detail.html">
        <folder name="FileFilter" id="[flash.net.FileFilter]" sort="true" index="true" asAncestors="Object" tiptext="The FileFilter class is used to indicate what files on the user&apos;s system are shown in the file-browsing dialog box that is displayed when FileReference.browse() or FileReferenceList.browse() is called." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileFilter.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class FileFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileFilter.html">
                <string name="FileFilter" object="[flash.net.FileFilter]" text="new FileFilter(%description:String,extension:String[,macType:String=null]%)" constructor="true" tiptext="Creates a new FileFilter instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileFilter.html#FileFilter()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class FileFilter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileFilter.html">
                <string name="description" object="[flash.net.FileFilter]" text=".description" tiptext="The description string for the filter." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileFilter.html#description"/>
                <string name="extension" object="[flash.net.FileFilter]" text=".extension" tiptext="A list of file extensions." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileFilter.html#extension"/>
                <string name="macType" object="[flash.net.FileFilter]" text=".macType" tiptext="A list of Macintosh file types." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileFilter.html#macType"/>
            </folder>
        </folder>
        <folder name="FileReference" id="[flash.net.FileReference]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The FileReference class provides a means to upload and download files between a user&apos;s computer and a server." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class FileReference" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html">
                <string name="FileReference" object="[flash.net.FileReference]" text="new FileReference(%%)" constructor="true" tiptext="Creates a new FileReference object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#FileReference()"/>
                <string name="browse" object="[flash.net.FileReference]" text=".browse(%[typeFilter:Array=null]%):Boolean" tiptext="Opens a file chooser to let the user to browse for and select a file for upload." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#browse()"/>
                <string name="cancel" object="[flash.net.FileReference]" text=".cancel(%%):void" tiptext="Cancels any ongoing upload or download." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#cancel()"/>
                <string name="download" object="[flash.net.FileReference]" text=".download(%request:flash.net:URLRequest[,defaultFileName:String=null]%):void" tiptext="Opens a dialog box that lets the user download a file from a remote server." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#download()"/>
                <string name="upload" object="[flash.net.FileReference]" text=".upload(%request:flash.net:URLRequest[,uploadDataFieldName:String=Filedata,testUpload:Boolean=false]%):void" tiptext="Starts the upload of a file to a remote server." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#upload()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class FileReference" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html">
                <string name="creationDate" object="[flash.net.FileReference]" text=".creationDate" tiptext="The creation date of the file on the local disk." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#creationDate"/>
                <string name="creator" object="[flash.net.FileReference]" text=".creator" tiptext="The Macintosh creator type of the file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#creator"/>
                <string name="modificationDate" object="[flash.net.FileReference]" text=".modificationDate" tiptext="The date that the file on the local disk was last modified." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#modificationDate"/>
                <string name="name" object="[flash.net.FileReference]" text=".name" tiptext="The name of the file on the local disk." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#name"/>
                <string name="size" object="[flash.net.FileReference]" text=".size" tiptext="The size of the file on the local disk in bytes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#size"/>
                <string name="type" object="[flash.net.FileReference]" text=".type" tiptext="The file type." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#type"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class FileReference" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html">
                <string name="uploadCompleteData" object="[flash.net.FileReference]" text=".addEventListener(%type:String=DataEvent.UPLOAD_COMPLETE_DATA{DataEvent.UPLOAD_COMPLETE_DATA,HTTPStatusEvent.HTTP_STATUS,Event.SELECT,SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.COMPLETE,Event.CANCEL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after data is received from the server after a successful upload." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#event:uploadCompleteData"/>
                <string name="httpStatus" object="[flash.net.FileReference]" text=".addEventListener(%type:String=HTTPStatusEvent.HTTP_STATUS{DataEvent.UPLOAD_COMPLETE_DATA,HTTPStatusEvent.HTTP_STATUS,Event.SELECT,SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.COMPLETE,Event.CANCEL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an upload fails and an HTTP status code is available to describe the failure." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#event:httpStatus"/>
                <string name="select" object="[flash.net.FileReference]" text=".addEventListener(%type:String=Event.SELECT{DataEvent.UPLOAD_COMPLETE_DATA,HTTPStatusEvent.HTTP_STATUS,Event.SELECT,SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.COMPLETE,Event.CANCEL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user selects a file for upload or download from the file-browsing dialog box." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#event:select"/>
                <string name="securityError" object="[flash.net.FileReference]" text=".addEventListener(%type:String=SecurityErrorEvent.SECURITY_ERROR{DataEvent.UPLOAD_COMPLETE_DATA,HTTPStatusEvent.HTTP_STATUS,Event.SELECT,SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.COMPLETE,Event.CANCEL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a call to the FileReference.upload() or FileReference.download() method tries to upload a file to a server or get a file from a server that is outside the caller&apos;s security sandbox." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#event:securityError"/>
                <string name="progress" object="[flash.net.FileReference]" text=".addEventListener(%type:String=ProgressEvent.PROGRESS{DataEvent.UPLOAD_COMPLETE_DATA,HTTPStatusEvent.HTTP_STATUS,Event.SELECT,SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.COMPLETE,Event.CANCEL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched periodically during the file upload or download operation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#event:progress"/>
                <string name="open" object="[flash.net.FileReference]" text=".addEventListener(%type:String=Event.OPEN{DataEvent.UPLOAD_COMPLETE_DATA,HTTPStatusEvent.HTTP_STATUS,Event.SELECT,SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.COMPLETE,Event.CANCEL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an upload or download operation starts." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#event:open"/>
                <string name="ioError" object="[flash.net.FileReference]" text=".addEventListener(%type:String=IOErrorEvent.IO_ERROR{DataEvent.UPLOAD_COMPLETE_DATA,HTTPStatusEvent.HTTP_STATUS,Event.SELECT,SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.COMPLETE,Event.CANCEL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the upload or download fails." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#event:ioError"/>
                <string name="complete" object="[flash.net.FileReference]" text=".addEventListener(%type:String=Event.COMPLETE{DataEvent.UPLOAD_COMPLETE_DATA,HTTPStatusEvent.HTTP_STATUS,Event.SELECT,SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.COMPLETE,Event.CANCEL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when download is complete or when upload generates an HTTP status code of 200." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#event:complete"/>
                <string name="cancel" object="[flash.net.FileReference]" text=".addEventListener(%type:String=Event.CANCEL{DataEvent.UPLOAD_COMPLETE_DATA,HTTPStatusEvent.HTTP_STATUS,Event.SELECT,SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,Event.COMPLETE,Event.CANCEL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a file upload or download is canceled through the file-browsing dialog box by the user." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReference.html#event:cancel"/>
            </folder>
        </folder>
        <folder name="FileReferenceList" id="[flash.net.FileReferenceList]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The FileReferenceList class provides a means to let users select one or more files for uploading." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReferenceList.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class FileReferenceList" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReferenceList.html">
                <string name="FileReferenceList" object="[flash.net.FileReferenceList]" text="new FileReferenceList(%%)" constructor="true" tiptext="Creates a new FileReferenceList object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReferenceList.html#FileReferenceList()"/>
                <string name="browse" object="[flash.net.FileReferenceList]" text=".browse(%[typeFilter:Array=null]%):Boolean" tiptext="Displays a file-browsing dialog box that lets the user select local files to upload." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReferenceList.html#browse()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class FileReferenceList" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReferenceList.html">
                <string name="fileList" object="[flash.net.FileReferenceList]" text=".fileList" tiptext="An array of FileReference objects." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReferenceList.html#fileList"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class FileReferenceList" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReferenceList.html">
                <string name="select" object="[flash.net.FileReferenceList]" text=".addEventListener(%type:String=Event.SELECT{Event.SELECT,Event.CANCEL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user selects one or more files to upload from the file-browsing dialog box." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReferenceList.html#event:select"/>
                <string name="cancel" object="[flash.net.FileReferenceList]" text=".addEventListener(%type:String=Event.CANCEL{Event.SELECT,Event.CANCEL},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the user dismisses the file-browsing dialog box." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/FileReferenceList.html#event:cancel"/>
            </folder>
        </folder>
        <folder name="IDynamicPropertyOutput" id="[flash.net.IDynamicPropertyOutput]" sort="true" index="true" tiptext="This interface controls the serialization of dynamic properties of dynamic objects." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/IDynamicPropertyOutput.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IDynamicPropertyOutput" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/IDynamicPropertyOutput.html">
                <string name="writeDynamicProperty" object="[flash.net.IDynamicPropertyOutput]" text=".writeDynamicProperty(%name:String,value:*%):void" tiptext="Adds a dynamic property to the binary output of a serialized object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/IDynamicPropertyOutput.html#writeDynamicProperty()"/>
            </folder>
        </folder>
        <folder name="IDynamicPropertyWriter" id="[flash.net.IDynamicPropertyWriter]" sort="true" index="true" tiptext="This interface is used with the IDynamicPropertyOutput interface to control the serialization of dynamic properties of dynamic objects." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/IDynamicPropertyWriter.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IDynamicPropertyWriter" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/IDynamicPropertyWriter.html">
                <string name="writeDynamicProperties" object="[flash.net.IDynamicPropertyWriter]" text=".writeDynamicProperties(%obj:Object,output:flash.net:IDynamicPropertyOutput%):void" tiptext="Writes the name and value of an IDynamicPropertyOutput object to an object with dynamic properties." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/IDynamicPropertyWriter.html#writeDynamicProperties()"/>
            </folder>
        </folder>
        <folder name="LocalConnection" id="[flash.net.LocalConnection]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The LocalConnection class lets you create a LocalConnection object that can invoke a method in another LocalConnection object, either within a single SWF file or between multiple SWF files." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class LocalConnection" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html">
                <string name="LocalConnection" object="[flash.net.LocalConnection]" text="new LocalConnection(%%)" constructor="true" tiptext="Creates a LocalConnection object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html#LocalConnection()"/>
                <string name="close" object="[flash.net.LocalConnection]" text=".close(%%):void" tiptext="Closes (disconnects) a LocalConnection object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html#close()"/>
                <string name="connect" object="[flash.net.LocalConnection]" text=".connect(%connectionName:String%):void" tiptext="Prepares a LocalConnection object to receive commands from a send() command (called the sending LocalConnection object)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html#connect()"/>
                <string name="send" object="[flash.net.LocalConnection]" text=".send(%connectionName:String,methodName:String,arguments:restParam%):void" tiptext="Invokes the method named methodName on a connection opened with the connect(&lt;code&gt;connectionName&lt;code&gt;) method (the receiving LocalConnection object)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html#send()"/>
                <string name="allowDomain" object="[flash.net.LocalConnection]" text=".allowDomain(%domains:restParam%):void" tiptext="Specifies one or more domains that can send LocalConnection calls to this LocalConnection instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html#allowDomain()"/>
                <string name="allowInsecureDomain" object="[flash.net.LocalConnection]" text=".allowInsecureDomain(%domains:restParam%):void" tiptext="Specifies one or more domains that can send LocalConnection calls to this LocalConnection object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html#allowInsecureDomain()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class LocalConnection" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html">
                <string name="domain" object="[flash.net.LocalConnection]" text=".domain" tiptext="A string representing the domain of the location of the current SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html#domain"/>
                <string name="client" object="[flash.net.LocalConnection]" text=".client" tiptext="Indicates the object on which callback methods are invoked." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html#client"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class LocalConnection" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html">
                <string name="status" object="[flash.net.LocalConnection]" text=".addEventListener(%type:String=StatusEvent.STATUS{StatusEvent.STATUS,SecurityErrorEvent.SECURITY_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a LocalConnection object reports its status." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html#event:status"/>
                <string name="securityError" object="[flash.net.LocalConnection]" text=".addEventListener(%type:String=SecurityErrorEvent.SECURITY_ERROR{StatusEvent.STATUS,SecurityErrorEvent.SECURITY_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if a call to LocalConnection.send() attempts to send data to a different security sandbox." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html#event:securityError"/>
                <string name="asyncError" object="[flash.net.LocalConnection]" text=".addEventListener(%type:String=AsyncErrorEvent.ASYNC_ERROR{StatusEvent.STATUS,SecurityErrorEvent.SECURITY_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an exception is thrown asynchronously -- that is, from native asynchronous code." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/LocalConnection.html#event:asyncError"/>
            </folder>
        </folder>
        <folder name="NetConnection" id="[flash.net.NetConnection]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The NetConnection class creates a bidirectional connection between Flash Player and a Flash Media Server application or between Flash Player and an application server running Flash Remoting." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class NetConnection" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html">
                <string name="NetConnection" object="[flash.net.NetConnection]" text="new NetConnection(%%)" constructor="true" tiptext="Creates a NetConnection object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#NetConnection()"/>
                <string name="close" object="[flash.net.NetConnection]" text=".close(%%):void" tiptext="Closes the connection that was opened locally or to the server and dispatches a netStatus event with a code property of NetConnection.Connect.Closed." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#close()"/>
                <string name="addHeader" object="[flash.net.NetConnection]" text=".addHeader(%operation:String[,mustUnderstand:Boolean=false,param:Object=null]%):void" tiptext="Adds a context header to the Action Message Format (AMF) packet structure." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#addHeader()"/>
                <string name="call" object="[flash.net.NetConnection]" text=".call(%command:String,responder:flash.net:Responder,arguments:restParam%):void" tiptext="Invokes a command or method on Flash Media Server or on an application server running Flash Remoting." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#call()"/>
                <string name="connect" object="[flash.net.NetConnection]" text=".connect(%command:String,arguments:restParam%):void" tiptext="Creates a bidirectional connection between Flash Player and a Flash Media Server application." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#connect()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class NetConnection" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html">
                <string name="connected" object="[flash.net.NetConnection]" text=".connected" tiptext="Indicates whether Flash Player is connected to a server through a persistent RTMP connection (true) or not (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#connected"/>
                <string name="uri" object="[flash.net.NetConnection]" text=".uri" tiptext="The URI passed to the NetConnection.connect() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#uri"/>
                <string name="client" object="[flash.net.NetConnection]" text=".client" tiptext="Indicates the object on which callback methods should be invoked." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#client"/>
                <string name="defaultObjectEncoding" object="[flash.net.NetConnection]" text=".defaultObjectEncoding" tiptext="The default object encoding for NetConnection objects created in the SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#defaultObjectEncoding"/>
                <string name="objectEncoding" object="[flash.net.NetConnection]" text=".objectEncoding" tiptext="The object encoding for this NetConnection instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#objectEncoding"/>
                <string name="proxyType" object="[flash.net.NetConnection]" text=".proxyType" tiptext="Determines which fallback methods are tried if an initial connection attempt to the server fails." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#proxyType"/>
                <string name="connectedProxyType" object="[flash.net.NetConnection]" text=".connectedProxyType" tiptext="The proxy type used to make a successful NetConnection.connect() call to Flash Media Server: &quot;none&quot;, &quot;HTTP&quot;, &quot;HTTPS&quot;, or &quot;CONNECT&quot;." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#connectedProxyType"/>
                <string name="usingTLS" object="[flash.net.NetConnection]" text=".usingTLS" tiptext="Indicates whether a secure connection was made using native Transport Layer Security (TLS) rather than HTTPS." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#usingTLS"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class NetConnection" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html">
                <string name="netStatus" object="[flash.net.NetConnection]" text=".addEventListener(%type:String=NetStatusEvent.NET_STATUS{NetStatusEvent.NET_STATUS,SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a NetConnection object is reporting its status or error condition." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#event:netStatus"/>
                <string name="securityError" object="[flash.net.NetConnection]" text=".addEventListener(%type:String=SecurityErrorEvent.SECURITY_ERROR{NetStatusEvent.NET_STATUS,SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if a call to NetConnection.call() attempts to connect to a server outside the caller&apos;s security sandbox." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#event:securityError"/>
                <string name="ioError" object="[flash.net.NetConnection]" text=".addEventListener(%type:String=IOErrorEvent.IO_ERROR{NetStatusEvent.NET_STATUS,SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an input or output error occurs that causes a network operation to fail." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#event:ioError"/>
                <string name="asyncError" object="[flash.net.NetConnection]" text=".addEventListener(%type:String=AsyncErrorEvent.ASYNC_ERROR{NetStatusEvent.NET_STATUS,SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an exception is thrown asynchronously -- that is, from native asynchronous code." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetConnection.html#event:asyncError"/>
            </folder>
        </folder>
        <folder name="NetStream" id="[flash.net.NetStream]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The NetStream class opens a one-way streaming connection between Flash Player and Flash Media Server, or between Flash Player and the local file system." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class NetStream" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html">
                <string name="NetStream" object="[flash.net.NetStream]" text="new NetStream(%connection:flash.net:NetConnection%)" constructor="true" tiptext="Creates a stream that can be used for playing video files through the specified NetConnection object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#NetStream()"/>
                <string name="close" object="[flash.net.NetStream]" text=".close(%%):void" tiptext="Stops playing all data on the stream, sets the time property to 0, and makes the stream available for another use." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#close()"/>
                <string name="attachAudio" object="[flash.net.NetStream]" text=".attachAudio(%microphone:flash.media:Microphone%):void" tiptext="Specifies an audio stream sent over the NetStream object, from a Microphone object passed as the source." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#attachAudio()"/>
                <string name="attachCamera" object="[flash.net.NetStream]" text=".attachCamera(%theCamera:flash.media:Camera[,snapshotMilliseconds:int=-1]%):void" tiptext="Starts capturing video from a camera, or stops capturing if theCamera is set to null." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#attachCamera()"/>
                <string name="send" object="[flash.net.NetStream]" text=".send(%handlerName:String,arguments:restParam%):void" tiptext="Sends a message on a published stream to all subscribing clients." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#send()"/>
                <string name="receiveAudio" object="[flash.net.NetStream]" text=".receiveAudio(%flag:Boolean%):void" tiptext="Specifies whether incoming audio plays on the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#receiveAudio()"/>
                <string name="receiveVideo" object="[flash.net.NetStream]" text=".receiveVideo(%flagOrFPS:*%):void" tiptext="Specifies whether incoming video will play on the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#receiveVideo()"/>
                <string name="pause" object="[flash.net.NetStream]" text=".pause(%%):void" tiptext="Pauses playback of a video stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#pause()"/>
                <string name="resume" object="[flash.net.NetStream]" text=".resume(%%):void" tiptext="Resumes playback of a video stream that is paused." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#resume()"/>
                <string name="togglePause" object="[flash.net.NetStream]" text=".togglePause(%%):void" tiptext="Pauses or resumes playback of a stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#togglePause()"/>
                <string name="seek" object="[flash.net.NetStream]" text=".seek(%offset:Number%):void" tiptext="Seeks the keyframe (also called an I-frame in the video industry) closest to the specified location." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#seek()"/>
                <string name="play" object="[flash.net.NetStream]" text=".play(%arguments:restParam%):void" tiptext="Begins playback of video files." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#play()"/>
                <string name="publish" object="[flash.net.NetStream]" text=".publish(%[name:String=null,type:String=null]%):void" tiptext="Sends streaming audio, video, and text messages from a client to Flash Media Server, optionally recording the stream during transmission." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#publish()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class NetStream" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html">
                <string name="bufferTime" object="[flash.net.NetStream]" text=".bufferTime" tiptext="Specifies how long to buffer messages before starting to display the stream." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#bufferTime"/>
                <string name="time" object="[flash.net.NetStream]" text=".time" tiptext="The position of the playhead, in seconds." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#time"/>
                <string name="currentFPS" object="[flash.net.NetStream]" text=".currentFPS" tiptext="The number of frames per second being displayed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#currentFPS"/>
                <string name="bufferLength" object="[flash.net.NetStream]" text=".bufferLength" tiptext="The number of seconds of data currently in the buffer." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#bufferLength"/>
                <string name="liveDelay" object="[flash.net.NetStream]" text=".liveDelay" tiptext="The number of seconds of data in the subscribing stream&apos;s buffer in live (unbuffered) mode." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#liveDelay"/>
                <string name="bytesLoaded" object="[flash.net.NetStream]" text=".bytesLoaded" tiptext="The number of bytes of data that have been loaded into Flash Player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#bytesLoaded"/>
                <string name="bytesTotal" object="[flash.net.NetStream]" text=".bytesTotal" tiptext="The total size in bytes of the file being loaded into Flash Player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#bytesTotal"/>
                <string name="soundTransform" object="[flash.net.NetStream]" text=".soundTransform" tiptext="Controls sound in this NetStream object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#soundTransform"/>
                <string name="checkPolicyFile" object="[flash.net.NetStream]" text=".checkPolicyFile" tiptext="Specifies whether Flash Player should try to download a cross-domain policy file from the loaded video file&apos;s server before beginning to load the video file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#checkPolicyFile"/>
                <string name="client" object="[flash.net.NetStream]" text=".client" tiptext="Specifies the object on which callback methods are invoked." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#client"/>
                <string name="objectEncoding" object="[flash.net.NetStream]" text=".objectEncoding" tiptext="The object encoding (AMF version) for this NetStream object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#objectEncoding"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class NetStream" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html">
                <string name="onPlayStatus" object="[flash.net.NetStream]" text=".addEventListener(%type:String={NetStatusEvent.NET_STATUS,IOErrorEvent.IO_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a NetStream object has completely played a stream." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#event:onPlayStatus"/>
                <string name="onCuePoint" object="[flash.net.NetStream]" text=".addEventListener(%type:String={NetStatusEvent.NET_STATUS,IOErrorEvent.IO_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Invoked when an embedded cue point is reached while playing a video file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#event:onCuePoint"/>
                <string name="onMetaData" object="[flash.net.NetStream]" text=".addEventListener(%type:String={NetStatusEvent.NET_STATUS,IOErrorEvent.IO_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when Flash Player receives descriptive information embedded in the video being played." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#event:onMetaData"/>
                <string name="netStatus" object="[flash.net.NetStream]" text=".addEventListener(%type:String=NetStatusEvent.NET_STATUS{NetStatusEvent.NET_STATUS,IOErrorEvent.IO_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a NetStream object is reporting its status or error condition." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#event:netStatus"/>
                <string name="ioError" object="[flash.net.NetStream]" text=".addEventListener(%type:String=IOErrorEvent.IO_ERROR{NetStatusEvent.NET_STATUS,IOErrorEvent.IO_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an input or output error occurs that causes a network operation to fail." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#event:ioError"/>
                <string name="asyncError" object="[flash.net.NetStream]" text=".addEventListener(%type:String=AsyncErrorEvent.ASYNC_ERROR{NetStatusEvent.NET_STATUS,IOErrorEvent.IO_ERROR,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an exception is thrown asynchronously -- that is, from native asynchronous code." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/NetStream.html#event:asyncError"/>
            </folder>
        </folder>
        <folder name="Methods" id="Methods" tiptext="Methods for package flash.net" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/package-detail.html">
            <string name="registerClassAlias" text="registerClassAlias(%aliasName:String,classObject:Class%):void" tiptext="Preserves the class (type) of an object when the object is encoded in Action Message Format (AMF)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/package.html#registerClassAlias()"/>
            <string name="getClassByAlias" text="getClassByAlias(%aliasName:String%):Class" tiptext="Looks up a class that previously had an alias registered through a call to the registerClassAlias() method." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/package.html#getClassByAlias()"/>
            <string name="navigateToURL" text="navigateToURL(%request:flash.net:URLRequest[,window:String=null]%):void" tiptext="Opens or replaces a window in the application that contains the Flash Player container (usually a browser)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/package.html#navigateToURL()"/>
            <string name="sendToURL" text="sendToURL(%request:flash.net:URLRequest%):void" tiptext="Sends a URL request to a server, but ignores any response." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/package.html#sendToURL()"/>
        </folder>
        <folder name="ObjectEncoding" id="[flash.net.ObjectEncoding]" sort="true" index="true" asAncestors="Object" tiptext="The ObjectEncoding class allows classes that serialize objects (such as NetStream, NetConnection, SharedObject, and ByteArray) to work with prior versions of ActionScript." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/ObjectEncoding.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class ObjectEncoding" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/ObjectEncoding.html">
                <string name="AMF0" object="[flash.net.ObjectEncoding]" text="ObjectEncoding.AMF0" constant="true" tiptext="Specifies that objects are serialized using the Action Message Format for ActionScript 1.0 and 2.0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/ObjectEncoding.html#AMF0"/>
                <string name="AMF3" object="[flash.net.ObjectEncoding]" text="ObjectEncoding.AMF3" constant="true" tiptext="Specifies that objects are serialized using the Action Message Format for ActionScript 3.0." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/ObjectEncoding.html#AMF3"/>
                <string name="DEFAULT" object="[flash.net.ObjectEncoding]" text="ObjectEncoding.DEFAULT" constant="true" tiptext="Specifies the default (latest) format for the current player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/ObjectEncoding.html#DEFAULT"/>
                <string name="dynamicPropertyWriter" object="[flash.net.ObjectEncoding]" text=".dynamicPropertyWriter" tiptext="Allows greater control over the serialization of dynamic properties of dynamic objects." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/ObjectEncoding.html#dynamicPropertyWriter"/>
            </folder>
        </folder>
        <folder name="Responder" id="[flash.net.Responder]" sort="true" index="true" asAncestors="Object" tiptext="The Responder class provides an object that is used in NetConnection.call() to handle return values from the server related to the success or failure of specific operations." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Responder.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Responder" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Responder.html">
                <string name="Responder" object="[flash.net.Responder]" text="new Responder(%result:Function[,status:Function=null]%)" constructor="true" tiptext="Creates a new Responder object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Responder.html#Responder()"/>
            </folder>
        </folder>
        <folder name="SharedObject" id="[flash.net.SharedObject]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The SharedObject class is used to read and store limited amounts of data on a user&apos;s computer or on a server." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class SharedObject" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html">
                <string name="getLocal" object="[flash.net.SharedObject]" text="SharedObject.getLocal(%name:String[,localPath:String=null,secure:Boolean=false]%):flash.net:SharedObject" static="true" tiptext="Returns a reference to a locally persistent shared object that is only available to the current client." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#getLocal()"/>
                <string name="getRemote" object="[flash.net.SharedObject]" text="SharedObject.getRemote(%name:String[,remotePath:String=null,persistence:Object=false,secure:Boolean=false]%):flash.net:SharedObject" static="true" tiptext="Returns a reference to a shared object on Flash Media Server that multiple clients can access." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#getRemote()"/>
                <string name="connect" object="[flash.net.SharedObject]" text=".connect(%myConnection:flash.net:NetConnection[,params:String=null]%):void" tiptext="Connects to a remote shared object on a server through a specified NetConnection object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#connect()"/>
                <string name="close" object="[flash.net.SharedObject]" text=".close(%%):void" tiptext="Closes the connection between a remote shared object and the server." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#close()"/>
                <string name="flush" object="[flash.net.SharedObject]" text=".flush(%[minDiskSpace:int=0]%):String" tiptext="Immediately writes a locally persistent shared object to a local file." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#flush()"/>
                <string name="send" object="[flash.net.SharedObject]" text=".send(%arguments:restParam%):void" tiptext="Broadcasts a message to all clients connected to a remote shared object, including the client that sent the message." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#send()"/>
                <string name="clear" object="[flash.net.SharedObject]" text=".clear(%%):void" tiptext="For local shared objects, purges all of the data and deletes the shared object from the disk." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#clear()"/>
                <string name="setDirty" object="[flash.net.SharedObject]" text=".setDirty(%propertyName:String%):void" tiptext="Indicates to the server that the value of a property in the shared object has changed." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#setDirty()"/>
                <string name="setProperty" object="[flash.net.SharedObject]" text=".setProperty(%propertyName:String[,value:Object=null]%):void" tiptext="Updates the value of a property in a shared object and indicates to the server that the value of the property has changed." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#setProperty()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class SharedObject" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html">
                <string name="data" object="[flash.net.SharedObject]" text=".data" tiptext="The collection of attributes assigned to the data property of the object; these attributes can be shared and stored." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#data"/>
                <string name="size" object="[flash.net.SharedObject]" text=".size" tiptext="The current size of the shared object, in bytes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#size"/>
                <string name="fps" object="[flash.net.SharedObject]" text=".fps" tiptext="Specifies the number of times per second that a client&apos;s changes to a shared object are sent to the server." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#fps"/>
                <string name="defaultObjectEncoding" object="[flash.net.SharedObject]" text=".defaultObjectEncoding" tiptext="The default object encoding (AMF version) for all local shared objects created in the SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#defaultObjectEncoding"/>
                <string name="objectEncoding" object="[flash.net.SharedObject]" text=".objectEncoding" tiptext="The object encoding (AMF version) for this shared object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#objectEncoding"/>
                <string name="client" object="[flash.net.SharedObject]" text=".client" tiptext="Indicates the object on which callback methods are invoked." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#client"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class SharedObject" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html">
                <string name="sync" object="[flash.net.SharedObject]" text=".addEventListener(%type:String=SyncEvent.SYNC{SyncEvent.SYNC,NetStatusEvent.NET_STATUS,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a remote shared object has been updated by the server." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#event:sync"/>
                <string name="netStatus" object="[flash.net.SharedObject]" text=".addEventListener(%type:String=NetStatusEvent.NET_STATUS{SyncEvent.SYNC,NetStatusEvent.NET_STATUS,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a SharedObject instance is reporting its status or error condition." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#event:netStatus"/>
                <string name="asyncError" object="[flash.net.SharedObject]" text=".addEventListener(%type:String=AsyncErrorEvent.ASYNC_ERROR{SyncEvent.SYNC,NetStatusEvent.NET_STATUS,AsyncErrorEvent.ASYNC_ERROR},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an exception is thrown asynchronously -- that is, from native asynchronous code." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObject.html#event:asyncError"/>
            </folder>
        </folder>
        <folder name="SharedObjectFlushStatus" id="[flash.net.SharedObjectFlushStatus]" sort="true" index="true" asAncestors="Object" tiptext="The SharedObjectFlushStatus class provides values for the code returned from a call to the SharedObject.flush() method." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObjectFlushStatus.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class SharedObjectFlushStatus" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObjectFlushStatus.html">
                <string name="FLUSHED" object="[flash.net.SharedObjectFlushStatus]" text="SharedObjectFlushStatus.FLUSHED" constant="true" tiptext="Indicates that the flush completed successfully." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObjectFlushStatus.html#FLUSHED"/>
                <string name="PENDING" object="[flash.net.SharedObjectFlushStatus]" text="SharedObjectFlushStatus.PENDING" constant="true" tiptext="Indicates that the user is being prompted to increase disk space for the shared object before the flush can occur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/SharedObjectFlushStatus.html#PENDING"/>
            </folder>
        </folder>
        <folder name="Socket" id="[flash.net.Socket]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The Socket class enables ActionScript code to make socket connections and to read and write raw binary data." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Socket" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html">
                <string name="Socket" object="[flash.net.Socket]" text="new Socket(%[host:String=null,port:int=0]%)" constructor="true" tiptext="Creates a Socket object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#Socket()"/>
                <string name="connect" object="[flash.net.Socket]" text=".connect(%host:String,port:int%):void" tiptext="Connects the socket to the specified host and port." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#connect()"/>
                <string name="readBytes" object="[flash.net.Socket]" text=".readBytes(%bytes:flash.utils:ByteArray[,offset:uint=0,length:uint=0]%):void" tiptext="Reads the number of data bytes specified by the length parameter from the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readBytes()"/>
                <string name="writeBytes" object="[flash.net.Socket]" text=".writeBytes(%bytes:flash.utils:ByteArray[,offset:uint=0,length:uint=0]%):void" tiptext="Writes a sequence of bytes from the specified byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#writeBytes()"/>
                <string name="writeBoolean" object="[flash.net.Socket]" text=".writeBoolean(%value:Boolean%):void" tiptext="Writes a Boolean value to the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#writeBoolean()"/>
                <string name="writeByte" object="[flash.net.Socket]" text=".writeByte(%value:int%):void" tiptext="Writes a byte to the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#writeByte()"/>
                <string name="writeShort" object="[flash.net.Socket]" text=".writeShort(%value:int%):void" tiptext="Writes a 16-bit integer to the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#writeShort()"/>
                <string name="writeInt" object="[flash.net.Socket]" text=".writeInt(%value:int%):void" tiptext="Writes a 32-bit signed integer to the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#writeInt()"/>
                <string name="writeUnsignedInt" object="[flash.net.Socket]" text=".writeUnsignedInt(%value:uint%):void" tiptext="Writes a 32-bit unsigned integer to the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#writeUnsignedInt()"/>
                <string name="writeFloat" object="[flash.net.Socket]" text=".writeFloat(%value:Number%):void" tiptext="Writes an IEEE 754 single-precision floating-point number to the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#writeFloat()"/>
                <string name="writeDouble" object="[flash.net.Socket]" text=".writeDouble(%value:Number%):void" tiptext="Writes an IEEE 754 double-precision floating-point number to the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#writeDouble()"/>
                <string name="writeMultiByte" object="[flash.net.Socket]" text=".writeMultiByte(%value:String,charSet:String%):void" tiptext="Writes a multibyte string from the byte stream, using the specified character set." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#writeMultiByte()"/>
                <string name="writeUTF" object="[flash.net.Socket]" text=".writeUTF(%value:String%):void" tiptext="Writes the following data to the socket: a 16-bit unsigned integer, which indicates the length of the specified UTF-8 string in bytes, followed by the string itself." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#writeUTF()"/>
                <string name="writeUTFBytes" object="[flash.net.Socket]" text=".writeUTFBytes(%value:String%):void" tiptext="Writes a UTF-8 string to the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#writeUTFBytes()"/>
                <string name="readBoolean" object="[flash.net.Socket]" text=".readBoolean(%%):Boolean" tiptext="Reads a Boolean value from the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readBoolean()"/>
                <string name="readByte" object="[flash.net.Socket]" text=".readByte(%%):int" tiptext="Reads a signed byte from the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readByte()"/>
                <string name="readUnsignedByte" object="[flash.net.Socket]" text=".readUnsignedByte(%%):uint" tiptext="Reads an unsigned byte from the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readUnsignedByte()"/>
                <string name="readShort" object="[flash.net.Socket]" text=".readShort(%%):int" tiptext="Reads a signed 16-bit integer from the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readShort()"/>
                <string name="readUnsignedShort" object="[flash.net.Socket]" text=".readUnsignedShort(%%):uint" tiptext="Reads an unsigned 16-bit integer from the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readUnsignedShort()"/>
                <string name="readInt" object="[flash.net.Socket]" text=".readInt(%%):int" tiptext="Reads a signed 32-bit integer from the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readInt()"/>
                <string name="readUnsignedInt" object="[flash.net.Socket]" text=".readUnsignedInt(%%):uint" tiptext="Reads an unsigned 32-bit integer from the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readUnsignedInt()"/>
                <string name="readFloat" object="[flash.net.Socket]" text=".readFloat(%%):Number" tiptext="Reads an IEEE 754 single-precision floating-point number from the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readFloat()"/>
                <string name="readDouble" object="[flash.net.Socket]" text=".readDouble(%%):Number" tiptext="Reads an IEEE 754 double-precision floating-point number from the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readDouble()"/>
                <string name="readMultiByte" object="[flash.net.Socket]" text=".readMultiByte(%length:uint,charSet:String%):String" tiptext="Reads a multibyte string from the byte stream, using the specified character set." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readMultiByte()"/>
                <string name="readUTF" object="[flash.net.Socket]" text=".readUTF(%%):String" tiptext="Reads a UTF-8 string from the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readUTF()"/>
                <string name="readUTFBytes" object="[flash.net.Socket]" text=".readUTFBytes(%length:uint%):String" tiptext="Reads the number of UTF-8 data bytes specified by the length parameter from the socket, and returns a string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readUTFBytes()"/>
                <string name="close" object="[flash.net.Socket]" text=".close(%%):void" tiptext="Closes the socket." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#close()"/>
                <string name="flush" object="[flash.net.Socket]" text=".flush(%%):void" tiptext="Flushes any accumulated data in the socket&apos;s output buffer." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#flush()"/>
                <string name="writeObject" object="[flash.net.Socket]" text=".writeObject(%object:*%):void" tiptext="Write an object to the socket in AMF serialized format." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#writeObject()"/>
                <string name="readObject" object="[flash.net.Socket]" text=".readObject(%%)" tiptext="Reads an object from the socket, encoded in AMF serialized format." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#readObject()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Socket" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html">
                <string name="bytesAvailable" object="[flash.net.Socket]" text=".bytesAvailable" tiptext="The number of bytes of data available for reading in the input buffer." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#bytesAvailable"/>
                <string name="connected" object="[flash.net.Socket]" text=".connected" tiptext="Indicates whether this Socket object is currently connected." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#connected"/>
                <string name="objectEncoding" object="[flash.net.Socket]" text=".objectEncoding" tiptext="Controls the version of AMF used when writing or reading an object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#objectEncoding"/>
                <string name="endian" object="[flash.net.Socket]" text=".endian" tiptext="Indicates the byte order for the data; possible values are constants from the flash.utils.Endian class, Endian.BIG_ENDIAN or Endian.LITTLE_ENDIAN." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#endian"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class Socket" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html">
                <string name="securityError" object="[flash.net.Socket]" text=".addEventListener(%type:String=SecurityErrorEvent.SECURITY_ERROR{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.SOCKET_DATA,IOErrorEvent.IO_ERROR,Event.CONNECT,Event.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if a call to Socket.connect() attempts to connect either to a server outside the caller&apos;s security sandbox or to a port lower than 1024." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#event:securityError"/>
                <string name="socketData" object="[flash.net.Socket]" text=".addEventListener(%type:String=ProgressEvent.SOCKET_DATA{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.SOCKET_DATA,IOErrorEvent.IO_ERROR,Event.CONNECT,Event.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a socket has received data." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#event:socketData"/>
                <string name="ioError" object="[flash.net.Socket]" text=".addEventListener(%type:String=IOErrorEvent.IO_ERROR{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.SOCKET_DATA,IOErrorEvent.IO_ERROR,Event.CONNECT,Event.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an input/output error occurs that causes a send or load operation to fail." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#event:ioError"/>
                <string name="connect" object="[flash.net.Socket]" text=".addEventListener(%type:String=Event.CONNECT{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.SOCKET_DATA,IOErrorEvent.IO_ERROR,Event.CONNECT,Event.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a network connection has been established." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#event:connect"/>
                <string name="close" object="[flash.net.Socket]" text=".addEventListener(%type:String=Event.CLOSE{SecurityErrorEvent.SECURITY_ERROR,ProgressEvent.SOCKET_DATA,IOErrorEvent.IO_ERROR,Event.CONNECT,Event.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the server closes the socket connection." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/Socket.html#event:close"/>
            </folder>
        </folder>
        <folder name="URLLoader" id="[flash.net.URLLoader]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The URLLoader class downloads data from a URL as text, binary data, or URL-encoded variables." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class URLLoader" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html">
                <string name="URLLoader" object="[flash.net.URLLoader]" text="new URLLoader(%[request:flash.net:URLRequest=null]%)" constructor="true" tiptext="Creates a URLLoader object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#URLLoader()"/>
                <string name="load" object="[flash.net.URLLoader]" text=".load(%request:flash.net:URLRequest%):void" tiptext="Sends and loads data from the specified URL." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#load()"/>
                <string name="close" object="[flash.net.URLLoader]" text=".close(%%):void" tiptext="Closes the load operation in progress." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#close()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class URLLoader" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html">
                <string name="data" object="[flash.net.URLLoader]" text=".data" tiptext="The data received from the load operation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#data"/>
                <string name="dataFormat" object="[flash.net.URLLoader]" text=".dataFormat" tiptext="Controls whether the downloaded data is received as text (URLLoaderDataFormat.TEXT), raw binary data (URLLoaderDataFormat.BINARY), or URL-encoded variables (URLLoaderDataFormat.VARIABLES)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#dataFormat"/>
                <string name="bytesLoaded" object="[flash.net.URLLoader]" text=".bytesLoaded" tiptext="Indicates the number of bytes that have been loaded thus far during the load operation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#bytesLoaded"/>
                <string name="bytesTotal" object="[flash.net.URLLoader]" text=".bytesTotal" tiptext="Indicates the total number of bytes in the downloaded data." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#bytesTotal"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class URLLoader" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html">
                <string name="httpStatus" object="[flash.net.URLLoader]" text=".addEventListener(%type:String=HTTPStatusEvent.HTTP_STATUS{HTTPStatusEvent.HTTP_STATUS,SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,ProgressEvent.PROGRESS,Event.COMPLETE,Event.OPEN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if a call to URLLoader.load() attempts to access data over HTTP and the current Flash Player environment is able to detect and return the status code for the request." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#event:httpStatus"/>
                <string name="securityError" object="[flash.net.URLLoader]" text=".addEventListener(%type:String=SecurityErrorEvent.SECURITY_ERROR{HTTPStatusEvent.HTTP_STATUS,SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,ProgressEvent.PROGRESS,Event.COMPLETE,Event.OPEN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if a call to URLLoader.load() attempts to load data from a server outside the security sandbox." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#event:securityError"/>
                <string name="ioError" object="[flash.net.URLLoader]" text=".addEventListener(%type:String=IOErrorEvent.IO_ERROR{HTTPStatusEvent.HTTP_STATUS,SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,ProgressEvent.PROGRESS,Event.COMPLETE,Event.OPEN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if a call to URLLoader.load() results in a fatal error that terminates the download." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#event:ioError"/>
                <string name="progress" object="[flash.net.URLLoader]" text=".addEventListener(%type:String=ProgressEvent.PROGRESS{HTTPStatusEvent.HTTP_STATUS,SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,ProgressEvent.PROGRESS,Event.COMPLETE,Event.OPEN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when data is received as the download operation progresses." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#event:progress"/>
                <string name="complete" object="[flash.net.URLLoader]" text=".addEventListener(%type:String=Event.COMPLETE{HTTPStatusEvent.HTTP_STATUS,SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,ProgressEvent.PROGRESS,Event.COMPLETE,Event.OPEN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after all the received data is decoded and placed in the data property of the URLLoader object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#event:complete"/>
                <string name="open" object="[flash.net.URLLoader]" text=".addEventListener(%type:String=Event.OPEN{HTTPStatusEvent.HTTP_STATUS,SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,ProgressEvent.PROGRESS,Event.COMPLETE,Event.OPEN},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the download operation commences following a call to the URLLoader.load() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoader.html#event:open"/>
            </folder>
        </folder>
        <folder name="URLLoaderDataFormat" id="[flash.net.URLLoaderDataFormat]" sort="true" index="true" asAncestors="Object" tiptext="The URLLoaderDataFormat class provides values that specify how downloaded data is received." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoaderDataFormat.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class URLLoaderDataFormat" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoaderDataFormat.html">
                <string name="TEXT" object="[flash.net.URLLoaderDataFormat]" text="URLLoaderDataFormat.TEXT" constant="true" tiptext="Specifies that downloaded data is received as text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoaderDataFormat.html#TEXT"/>
                <string name="BINARY" object="[flash.net.URLLoaderDataFormat]" text="URLLoaderDataFormat.BINARY" constant="true" tiptext="Specifies that downloaded data is received as raw binary data." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoaderDataFormat.html#BINARY"/>
                <string name="VARIABLES" object="[flash.net.URLLoaderDataFormat]" text="URLLoaderDataFormat.VARIABLES" constant="true" tiptext="Specifies that downloaded data is received as URL-encoded variables." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLLoaderDataFormat.html#VARIABLES"/>
            </folder>
        </folder>
        <folder name="URLRequest" id="[flash.net.URLRequest]" sort="true" index="true" asAncestors="Object" tiptext="The URLRequest class captures all of the information in a single HTTP request." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequest.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class URLRequest" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequest.html">
                <string name="URLRequest" object="[flash.net.URLRequest]" text="new URLRequest(%[url:String=null]%)" constructor="true" tiptext="Creates a URLRequest object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequest.html#URLRequest()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class URLRequest" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequest.html">
                <string name="url" object="[flash.net.URLRequest]" text=".url" tiptext="The URL to be requested." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequest.html#url"/>
                <string name="data" object="[flash.net.URLRequest]" text=".data" tiptext="An object containing data to be transmitted with the URL request." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequest.html#data"/>
                <string name="method" object="[flash.net.URLRequest]" text=".method" tiptext="Controls whether the HTTP form submission method is a GET or POST operation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequest.html#method"/>
                <string name="contentType" object="[flash.net.URLRequest]" text=".contentType" tiptext="The MIME content type of any POST data." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequest.html#contentType"/>
                <string name="requestHeaders" object="[flash.net.URLRequest]" text=".requestHeaders" tiptext="The array of HTTP request headers to be appended to the HTTP request." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequest.html#requestHeaders"/>
            </folder>
        </folder>
        <folder name="URLRequestHeader" id="[flash.net.URLRequestHeader]" sort="true" index="true" asAncestors="Object" tiptext="A URLRequestHeader object encapsulates a single HTTP request header and consists of a name/value pair." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequestHeader.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class URLRequestHeader" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequestHeader.html">
                <string name="URLRequestHeader" object="[flash.net.URLRequestHeader]" text="new URLRequestHeader(%name:String,value:String%)" constructor="true" tiptext="Creates a new URLRequestHeader object that encapsulates a single HTTP request header." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequestHeader.html#URLRequestHeader()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class URLRequestHeader" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequestHeader.html">
                <string name="name" object="[flash.net.URLRequestHeader]" text=".name" tiptext="An HTTP request header name (such as Content-Type or SOAPAction)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequestHeader.html#name"/>
                <string name="value" object="[flash.net.URLRequestHeader]" text=".value" tiptext="The value associated with the name property (such as text/plain)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequestHeader.html#value"/>
            </folder>
        </folder>
        <folder name="URLRequestMethod" id="[flash.net.URLRequestMethod]" sort="true" index="true" asAncestors="Object" tiptext="The URLRequestMethod class provides values that specify whether the URLRequest object should use the POST method or the GET method when sending data to a server." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequestMethod.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class URLRequestMethod" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequestMethod.html">
                <string name="POST" object="[flash.net.URLRequestMethod]" text="URLRequestMethod.POST" constant="true" tiptext="Specifies that the URLRequest object is a POST." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequestMethod.html#POST"/>
                <string name="GET" object="[flash.net.URLRequestMethod]" text="URLRequestMethod.GET" constant="true" tiptext="Specifies that the URLRequest object is a GET." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLRequestMethod.html#GET"/>
            </folder>
        </folder>
        <folder name="URLStream" id="[flash.net.URLStream]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The URLStream class provides low-level access to downloading URLs." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class URLStream" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html">
                <string name="load" object="[flash.net.URLStream]" text=".load(%request:flash.net:URLRequest%):void" tiptext="Begins downloading the URL specified in the request parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#load()"/>
                <string name="readBytes" object="[flash.net.URLStream]" text=".readBytes(%bytes:flash.utils:ByteArray[,offset:uint=0,length:uint=0]%):void" tiptext="Reads length bytes of data from the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readBytes()"/>
                <string name="readBoolean" object="[flash.net.URLStream]" text=".readBoolean(%%):Boolean" tiptext="Reads a Boolean value from the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readBoolean()"/>
                <string name="readByte" object="[flash.net.URLStream]" text=".readByte(%%):int" tiptext="Reads a signed byte from the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readByte()"/>
                <string name="readUnsignedByte" object="[flash.net.URLStream]" text=".readUnsignedByte(%%):uint" tiptext="Reads an unsigned byte from the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readUnsignedByte()"/>
                <string name="readShort" object="[flash.net.URLStream]" text=".readShort(%%):int" tiptext="Reads a signed 16-bit integer from the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readShort()"/>
                <string name="readUnsignedShort" object="[flash.net.URLStream]" text=".readUnsignedShort(%%):uint" tiptext="Reads an unsigned 16-bit integer from the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readUnsignedShort()"/>
                <string name="readUnsignedInt" object="[flash.net.URLStream]" text=".readUnsignedInt(%%):uint" tiptext="Reads an unsigned 32-bit integer from the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readUnsignedInt()"/>
                <string name="readInt" object="[flash.net.URLStream]" text=".readInt(%%):int" tiptext="Reads a signed 32-bit integer from the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readInt()"/>
                <string name="readFloat" object="[flash.net.URLStream]" text=".readFloat(%%):Number" tiptext="Reads an IEEE 754 single-precision floating-point number from the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readFloat()"/>
                <string name="readDouble" object="[flash.net.URLStream]" text=".readDouble(%%):Number" tiptext="Reads an IEEE 754 double-precision floating-point number from the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readDouble()"/>
                <string name="readMultiByte" object="[flash.net.URLStream]" text=".readMultiByte(%length:uint,charSet:String%):String" tiptext="Reads a multibyte string of specified length from the byte stream using the specified character set." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readMultiByte()"/>
                <string name="readUTF" object="[flash.net.URLStream]" text=".readUTF(%%):String" tiptext="Reads a UTF-8 string from the stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readUTF()"/>
                <string name="readUTFBytes" object="[flash.net.URLStream]" text=".readUTFBytes(%length:uint%):String" tiptext="Reads a sequence of length UTF-8 bytes from the stream, and returns a string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readUTFBytes()"/>
                <string name="close" object="[flash.net.URLStream]" text=".close(%%):void" tiptext="Immediately closes the stream and cancels the download operation." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#close()"/>
                <string name="readObject" object="[flash.net.URLStream]" text=".readObject(%%)" tiptext="Reads an object from the socket, encoded in Action Message Format (AMF)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#readObject()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class URLStream" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html">
                <string name="connected" object="[flash.net.URLStream]" text=".connected" tiptext="Indicates whether this URLStream object is currently connected." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#connected"/>
                <string name="bytesAvailable" object="[flash.net.URLStream]" text=".bytesAvailable" tiptext="Returns the number of bytes of data available for reading in the input buffer." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#bytesAvailable"/>
                <string name="objectEncoding" object="[flash.net.URLStream]" text=".objectEncoding" tiptext="Controls the version of Action Message Format (AMF) used when writing or reading an object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#objectEncoding"/>
                <string name="endian" object="[flash.net.URLStream]" text=".endian" tiptext="Indicates the byte order for the data; possible values are BIG_ENDIAN or LITTLE_ENDIAN." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#endian"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class URLStream" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html">
                <string name="progress" object="[flash.net.URLStream]" text=".addEventListener(%type:String=ProgressEvent.PROGRESS{ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,SecurityErrorEvent.SECURITY_ERROR,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when data is received as the download operation progresses." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#event:progress"/>
                <string name="open" object="[flash.net.URLStream]" text=".addEventListener(%type:String=Event.OPEN{ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,SecurityErrorEvent.SECURITY_ERROR,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a load operation starts." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#event:open"/>
                <string name="ioError" object="[flash.net.URLStream]" text=".addEventListener(%type:String=IOErrorEvent.IO_ERROR{ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,SecurityErrorEvent.SECURITY_ERROR,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an input/output error occurs that causes a load operation to fail." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#event:ioError"/>
                <string name="httpStatus" object="[flash.net.URLStream]" text=".addEventListener(%type:String=HTTPStatusEvent.HTTP_STATUS{ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,SecurityErrorEvent.SECURITY_ERROR,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if a call to URLStream.load() attempts to access data over HTTP, and the current Flash Player is able to detect and return the status code for the request." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#event:httpStatus"/>
                <string name="securityError" object="[flash.net.URLStream]" text=".addEventListener(%type:String=SecurityErrorEvent.SECURITY_ERROR{ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,SecurityErrorEvent.SECURITY_ERROR,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if a call to URLStream.load() attempts to load data from a server outside the security sandbox." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#event:securityError"/>
                <string name="complete" object="[flash.net.URLStream]" text=".addEventListener(%type:String=Event.COMPLETE{ProgressEvent.PROGRESS,Event.OPEN,IOErrorEvent.IO_ERROR,HTTPStatusEvent.HTTP_STATUS,SecurityErrorEvent.SECURITY_ERROR,Event.COMPLETE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when data has loaded successfully." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLStream.html#event:complete"/>
            </folder>
        </folder>
        <folder name="URLVariables" id="[flash.net.URLVariables]" sort="true" index="true" asAncestors="Object" tiptext="The URLVariables class allows you to transfer variables between a Flash&amp;#xAE; application and a server." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLVariables.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class URLVariables" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLVariables.html">
                <string name="URLVariables" object="[flash.net.URLVariables]" text="new URLVariables(%[source:String=null]%)" constructor="true" tiptext="Creates a new URLVariables object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLVariables.html#URLVariables()"/>
                <string name="decode" object="[flash.net.URLVariables]" text=".decode(%source:String%):void" tiptext="Converts the variable string to properties of the specified URLVariables object." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLVariables.html#decode()"/>
                <string name="toString" object="[flash.net.URLVariables]" text=".toString(%%):String" tiptext="Returns a string containing all enumerable variables, in the MIME content encoding application/x-www-form-urlencoded." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/URLVariables.html#toString()"/>
            </folder>
        </folder>
        <folder name="XMLSocket" id="[flash.net.XMLSocket]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The XMLSocket class implements client sockets that let the computer that is running Flash Player communicate with a server computer identified by an IP address or domain name." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class XMLSocket" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html">
                <string name="XMLSocket" object="[flash.net.XMLSocket]" text="new XMLSocket(%[host:String=null,port:int=0]%)" constructor="true" tiptext="Creates a new XMLSocket object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html#XMLSocket()"/>
                <string name="connect" object="[flash.net.XMLSocket]" text=".connect(%host:String,port:int%):void" tiptext="Establishes a connection to the specified Internet host using the specified TCP port." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html#connect()"/>
                <string name="send" object="[flash.net.XMLSocket]" text=".send(%object:*%):void" tiptext="Converts the XML object or data specified in the object parameter to a string and transmits it to the server, followed by a zero (0) byte." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html#send()"/>
                <string name="close" object="[flash.net.XMLSocket]" text=".close(%%):void" tiptext="Closes the connection specified by the XMLSocket object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html#close()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class XMLSocket" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html">
                <string name="connected" object="[flash.net.XMLSocket]" text=".connected" tiptext="Indicates whether this XMLSocket object is currently connected." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html#connected"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class XMLSocket" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html">
                <string name="securityError" object="[flash.net.XMLSocket]" text=".addEventListener(%type:String=SecurityErrorEvent.SECURITY_ERROR{SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,DataEvent.DATA,Event.CONNECT,Event.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched if a call to the XMLSocket.connect() method attempts to connect either to a server outside the caller&apos;s security sandbox or to a port lower than 1024." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html#event:securityError"/>
                <string name="ioError" object="[flash.net.XMLSocket]" text=".addEventListener(%type:String=IOErrorEvent.IO_ERROR{SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,DataEvent.DATA,Event.CONNECT,Event.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when an input/output error occurs that causes a send or receive operation to fail." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html#event:ioError"/>
                <string name="data" object="[flash.net.XMLSocket]" text=".addEventListener(%type:String=DataEvent.DATA{SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,DataEvent.DATA,Event.CONNECT,Event.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after raw data is sent or received." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html#event:data"/>
                <string name="connect" object="[flash.net.XMLSocket]" text=".addEventListener(%type:String=Event.CONNECT{SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,DataEvent.DATA,Event.CONNECT,Event.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after a successful call to the XMLSocket.connect() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html#event:connect"/>
                <string name="close" object="[flash.net.XMLSocket]" text=".addEventListener(%type:String=Event.CLOSE{SecurityErrorEvent.SECURITY_ERROR,IOErrorEvent.IO_ERROR,DataEvent.DATA,Event.CONNECT,Event.CLOSE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when the server closes the socket connection." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/net/XMLSocket.html#event:close"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.printing" id="flash.printing" sort="true" tiptext="Classes for package flash.printing" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/package-detail.html">
        <folder name="PrintJob" id="[flash.printing.PrintJob]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The PrintJob class lets you create content and print it to one or more pages." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJob.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class PrintJob" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJob.html">
                <string name="PrintJob" object="[flash.printing.PrintJob]" text="new PrintJob(%%)" constructor="true" tiptext="Creates a PrintJob object that you can use to print one or more pages." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJob.html#PrintJob()"/>
                <string name="start" object="[flash.printing.PrintJob]" text=".start(%%):Boolean" tiptext="Displays the operating system&apos;s Print dialog box, starts spooling, and sets the PrintJob read-only property values." version="9. " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJob.html#start()"/>
                <string name="send" object="[flash.printing.PrintJob]" text=".send(%%):void" tiptext="Sends spooled pages to the printer after PrintJob.start() and PrintJob.addPage() have been successful." version="9. " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJob.html#send()"/>
                <string name="addPage" object="[flash.printing.PrintJob]" text=".addPage(%sprite:flash.display:Sprite[,printArea:flash.geom:Rectangle=null,options:flash.printing:PrintJobOptions=null,frameNum:int=0]%):void" tiptext="Sends the specified Sprite object as a single page to the print spooler." version="9. " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJob.html#addPage()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class PrintJob" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJob.html">
                <string name="paperHeight" object="[flash.printing.PrintJob]" text=".paperHeight" tiptext="The overall paper height, in points." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJob.html#paperHeight"/>
                <string name="paperWidth" object="[flash.printing.PrintJob]" text=".paperWidth" tiptext="The overall paper width, in points." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJob.html#paperWidth"/>
                <string name="pageHeight" object="[flash.printing.PrintJob]" text=".pageHeight" tiptext="The height of the actual printable area on the page, in points." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJob.html#pageHeight"/>
                <string name="pageWidth" object="[flash.printing.PrintJob]" text=".pageWidth" tiptext="The width of the actual printable area on the page, in points." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJob.html#pageWidth"/>
                <string name="orientation" object="[flash.printing.PrintJob]" text=".orientation" tiptext="The image orientation for printing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJob.html#orientation"/>
            </folder>
        </folder>
        <folder name="PrintJobOptions" id="[flash.printing.PrintJobOptions]" sort="true" index="true" asAncestors="Object" tiptext="The PrintJobOptions class contains properties to use with the options parameter of the PrintJob.addPage() method." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJobOptions.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class PrintJobOptions" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJobOptions.html">
                <string name="PrintJobOptions" object="[flash.printing.PrintJobOptions]" text="new PrintJobOptions(%[printAsBitmap:Boolean=false]%)" constructor="true" tiptext="Creates a new PrintJobOptions object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJobOptions.html#PrintJobOptions()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class PrintJobOptions" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJobOptions.html">
                <string name="printAsBitmap" object="[flash.printing.PrintJobOptions]" text=".printAsBitmap" tiptext="Specifies whether the content in the print job is printed as a bitmap or as a vector." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJobOptions.html#printAsBitmap"/>
            </folder>
        </folder>
        <folder name="PrintJobOrientation" id="[flash.printing.PrintJobOrientation]" sort="true" index="true" asAncestors="Object" tiptext="This class provides values that are used by the PrintJob.orientation property for the image position of a printed page." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJobOrientation.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class PrintJobOrientation" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJobOrientation.html">
                <string name="LANDSCAPE" object="[flash.printing.PrintJobOrientation]" text="PrintJobOrientation.LANDSCAPE" constant="true" tiptext="The landscape (horizontal) image orientation for printing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJobOrientation.html#LANDSCAPE"/>
                <string name="PORTRAIT" object="[flash.printing.PrintJobOrientation]" text="PrintJobOrientation.PORTRAIT" constant="true" tiptext="The portrait (vertical) image orientation for printing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/printing/PrintJobOrientation.html#PORTRAIT"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.profiler" id="flash.profiler" sort="true" tiptext="Classes for package flash.profiler" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/profiler/package-detail.html">
        <folder name="Methods" id="Methods" tiptext="Methods for package flash.profiler" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/profiler/package-detail.html">
            <string name="showRedrawRegions" text="showRedrawRegions(%on:Boolean[,color:uint=0xFF0000]%):void" tiptext="Shows or hides redraw regions." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/profiler/package.html#showRedrawRegions()"/>
        </folder>
    </folder>
        <folder name="flash.system" id="flash.system" sort="true" tiptext="Classes for package flash.system" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/package-detail.html">
        <folder name="ApplicationDomain" id="[flash.system.ApplicationDomain]" sort="true" index="true" asAncestors="Object" tiptext="The ApplicationDomain class is a container for discrete groups of class definitions." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/ApplicationDomain.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ApplicationDomain" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/ApplicationDomain.html">
                <string name="ApplicationDomain" object="[flash.system.ApplicationDomain]" text="new ApplicationDomain(%[parentDomain:flash.system:ApplicationDomain=null]%)" constructor="true" tiptext="Creates a new application domain." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/ApplicationDomain.html#ApplicationDomain()"/>
                <string name="getDefinition" object="[flash.system.ApplicationDomain]" text=".getDefinition(%name:String%):Object" tiptext="Gets a public definition from the specified application domain." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/ApplicationDomain.html#getDefinition()"/>
                <string name="hasDefinition" object="[flash.system.ApplicationDomain]" text=".hasDefinition(%name:String%):Boolean" tiptext="Checks to see if a public definition exists within the specified application domain." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/ApplicationDomain.html#hasDefinition()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ApplicationDomain" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/ApplicationDomain.html">
                <string name="currentDomain" object="[flash.system.ApplicationDomain]" text=".currentDomain" tiptext="Gets the current application domain in which your code is executing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/ApplicationDomain.html#currentDomain"/>
                <string name="parentDomain" object="[flash.system.ApplicationDomain]" text=".parentDomain" tiptext="Gets the parent domain of this application domain." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/ApplicationDomain.html#parentDomain"/>
            </folder>
        </folder>
        <folder name="Capabilities" id="[flash.system.Capabilities]" sort="true" index="true" asAncestors="Object" tiptext="The Capabilities class provides properties that describe the system and player that are hosting a SWF file." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class Capabilities" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html">
                <string name="hasEmbeddedVideo" object="[flash.system.Capabilities]" text=".hasEmbeddedVideo" tiptext="Specifies whether the player is running on a system that supports (true) or does not support (false) embedded video." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasEmbeddedVideo"/>
                <string name="hasAudio" object="[flash.system.Capabilities]" text=".hasAudio" tiptext="Specifies whether the player is running on a system that has audio capabilities." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasAudio"/>
                <string name="avHardwareDisable" object="[flash.system.Capabilities]" text=".avHardwareDisable" tiptext="Specifies whether access to the user&apos;s camera and microphone has been administratively prohibited (true) or allowed (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#avHardwareDisable"/>
                <string name="hasAccessibility" object="[flash.system.Capabilities]" text=".hasAccessibility" tiptext="Specifies whether the player is running in an environment that supports (true) or does not support (false) communication with accessibility aids." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasAccessibility"/>
                <string name="hasAudioEncoder" object="[flash.system.Capabilities]" text=".hasAudioEncoder" tiptext="Specifies whether the player can (true) or cannot (false) encode an audio stream, such as that coming from a microphone." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasAudioEncoder"/>
                <string name="hasMP3" object="[flash.system.Capabilities]" text=".hasMP3" tiptext="Specifies whether the player is running on a system that does (true) or does not (false) have an MP3 decoder." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasMP3"/>
                <string name="hasPrinting" object="[flash.system.Capabilities]" text=".hasPrinting" tiptext="Specifies whether the player is running on a system that does (true) or does not (false) support printing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasPrinting"/>
                <string name="hasScreenBroadcast" object="[flash.system.Capabilities]" text=".hasScreenBroadcast" tiptext="Specifies whether the player does (true) or does not (false) support the development of screen broadcast applications to be run through Flash Media Server." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasScreenBroadcast"/>
                <string name="hasScreenPlayback" object="[flash.system.Capabilities]" text=".hasScreenPlayback" tiptext="Specifies whether the player does (true) or does not (false) support the playback of screen broadcast applications that are being run through Flash Media Server." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasScreenPlayback"/>
                <string name="hasStreamingAudio" object="[flash.system.Capabilities]" text=".hasStreamingAudio" tiptext="Specifies whether the player can (true) or cannot (false) play streaming audio." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasStreamingAudio"/>
                <string name="hasStreamingVideo" object="[flash.system.Capabilities]" text=".hasStreamingVideo" tiptext="Specifies whether the player can (true) or cannot (false) play streaming video." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasStreamingVideo"/>
                <string name="hasVideoEncoder" object="[flash.system.Capabilities]" text=".hasVideoEncoder" tiptext="Specifies whether the player can (true) or cannot (false) encode a video stream, such as that coming from a web camera." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasVideoEncoder"/>
                <string name="isDebugger" object="[flash.system.Capabilities]" text=".isDebugger" tiptext="Specifies whether the player is a special debugging version (true), or an officially released version (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#isDebugger"/>
                <string name="localFileReadDisable" object="[flash.system.Capabilities]" text=".localFileReadDisable" tiptext="Specifies whether read access to the user&apos;s hard disk has been administratively prohibited (true) or allowed (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#localFileReadDisable"/>
                <string name="language" object="[flash.system.Capabilities]" text=".language" tiptext="Specifies the language code of the system on which the player is running." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#language"/>
                <string name="manufacturer" object="[flash.system.Capabilities]" text=".manufacturer" tiptext="Specifies the manufacturer of Flash Player, in the format &quot;Adobe &lt;em&gt;OSName&lt;/code&gt;&quot;." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#manufacturer"/>
                <string name="os" object="[flash.system.Capabilities]" text=".os" tiptext="Specifies the current operating system." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#os"/>
                <string name="playerType" object="[flash.system.Capabilities]" text=".playerType" tiptext="Specifies the type of player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#playerType"/>
                <string name="serverString" object="[flash.system.Capabilities]" text=".serverString" tiptext="A URL-encoded string that specifies values for each Capabilities property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#serverString"/>
                <string name="version" object="[flash.system.Capabilities]" text=".version" tiptext="Specifies the Flash Player platform and version information." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#version"/>
                <string name="screenColor" object="[flash.system.Capabilities]" text=".screenColor" tiptext="Specifies the screen color." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#screenColor"/>
                <string name="pixelAspectRatio" object="[flash.system.Capabilities]" text=".pixelAspectRatio" tiptext="Specifies the pixel aspect ratio of the screen." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#pixelAspectRatio"/>
                <string name="screenDPI" object="[flash.system.Capabilities]" text=".screenDPI" tiptext="Specifies the dots-per-inch (dpi) resolution of the screen, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#screenDPI"/>
                <string name="screenResolutionX" object="[flash.system.Capabilities]" text=".screenResolutionX" tiptext="Specifies the maximum horizontal resolution of the screen." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#screenResolutionX"/>
                <string name="screenResolutionY" object="[flash.system.Capabilities]" text=".screenResolutionY" tiptext="Specifies the maximum vertical resolution of the screen." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#screenResolutionY"/>
                <string name="hasIME" object="[flash.system.Capabilities]" text=".hasIME" tiptext="Specifies whether the player is running on a system that does (true) or does not (false) have an input method editor (IME) installed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasIME"/>
                <string name="hasTLS" object="[flash.system.Capabilities]" text=".hasTLS" tiptext="Specifies whether the player is on a system that supports native SSL sockets through NetConnection (true) or does not (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Capabilities.html#hasTLS"/>
            </folder>
        </folder>
        <folder name="IME" id="[flash.system.IME]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The IME class lets you directly manipulate the operating system&apos;s input method editor (IME) in the Flash Player application that is running on a client computer." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IME.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IME" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IME.html">
                <string name="setCompositionString" object="[flash.system.IME]" text="IME.setCompositionString(%composition:String%):void" static="true" tiptext="Sets the IME composition string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IME.html#setCompositionString()"/>
                <string name="doConversion" object="[flash.system.IME]" text="IME.doConversion(%%):void" static="true" tiptext="Instructs the IME to select the first candidate for the current composition string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IME.html#doConversion()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class IME" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IME.html">
                <string name="enabled" object="[flash.system.IME]" text=".enabled" tiptext="Indicates whether the system IME is enabled (true) or disabled (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IME.html#enabled"/>
                <string name="conversionMode" object="[flash.system.IME]" text=".conversionMode" tiptext="The conversion mode of the current IME." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IME.html#conversionMode"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class IME" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IME.html">
                <string name="imeComposition" object="[flash.system.IME]" text=".addEventListener(%type:String=IMEEvent.IME_COMPOSITION{IMEEvent.IME_COMPOSITION},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a user has completed an input method editor (IME) composition and the reading string is available." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IME.html#event:imeComposition"/>
            </folder>
        </folder>
        <folder name="IMEConversionMode" id="[flash.system.IMEConversionMode]" sort="true" index="true" asAncestors="Object" tiptext="This class contains constants for use with the IME.conversionMode property." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IMEConversionMode.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class IMEConversionMode" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IMEConversionMode.html">
                <string name="ALPHANUMERIC_FULL" object="[flash.system.IMEConversionMode]" text="IMEConversionMode.ALPHANUMERIC_FULL" constant="true" tiptext="The string &quot;ALPHANUMERIC_FULL&quot;, for use with the IME.conversionMode property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IMEConversionMode.html#ALPHANUMERIC_FULL"/>
                <string name="ALPHANUMERIC_HALF" object="[flash.system.IMEConversionMode]" text="IMEConversionMode.ALPHANUMERIC_HALF" constant="true" tiptext="The string &quot;ALPHANUMERIC_HALF&quot;, for use with the IME.conversionMode property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IMEConversionMode.html#ALPHANUMERIC_HALF"/>
                <string name="CHINESE" object="[flash.system.IMEConversionMode]" text="IMEConversionMode.CHINESE" constant="true" tiptext="The string &quot;CHINESE&quot;, for use with the IME.conversionMode property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IMEConversionMode.html#CHINESE"/>
                <string name="JAPANESE_HIRAGANA" object="[flash.system.IMEConversionMode]" text="IMEConversionMode.JAPANESE_HIRAGANA" constant="true" tiptext="The string &quot;JAPANESE_HIRAGANA&quot;, for use with the IME.conversionMode property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IMEConversionMode.html#JAPANESE_HIRAGANA"/>
                <string name="JAPANESE_KATAKANA_FULL" object="[flash.system.IMEConversionMode]" text="IMEConversionMode.JAPANESE_KATAKANA_FULL" constant="true" tiptext="The string &quot;JAPANESE_KATAKANA_FULL&quot;, for use with the IME.conversionMode property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IMEConversionMode.html#JAPANESE_KATAKANA_FULL"/>
                <string name="JAPANESE_KATAKANA_HALF" object="[flash.system.IMEConversionMode]" text="IMEConversionMode.JAPANESE_KATAKANA_HALF" constant="true" tiptext="The string &quot;JAPANESE_KATAKANA_HALF&quot;, for use with the IME.conversionMode property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IMEConversionMode.html#JAPANESE_KATAKANA_HALF"/>
                <string name="KOREAN" object="[flash.system.IMEConversionMode]" text="IMEConversionMode.KOREAN" constant="true" tiptext="The string &quot;KOREAN&quot;, for use with the IME.conversionMode property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IMEConversionMode.html#KOREAN"/>
                <string name="UNKNOWN" object="[flash.system.IMEConversionMode]" text="IMEConversionMode.UNKNOWN" constant="true" tiptext="The string &quot;UNKNOWN&quot;, which can be returned by a call to the IME.conversionMode property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/IMEConversionMode.html#UNKNOWN"/>
            </folder>
        </folder>
        <folder name="LoaderContext" id="[flash.system.LoaderContext]" sort="true" index="true" asAncestors="Object" tiptext="The LoaderContext class provides options for loading SWF files and other media by using the Loader class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/LoaderContext.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class LoaderContext" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/LoaderContext.html">
                <string name="LoaderContext" object="[flash.system.LoaderContext]" text="new LoaderContext(%[checkPolicyFile:Boolean=false,applicationDomain:flash.system:ApplicationDomain=null,securityDomain:flash.system:SecurityDomain=null]%)" constructor="true" tiptext="Creates a new LoaderContext object, with the specified settings." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/LoaderContext.html#LoaderContext()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class LoaderContext" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/LoaderContext.html">
                <string name="checkPolicyFile" object="[flash.system.LoaderContext]" text=".checkPolicyFile" tiptext="Specifies whether Flash Player should attempt to download a cross-domain policy file from the loaded object&apos;s server before beginning to load the object itself." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/LoaderContext.html#checkPolicyFile"/>
                <string name="applicationDomain" object="[flash.system.LoaderContext]" text=".applicationDomain" tiptext="Specifies the application domain to use for the Loader.load() or Loader.loadBytes() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/LoaderContext.html#applicationDomain"/>
                <string name="securityDomain" object="[flash.system.LoaderContext]" text=".securityDomain" tiptext="Specifies the security domain to use for a Loader.load() operation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/LoaderContext.html#securityDomain"/>
            </folder>
        </folder>
        <folder name="Methods" id="Methods" tiptext="Methods for package flash.system" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/package-detail.html">
            <string name="fscommand" text="fscommand(%command:String,args:String%):void" tiptext="Lets the SWF file communicate with either Flash Player or the program hosting Flash Player, such as a web browser." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/package.html#fscommand()"/>
        </folder>
        <folder name="Security" id="[flash.system.Security]" sort="true" index="true" asAncestors="Object" tiptext="The Security class lets you specify how SWF files in different domains can communicate with each other." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Security" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html">
                <string name="allowDomain" object="[flash.system.Security]" text="Security.allowDomain(%domains:restParam%):void" static="true" tiptext="Lets SWF files and HTML files access objects and variables in the calling SWF file." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html#allowDomain()"/>
                <string name="allowInsecureDomain" object="[flash.system.Security]" text="Security.allowInsecureDomain(%domains:restParam%):void" static="true" tiptext="Lets SWF and HTML files hosted using the HTTPS protocol, access objects and variables in the calling SWF file." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html#allowInsecureDomain()"/>
                <string name="loadPolicyFile" object="[flash.system.Security]" text="Security.loadPolicyFile(%url:String%):void" static="true" tiptext="Loads a cross-domain policy file from a location specified by the url parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html#loadPolicyFile()"/>
                <string name="showSettings" object="[flash.system.Security]" text="Security.showSettings(%[panel:String=default]%):void" static="true" tiptext="Displays the Security Settings panel in Flash Player." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html#showSettings()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Security" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html">
                <string name="REMOTE" object="[flash.system.Security]" text="Security.REMOTE" constant="true" tiptext="The SWF file is from an Internet URL and operates under domain-based sandbox rules." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html#REMOTE"/>
                <string name="LOCAL_WITH_FILE" object="[flash.system.Security]" text="Security.LOCAL_WITH_FILE" constant="true" tiptext="The SWF file is a local file, has not been trusted by the user, and was not published with a networking designation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html#LOCAL_WITH_FILE"/>
                <string name="LOCAL_WITH_NETWORK" object="[flash.system.Security]" text="Security.LOCAL_WITH_NETWORK" constant="true" tiptext="The SWF file is a local file, has not been trusted by the user, and was published with a networking designation." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html#LOCAL_WITH_NETWORK"/>
                <string name="LOCAL_TRUSTED" object="[flash.system.Security]" text="Security.LOCAL_TRUSTED" constant="true" tiptext="The SWF file is a local file and has been trusted by the user, using either the Settings Manager or a FlashPlayerTrust configuration file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html#LOCAL_TRUSTED"/>
                <string name="exactSettings" object="[flash.system.Security]" text=".exactSettings" tiptext="Determines how Flash Player chooses the domain to use for certain Flash Player settings, including settings for camera and microphone permissions, storage quotas, and storage of persistent shared objects." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html#exactSettings"/>
                <string name="sandboxType" object="[flash.system.Security]" text=".sandboxType" tiptext="Indicates the type of security sandbox in which the calling SWF file is operating." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/Security.html#sandboxType"/>
            </folder>
        </folder>
        <folder name="SecurityDomain" id="[flash.system.SecurityDomain]" sort="true" index="true" asAncestors="Object" tiptext="The SecurityDomain class represents the current security &quot;sandbox,&quot; also known as a security domain." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/SecurityDomain.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class SecurityDomain" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/SecurityDomain.html">
                <string name="currentDomain" object="[flash.system.SecurityDomain]" text=".currentDomain" tiptext="Gets the current security domain." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/SecurityDomain.html#currentDomain"/>
            </folder>
        </folder>
        <folder name="SecurityPanel" id="[flash.system.SecurityPanel]" sort="true" index="true" asAncestors="Object" tiptext="The SecurityPanel class provides values for specifying which Security Settings panel you want to display." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/SecurityPanel.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class SecurityPanel" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/SecurityPanel.html">
                <string name="DEFAULT" object="[flash.system.SecurityPanel]" text="SecurityPanel.DEFAULT" constant="true" tiptext="When passed to Security.showSettings(), displays the panel that was open the last time the user closed the Flash Player Settings." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/SecurityPanel.html#DEFAULT"/>
                <string name="PRIVACY" object="[flash.system.SecurityPanel]" text="SecurityPanel.PRIVACY" constant="true" tiptext="When passed to Security.showSettings(), displays the Privacy Settings panel in Flash Player Settings." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/SecurityPanel.html#PRIVACY"/>
                <string name="LOCAL_STORAGE" object="[flash.system.SecurityPanel]" text="SecurityPanel.LOCAL_STORAGE" constant="true" tiptext="When passed to Security.showSettings(), displays the Local Storage Settings panel in Flash Player Settings." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/SecurityPanel.html#LOCAL_STORAGE"/>
                <string name="MICROPHONE" object="[flash.system.SecurityPanel]" text="SecurityPanel.MICROPHONE" constant="true" tiptext="When passed to Security.showSettings(), displays the Microphone panel in Flash Player Settings." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/SecurityPanel.html#MICROPHONE"/>
                <string name="CAMERA" object="[flash.system.SecurityPanel]" text="SecurityPanel.CAMERA" constant="true" tiptext="When passed to Security.showSettings(), displays the Camera panel in Flash Player Settings." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/SecurityPanel.html#CAMERA"/>
                <string name="SETTINGS_MANAGER" object="[flash.system.SecurityPanel]" text="SecurityPanel.SETTINGS_MANAGER" constant="true" tiptext="When passed to Security.showSettings(), displays the Settings Manager (in a separate browser window)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/SecurityPanel.html#SETTINGS_MANAGER"/>
            </folder>
        </folder>
        <folder name="System" id="[flash.system.System]" sort="true" index="true" asAncestors="Object" tiptext="The System class contains properties related to certain operations that take place on the user&apos;s computer, such as operations with shared objects, local settings for cameras and microphones, and use of the Clipboard." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/System.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class System" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/System.html">
                <string name="setClipboard" object="[flash.system.System]" text="System.setClipboard(%string:String%):void" static="true" tiptext="Replaces the contents of the Clipboard with a specified text string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/System.html#setClipboard()"/>
                <string name="pause" object="[flash.system.System]" text="System.pause(%%):void" static="true" tiptext="Pauses the Flash player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/System.html#pause()"/>
                <string name="resume" object="[flash.system.System]" text="System.resume(%%):void" static="true" tiptext="Resumes the Flash player after using System.pause()." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/System.html#resume()"/>
                <string name="exit" object="[flash.system.System]" text="System.exit(%code:uint%):void" static="true" tiptext="Closes the Flash player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/System.html#exit()"/>
                <string name="gc" object="[flash.system.System]" text="System.gc(%%):void" static="true" tiptext="Forces the garbage collection process." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/System.html#gc()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class System" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/System.html">
                <string name="ime" object="[flash.system.System]" text=".ime" tiptext="The currently installed system IME." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/System.html#ime"/>
                <string name="totalMemory" object="[flash.system.System]" text=".totalMemory" tiptext="The amount of memory (in bytes) currently in use by Adobe&amp;#xAE; Flash&amp;#xAE; Player." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/System.html#totalMemory"/>
                <string name="useCodePage" object="[flash.system.System]" text=".useCodePage" tiptext="A Boolean value that tells Flash Player which code page to use to interpret external text files." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/system/System.html#useCodePage"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.text" id="flash.text" sort="true" tiptext="Classes for package flash.text" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/package-detail.html">
        <folder name="AntiAliasType" id="[flash.text.AntiAliasType]" sort="true" index="true" asAncestors="Object" tiptext="The AntiAliasType class provides values for anti-aliasing in the flash.text.TextField class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/AntiAliasType.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class AntiAliasType" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/AntiAliasType.html">
                <string name="NORMAL" object="[flash.text.AntiAliasType]" text="AntiAliasType.NORMAL" constant="true" tiptext="Sets anti-aliasing to the anti-aliasing that is used in Flash Player 7 and earlier." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/AntiAliasType.html#NORMAL"/>
                <string name="ADVANCED" object="[flash.text.AntiAliasType]" text="AntiAliasType.ADVANCED" constant="true" tiptext="Sets anti-aliasing to advanced anti-aliasing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/AntiAliasType.html#ADVANCED"/>
            </folder>
        </folder>
        <folder name="CSMSettings" id="[flash.text.CSMSettings]" sort="true" index="true" asAncestors="Object" tiptext="The CSMSettings class contains properties for use with the TextRenderer.setAdvancedAntiAliasingTable() method to provide continuous stroke modulation (CSM)." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/CSMSettings.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class CSMSettings" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/CSMSettings.html">
                <string name="CSMSettings" object="[flash.text.CSMSettings]" text="new CSMSettings(%fontSize:Number,insideCutoff:Number,outsideCutoff:Number%)" constructor="true" tiptext="Creates a new CSMSettings object which stores stroke values for custom anti-aliasing settings." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/CSMSettings.html#CSMSettings()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class CSMSettings" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/CSMSettings.html">
                <string name="fontSize" object="[flash.text.CSMSettings]" text=".fontSize" tiptext="The size, in pixels, for which the settings apply." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/CSMSettings.html#fontSize"/>
                <string name="insideCutoff" object="[flash.text.CSMSettings]" text=".insideCutoff" tiptext="The inside cutoff value, above which densities are set to a maximum density value (such as 255)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/CSMSettings.html#insideCutoff"/>
                <string name="outsideCutoff" object="[flash.text.CSMSettings]" text=".outsideCutoff" tiptext="The outside cutoff value, below which densities are set to zero." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/CSMSettings.html#outsideCutoff"/>
            </folder>
        </folder>
        <folder name="Font" id="[flash.text.Font]" sort="true" index="true" asAncestors="Object" tiptext="The Font class is used to manage embedded fonts in SWF files." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/Font.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Font" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/Font.html">
                <string name="hasGlyphs" object="[flash.text.Font]" text=".hasGlyphs(%str:String%):Boolean" tiptext="Specifies whether a provided string can be displayed using the currently assigned font." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/Font.html#hasGlyphs()"/>
                <string name="enumerateFonts" object="[flash.text.Font]" text="Font.enumerateFonts(%[enumerateDeviceFonts:Boolean=false]%):Array" static="true" tiptext="Specifies whether to provide a list of the currently available embedded fonts." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/Font.html#enumerateFonts()"/>
                <string name="registerFont" object="[flash.text.Font]" text="Font.registerFont(%font:Class%):void" static="true" tiptext="Registers a font class in the global font list." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/Font.html#registerFont()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Font" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/Font.html">
                <string name="fontName" object="[flash.text.Font]" text=".fontName" tiptext="The name of an embedded font." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/Font.html#fontName"/>
                <string name="fontStyle" object="[flash.text.Font]" text=".fontStyle" tiptext="The style of the font." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/Font.html#fontStyle"/>
                <string name="fontType" object="[flash.text.Font]" text=".fontType" tiptext="The type of the font." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/Font.html#fontType"/>
            </folder>
        </folder>
        <folder name="FontStyle" id="[flash.text.FontStyle]" sort="true" index="true" asAncestors="Object" tiptext="The FontStyle class provides values for the TextRenderer class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/FontStyle.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class FontStyle" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/FontStyle.html">
                <string name="REGULAR" object="[flash.text.FontStyle]" text="FontStyle.REGULAR" constant="true" tiptext="Defines the plain style of a font for the fontStyle parameter in the setAdvancedAntiAliasingTable() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/FontStyle.html#REGULAR"/>
                <string name="BOLD" object="[flash.text.FontStyle]" text="FontStyle.BOLD" constant="true" tiptext="Defines the bold style of a font for the fontStyle parameter in the setAdvancedAntiAliasingTable() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/FontStyle.html#BOLD"/>
                <string name="ITALIC" object="[flash.text.FontStyle]" text="FontStyle.ITALIC" constant="true" tiptext="Defines the italic style of a font for the fontStyle parameter in the setAdvancedAntiAliasingTable() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/FontStyle.html#ITALIC"/>
                <string name="BOLD_ITALIC" object="[flash.text.FontStyle]" text="FontStyle.BOLD_ITALIC" constant="true" tiptext="Defines the combined bold and italic style of a font for the fontStyle parameter in the setAdvancedAntiAliasingTable() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/FontStyle.html#BOLD_ITALIC"/>
            </folder>
        </folder>
        <folder name="FontType" id="[flash.text.FontType]" sort="true" index="true" asAncestors="Object" tiptext="The FontType class contains the enumerated constants &quot;embedded&quot; and &quot;device&quot; for the fontType property of the Font class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/FontType.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class FontType" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/FontType.html">
                <string name="EMBEDDED" object="[flash.text.FontType]" text="FontType.EMBEDDED" constant="true" tiptext="Indicates that this is an embedded font." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/FontType.html#EMBEDDED"/>
                <string name="DEVICE" object="[flash.text.FontType]" text="FontType.DEVICE" constant="true" tiptext="Indicates that this is a device font." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/FontType.html#DEVICE"/>
            </folder>
        </folder>
        <folder name="GridFitType" id="[flash.text.GridFitType]" sort="true" index="true" asAncestors="Object" tiptext="The GridFitType class defines values for grid fitting in the TextField class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/GridFitType.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class GridFitType" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/GridFitType.html">
                <string name="NONE" object="[flash.text.GridFitType]" text="GridFitType.NONE" constant="true" tiptext="Doesn&apos;t set grid fitting." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/GridFitType.html#NONE"/>
                <string name="PIXEL" object="[flash.text.GridFitType]" text="GridFitType.PIXEL" constant="true" tiptext="Fits strong horizontal and vertical lines to the pixel grid." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/GridFitType.html#PIXEL"/>
                <string name="SUBPIXEL" object="[flash.text.GridFitType]" text="GridFitType.SUBPIXEL" constant="true" tiptext="Fits strong horizontal and vertical lines to the sub-pixel grid on LCD monitors." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/GridFitType.html#SUBPIXEL"/>
            </folder>
        </folder>
        <folder name="StaticText" id="[flash.text.StaticText]" sort="true" index="true" asAncestors="flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="This class represents StaticText objects on the display list." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StaticText.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class StaticText" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StaticText.html">
                <string name="text" object="[flash.text.StaticText]" text=".text" tiptext="Returns the current text of the static text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StaticText.html#text"/>
            </folder>
        </folder>
        <folder name="StyleSheet" id="[flash.text.StyleSheet]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The StyleSheet class lets you create a StyleSheet object that contains text formatting rules for font size, color, and other styles." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StyleSheet.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class StyleSheet" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StyleSheet.html">
                <string name="StyleSheet" object="[flash.text.StyleSheet]" text="new StyleSheet(%%)" constructor="true" tiptext="Creates a new StyleSheet object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StyleSheet.html#StyleSheet()"/>
                <string name="getStyle" object="[flash.text.StyleSheet]" text=".getStyle(%styleName:String%):Object" tiptext="Returns a copy of the style object associated with the style named styleName." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StyleSheet.html#getStyle()"/>
                <string name="setStyle" object="[flash.text.StyleSheet]" text=".setStyle(%styleName:String,styleObject:Object%):void" tiptext="Adds a new style with the specified name to the style sheet object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StyleSheet.html#setStyle()"/>
                <string name="clear" object="[flash.text.StyleSheet]" text=".clear(%%):void" tiptext="Removes all styles from the style sheet object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StyleSheet.html#clear()"/>
                <string name="transform" object="[flash.text.StyleSheet]" text=".transform(%formatObject:Object%):flash.text:TextFormat" tiptext="Extends the CSS parsing capability." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StyleSheet.html#transform()"/>
                <string name="parseCSS" object="[flash.text.StyleSheet]" text=".parseCSS(%CSSText:String%):void" tiptext="Parses the CSS in cssText and loads the StyleSheet with it." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StyleSheet.html#parseCSS()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class StyleSheet" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StyleSheet.html">
                <string name="styleNames" object="[flash.text.StyleSheet]" text=".styleNames" tiptext="An array that contains the names (as strings) of all of the styles registered in this style sheet." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/StyleSheet.html#styleNames"/>
            </folder>
        </folder>
        <folder name="TextColorType" id="[flash.text.TextColorType]" sort="true" index="true" asAncestors="Object" tiptext="The TextColorType class provides color values for the flash.text.TextRenderer class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextColorType.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class TextColorType" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextColorType.html">
                <string name="DARK_COLOR" object="[flash.text.TextColorType]" text="TextColorType.DARK_COLOR" constant="true" tiptext="Used in the colorType parameter in the setAdvancedAntiAliasingTable() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextColorType.html#DARK_COLOR"/>
                <string name="LIGHT_COLOR" object="[flash.text.TextColorType]" text="TextColorType.LIGHT_COLOR" constant="true" tiptext="Used in the colorType parameter in the setAdvancedAntiAliasingTable() method." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextColorType.html#LIGHT_COLOR"/>
            </folder>
        </folder>
        <folder name="TextDisplayMode" id="[flash.text.TextDisplayMode]" sort="true" index="true" asAncestors="Object" tiptext="The TextDisplayMode class contains values that control the subpixel anti-aliasing of the advanced anti-aliasing system." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextDisplayMode.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class TextDisplayMode" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextDisplayMode.html">
                <string name="LCD" object="[flash.text.TextDisplayMode]" text="TextDisplayMode.LCD" constant="true" tiptext="Forces Flash Player to use LCD subpixel anti-aliasing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextDisplayMode.html#LCD"/>
                <string name="CRT" object="[flash.text.TextDisplayMode]" text="TextDisplayMode.CRT" constant="true" tiptext="Forces Flash Player to display grayscale anti-aliasing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextDisplayMode.html#CRT"/>
                <string name="DEFAULT" object="[flash.text.TextDisplayMode]" text="TextDisplayMode.DEFAULT" constant="true" tiptext="Allows Flash Player to choose LCD or CRT mode." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextDisplayMode.html#DEFAULT"/>
            </folder>
        </folder>
        <folder name="TextField" id="[flash.text.TextField]" sort="true" index="true" asAncestors="flash.display:InteractiveObject,flash.display:DisplayObject,flash.events:EventDispatcher,Object" tiptext="The TextField class is used to create display objects for text display and input." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TextField" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html">
                <string name="TextField" object="[flash.text.TextField]" text="new TextField(%%)" constructor="true" tiptext="Creates a new TextField instance." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#TextField()"/>
                <string name="appendText" object="[flash.text.TextField]" text=".appendText(%newText:String%):void" tiptext="Appends text to the end of the existing text of the TextField." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#appendText()"/>
                <string name="getCharBoundaries" object="[flash.text.TextField]" text=".getCharBoundaries(%charIndex:int%):flash.geom:Rectangle" tiptext="Returns a rectangle that is the bounding box of the character." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#getCharBoundaries()"/>
                <string name="getCharIndexAtPoint" object="[flash.text.TextField]" text=".getCharIndexAtPoint(%x:Number,y:Number%):int" tiptext="Returns the zero-based index value of the character." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#getCharIndexAtPoint()"/>
                <string name="getFirstCharInParagraph" object="[flash.text.TextField]" text=".getFirstCharInParagraph(%charIndex:int%):int" tiptext="The zero-based index value of the character." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#getFirstCharInParagraph()"/>
                <string name="getLineIndexAtPoint" object="[flash.text.TextField]" text=".getLineIndexAtPoint(%x:Number,y:Number%):int" tiptext="The zero-based index value of the line at a specified point." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#getLineIndexAtPoint()"/>
                <string name="getLineIndexOfChar" object="[flash.text.TextField]" text=".getLineIndexOfChar(%charIndex:int%):int" tiptext="The zero-based index value of the line containing the character that the the charIndex parameter spcifies." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#getLineIndexOfChar()"/>
                <string name="getLineLength" object="[flash.text.TextField]" text=".getLineLength(%lineIndex:int%):int" tiptext="Returns the number of characters in a specific text line." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#getLineLength()"/>
                <string name="getLineMetrics" object="[flash.text.TextField]" text=".getLineMetrics(%lineIndex:int%):flash.text:TextLineMetrics" tiptext="Returns metrics information about a given text line." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#getLineMetrics()"/>
                <string name="getLineOffset" object="[flash.text.TextField]" text=".getLineOffset(%lineIndex:int%):int" tiptext="The zero-based index value of the first character in the line." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#getLineOffset()"/>
                <string name="getLineText" object="[flash.text.TextField]" text=".getLineText(%lineIndex:int%):String" tiptext="The text string contained in the specified line." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#getLineText()"/>
                <string name="getParagraphLength" object="[flash.text.TextField]" text=".getParagraphLength(%charIndex:int%):int" tiptext="The zero-based index value of the character." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#getParagraphLength()"/>
                <string name="getTextFormat" object="[flash.text.TextField]" text=".getTextFormat(%[beginIndex:int=-1,endIndex:int=-1]%):flash.text:TextFormat" tiptext="Returns a TextFormat object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#getTextFormat()"/>
                <string name="replaceSelectedText" object="[flash.text.TextField]" text=".replaceSelectedText(%value:String%):void" tiptext="Replaces the current selection with the contents of the value parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#replaceSelectedText()"/>
                <string name="replaceText" object="[flash.text.TextField]" text=".replaceText(%beginIndex:int,endIndex:int,newText:String%):void" tiptext="Replaces a range of characters." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#replaceText()"/>
                <string name="setSelection" object="[flash.text.TextField]" text=".setSelection(%beginIndex:int,endIndex:int%):void" tiptext="Sets a new text selection." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#setSelection()"/>
                <string name="setTextFormat" object="[flash.text.TextField]" text=".setTextFormat(%format:flash.text:TextFormat[,beginIndex:int=-1,endIndex:int=-1]%):void" tiptext="Applies text formatting." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#setTextFormat()"/>
                <string name="getImageReference" object="[flash.text.TextField]" text=".getImageReference(%id:String%):flash.display:DisplayObject" tiptext="Returns a DisplayObject reference for the given id, for an image or SWF file that has been added to an HTML-formatted text field by using an &amp;lt;img&amp;gt; tag." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#getImageReference()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TextField" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html">
                <string name="alwaysShowSelection" object="[flash.text.TextField]" text=".alwaysShowSelection" tiptext="When set to true and the text field is not in focus, Flash Player highlights the selection in the text field in gray." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#alwaysShowSelection"/>
                <string name="antiAliasType" object="[flash.text.TextField]" text=".antiAliasType" tiptext="The type of anti-aliasing used for this text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#antiAliasType"/>
                <string name="autoSize" object="[flash.text.TextField]" text=".autoSize" tiptext="Controls automatic sizing and alignment of text fields." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#autoSize"/>
                <string name="background" object="[flash.text.TextField]" text=".background" tiptext="Specifies whether the text field has a background fill." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#background"/>
                <string name="backgroundColor" object="[flash.text.TextField]" text=".backgroundColor" tiptext="The color of the text field background." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#backgroundColor"/>
                <string name="border" object="[flash.text.TextField]" text=".border" tiptext="Specifies whether the text field has a border." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#border"/>
                <string name="borderColor" object="[flash.text.TextField]" text=".borderColor" tiptext="The color of the text field border." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#borderColor"/>
                <string name="bottomScrollV" object="[flash.text.TextField]" text=".bottomScrollV" tiptext="An integer (1-based index) that indicates the bottommost line that is currently visible in the specified text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#bottomScrollV"/>
                <string name="caretIndex" object="[flash.text.TextField]" text=".caretIndex" tiptext="The index of the insertion point (caret) position." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#caretIndex"/>
                <string name="condenseWhite" object="[flash.text.TextField]" text=".condenseWhite" tiptext="A Boolean value that specifies whether extra white space (spaces, line breaks, and so on) in a text field with HTML text should be removed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#condenseWhite"/>
                <string name="defaultTextFormat" object="[flash.text.TextField]" text=".defaultTextFormat" tiptext="Specifies the format applied to newly inserted text, such as text inserted with the replaceSelectedText() method or text entered by a user." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#defaultTextFormat"/>
                <string name="embedFonts" object="[flash.text.TextField]" text=".embedFonts" tiptext="Specifies whether to render by using embedded font outlines." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#embedFonts"/>
                <string name="gridFitType" object="[flash.text.TextField]" text=".gridFitType" tiptext="The type of grid fitting used for this text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#gridFitType"/>
                <string name="htmlText" object="[flash.text.TextField]" text=".htmlText" tiptext="Contains the HTML representation of the text field&apos;s contents." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#htmlText"/>
                <string name="length" object="[flash.text.TextField]" text=".length" tiptext="The number of characters in a text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#length"/>
                <string name="maxChars" object="[flash.text.TextField]" text=".maxChars" tiptext="The maximum number of characters that the text field can contain, as entered by a user." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#maxChars"/>
                <string name="maxScrollH" object="[flash.text.TextField]" text=".maxScrollH" tiptext="The maximum value of scrollH." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#maxScrollH"/>
                <string name="maxScrollV" object="[flash.text.TextField]" text=".maxScrollV" tiptext="The maximum value of scrollV." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#maxScrollV"/>
                <string name="mouseWheelEnabled" object="[flash.text.TextField]" text=".mouseWheelEnabled" tiptext="A Boolean value that indicates whether Flash Player should automatically scroll multiline text fields when the user clicks a text field and rolls the mouse wheel." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#mouseWheelEnabled"/>
                <string name="multiline" object="[flash.text.TextField]" text=".multiline" tiptext="Indicates whether the text field is a multiline text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#multiline"/>
                <string name="numLines" object="[flash.text.TextField]" text=".numLines" tiptext="Defines the number of text lines in a multiline text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#numLines"/>
                <string name="displayAsPassword" object="[flash.text.TextField]" text=".displayAsPassword" tiptext="Specifies whether the text field is a password text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#displayAsPassword"/>
                <string name="restrict" object="[flash.text.TextField]" text=".restrict" tiptext="Indicates the set of characters that a user can enter into the text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#restrict"/>
                <string name="scrollH" object="[flash.text.TextField]" text=".scrollH" tiptext="The current horizontal scrolling position." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#scrollH"/>
                <string name="scrollV" object="[flash.text.TextField]" text=".scrollV" tiptext="The vertical position of text in a text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#scrollV"/>
                <string name="selectable" object="[flash.text.TextField]" text=".selectable" tiptext="A Boolean value that indicates whether the text field is selectable." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#selectable"/>
                <string name="selectionBeginIndex" object="[flash.text.TextField]" text=".selectionBeginIndex" tiptext="The zero-based character index value of the first character in the current selection." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#selectionBeginIndex"/>
                <string name="selectionEndIndex" object="[flash.text.TextField]" text=".selectionEndIndex" tiptext="The zero-based character index value of the last character in the current selection." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#selectionEndIndex"/>
                <string name="sharpness" object="[flash.text.TextField]" text=".sharpness" tiptext="The sharpness of the glyph edges in this text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#sharpness"/>
                <string name="styleSheet" object="[flash.text.TextField]" text=".styleSheet" tiptext="Attaches a style sheet to the text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#styleSheet"/>
                <string name="text" object="[flash.text.TextField]" text=".text" tiptext="A string that is the current text in the text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#text"/>
                <string name="textColor" object="[flash.text.TextField]" text=".textColor" tiptext="The color of the text in a text field, in hexadecimal format." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#textColor"/>
                <string name="textHeight" object="[flash.text.TextField]" text=".textHeight" tiptext="The height of the text in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#textHeight"/>
                <string name="textWidth" object="[flash.text.TextField]" text=".textWidth" tiptext="The width of the text in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#textWidth"/>
                <string name="thickness" object="[flash.text.TextField]" text=".thickness" tiptext="The thickness of the glyph edges in this text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#thickness"/>
                <string name="type" object="[flash.text.TextField]" text=".type" tiptext="The type of the text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#type"/>
                <string name="wordWrap" object="[flash.text.TextField]" text=".wordWrap" tiptext="A Boolean value that indicates whether the text field has word wrap." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#wordWrap"/>
                <string name="useRichTextClipboard" object="[flash.text.TextField]" text=".useRichTextClipboard" tiptext="Specifies whether to copy and paste the text formatting along with the text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#useRichTextClipboard"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class TextField" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html">
                <string name="textInput" object="[flash.text.TextField]" text=".addEventListener(%type:String=TextEvent.TEXT_INPUT{TextEvent.TEXT_INPUT,Event.SCROLL,TextEvent.LINK,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Flash Player dispatches the textInput event when a user enters one or more characters of text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#event:textInput"/>
                <string name="scroll" object="[flash.text.TextField]" text=".addEventListener(%type:String=Event.SCROLL{TextEvent.TEXT_INPUT,Event.SCROLL,TextEvent.LINK,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched by a TextField object after the user scrolls." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#event:scroll"/>
                <string name="link" object="[flash.text.TextField]" text=".addEventListener(%type:String=TextEvent.LINK{TextEvent.TEXT_INPUT,Event.SCROLL,TextEvent.LINK,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a user clicks a hyperlink in an HTML-enabled text field, where the URL begins with &quot;event:&quot;." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#event:link"/>
                <string name="change" object="[flash.text.TextField]" text=".addEventListener(%type:String=Event.CHANGE{TextEvent.TEXT_INPUT,Event.SCROLL,TextEvent.LINK,Event.CHANGE},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched after a control&apos;s value is modified." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextField.html#event:change"/>
            </folder>
        </folder>
        <folder name="TextFieldAutoSize" id="[flash.text.TextFieldAutoSize]" sort="true" index="true" asAncestors="Object" tiptext="The TextFieldAutoSize class is an enumeration of constant values used in setting the autoSize property of the TextField class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFieldAutoSize.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class TextFieldAutoSize" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFieldAutoSize.html">
                <string name="NONE" object="[flash.text.TextFieldAutoSize]" text="TextFieldAutoSize.NONE" constant="true" tiptext="Specifies that no resizing is to occur." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFieldAutoSize.html#NONE"/>
                <string name="LEFT" object="[flash.text.TextFieldAutoSize]" text="TextFieldAutoSize.LEFT" constant="true" tiptext="Specifies that the text is to be treated as left-justified text, meaning that the left side of the text field remains fixed and any resizing of a single line is on the right side." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFieldAutoSize.html#LEFT"/>
                <string name="CENTER" object="[flash.text.TextFieldAutoSize]" text="TextFieldAutoSize.CENTER" constant="true" tiptext="Specifies that the text is to be treated as center-justified text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFieldAutoSize.html#CENTER"/>
                <string name="RIGHT" object="[flash.text.TextFieldAutoSize]" text="TextFieldAutoSize.RIGHT" constant="true" tiptext="Specifies that the text is to be treated as right-justified text, meaning that the right side of the text field remains fixed and any resizing of a single line is on the left side." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFieldAutoSize.html#RIGHT"/>
            </folder>
        </folder>
        <folder name="TextFieldType" id="[flash.text.TextFieldType]" sort="true" index="true" asAncestors="Object" tiptext="The TextFieldType class is an enumeration of constant values used in setting the type property of the TextField class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFieldType.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class TextFieldType" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFieldType.html">
                <string name="INPUT" object="[flash.text.TextFieldType]" text="TextFieldType.INPUT" constant="true" tiptext="Used to specify an input TextField." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFieldType.html#INPUT"/>
                <string name="DYNAMIC" object="[flash.text.TextFieldType]" text="TextFieldType.DYNAMIC" constant="true" tiptext="Used to specify a dynamic TextField." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFieldType.html#DYNAMIC"/>
            </folder>
        </folder>
        <folder name="TextFormat" id="[flash.text.TextFormat]" sort="true" index="true" asAncestors="Object" tiptext="The TextFormat class represents character formatting information." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TextFormat" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html">
                <string name="TextFormat" object="[flash.text.TextFormat]" text="new TextFormat(%[font:String=null,size:Object=null,color:Object=null,bold:Object=null,italic:Object=null,underline:Object=null,url:String=null,target:String=null,align:String=null,leftMargin:Object=null,rightMargin:Object=null,indent:Object=null,leading:Object=null]%)" constructor="true" tiptext="Creates a TextFormat object with the specified properties." version="9. " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#TextFormat()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TextFormat" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html">
                <string name="align" object="[flash.text.TextFormat]" text=".align" tiptext="Indicates the alignment of the paragraph." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#align"/>
                <string name="blockIndent" object="[flash.text.TextFormat]" text=".blockIndent" tiptext="Indicates the block indentation in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#blockIndent"/>
                <string name="bold" object="[flash.text.TextFormat]" text=".bold" tiptext="Specifies whether the text is boldface." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#bold"/>
                <string name="bullet" object="[flash.text.TextFormat]" text=".bullet" tiptext="Indicates that the text is part of a bulleted list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#bullet"/>
                <string name="color" object="[flash.text.TextFormat]" text=".color" tiptext="Indicates the color of the text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#color"/>
                <string name="font" object="[flash.text.TextFormat]" text=".font" tiptext="The name of the font for text in this text format, as a string." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#font"/>
                <string name="indent" object="[flash.text.TextFormat]" text=".indent" tiptext="Indicates the indentation from the left margin to the first character in the paragraph." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#indent"/>
                <string name="italic" object="[flash.text.TextFormat]" text=".italic" tiptext="Indicates whether text in this text format is italicized." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#italic"/>
                <string name="kerning" object="[flash.text.TextFormat]" text=".kerning" tiptext="A Boolean value that indicates whether kerning is enabled (true) or disabled (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#kerning"/>
                <string name="leading" object="[flash.text.TextFormat]" text=".leading" tiptext="An integer representing the amount of vertical space (called leading) between lines." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#leading"/>
                <string name="leftMargin" object="[flash.text.TextFormat]" text=".leftMargin" tiptext="The left margin of the paragraph, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#leftMargin"/>
                <string name="letterSpacing" object="[flash.text.TextFormat]" text=".letterSpacing" tiptext="A number representing the amount of space that is uniformly distributed between all characters." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#letterSpacing"/>
                <string name="rightMargin" object="[flash.text.TextFormat]" text=".rightMargin" tiptext="The right margin of the paragraph, in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#rightMargin"/>
                <string name="size" object="[flash.text.TextFormat]" text=".size" tiptext="The point size of text in this text format." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#size"/>
                <string name="tabStops" object="[flash.text.TextFormat]" text=".tabStops" tiptext="Specifies custom tab stops as an array of non-negative integers." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#tabStops"/>
                <string name="target" object="[flash.text.TextFormat]" text=".target" tiptext="Indicates the target window where the hyperlink is displayed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#target"/>
                <string name="underline" object="[flash.text.TextFormat]" text=".underline" tiptext="Indicates whether the text that uses this text format is underlined (true) or not (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#underline"/>
                <string name="url" object="[flash.text.TextFormat]" text=".url" tiptext="Indicates the target URL for the text in this text format." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormat.html#url"/>
            </folder>
        </folder>
        <folder name="TextFormatAlign" id="[flash.text.TextFormatAlign]" sort="true" index="true" asAncestors="Object" tiptext="The TextFormatAlign class provides values for text alignment in the TextFormat class." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormatAlign.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class TextFormatAlign" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormatAlign.html">
                <string name="LEFT" object="[flash.text.TextFormatAlign]" text="TextFormatAlign.LEFT" constant="true" tiptext="Constant; aligns text to the left within the text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormatAlign.html#LEFT"/>
                <string name="CENTER" object="[flash.text.TextFormatAlign]" text="TextFormatAlign.CENTER" constant="true" tiptext="Constant; centers the text in the text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormatAlign.html#CENTER"/>
                <string name="RIGHT" object="[flash.text.TextFormatAlign]" text="TextFormatAlign.RIGHT" constant="true" tiptext="Constant; aligns text to the right within the text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormatAlign.html#RIGHT"/>
                <string name="JUSTIFY" object="[flash.text.TextFormatAlign]" text="TextFormatAlign.JUSTIFY" constant="true" tiptext="Constant; justifies text within the text field." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextFormatAlign.html#JUSTIFY"/>
            </folder>
        </folder>
        <folder name="TextLineMetrics" id="[flash.text.TextLineMetrics]" sort="true" index="true" asAncestors="Object" tiptext="The TextLineMetrics class contains information about the text position and measurements of a line of text within a text field." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextLineMetrics.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TextLineMetrics" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextLineMetrics.html">
                <string name="TextLineMetrics" object="[flash.text.TextLineMetrics]" text="new TextLineMetrics(%x:Number,width:Number,height:Number,ascent:Number,descent:Number,leading:Number%)" constructor="true" tiptext="Contains information about the text position and measurements of a line of text in a text field." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextLineMetrics.html#TextLineMetrics()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TextLineMetrics" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextLineMetrics.html">
                <string name="x" object="[flash.text.TextLineMetrics]" text=".x" tiptext="The x value is the left position of the first character in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextLineMetrics.html#x"/>
                <string name="width" object="[flash.text.TextLineMetrics]" text=".width" tiptext="The width value is the width of the text of the selected lines (not necessarily the complete text) in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextLineMetrics.html#width"/>
                <string name="height" object="[flash.text.TextLineMetrics]" text=".height" tiptext="The height value of the text of the selected lines (not necessarily the complete text) in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextLineMetrics.html#height"/>
                <string name="ascent" object="[flash.text.TextLineMetrics]" text=".ascent" tiptext="The ascent value of the text is the length from the baseline to the top of the line height in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextLineMetrics.html#ascent"/>
                <string name="descent" object="[flash.text.TextLineMetrics]" text=".descent" tiptext="The descent value of the text is the length from the baseline to the bottom depth of the line in pixels." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextLineMetrics.html#descent"/>
                <string name="leading" object="[flash.text.TextLineMetrics]" text=".leading" tiptext="The leading value is the measurement of the vertical distance between the lines of text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextLineMetrics.html#leading"/>
            </folder>
        </folder>
        <folder name="TextRenderer" id="[flash.text.TextRenderer]" sort="true" index="true" asAncestors="Object" tiptext="The TextRenderer class provides functionality for the advanced anti-aliasing capability of embedded fonts." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextRenderer.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TextRenderer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextRenderer.html">
                <string name="setAdvancedAntiAliasingTable" object="[flash.text.TextRenderer]" text="TextRenderer.setAdvancedAntiAliasingTable(%fontName:String,fontStyle:String,colorType:String,advancedAntiAliasingTable:Array%):void" static="true" tiptext="Sets a custom continuous stroke modulation (CSM) lookup table for a font." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextRenderer.html#setAdvancedAntiAliasingTable()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TextRenderer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextRenderer.html">
                <string name="maxLevel" object="[flash.text.TextRenderer]" text=".maxLevel" tiptext="The adaptively sampled distance fields (ADFs) quality level for advanced anti-aliasing." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextRenderer.html#maxLevel"/>
                <string name="displayMode" object="[flash.text.TextRenderer]" text=".displayMode" tiptext="Controls the rendering of advanced anti-aliased text." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextRenderer.html#displayMode"/>
            </folder>
        </folder>
        <folder name="TextSnapshot" id="[flash.text.TextSnapshot]" sort="true" index="true" asAncestors="Object" tiptext="TextSnapshot objects let you work with static text in a movie clip." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextSnapshot.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class TextSnapshot" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextSnapshot.html">
                <string name="findText" object="[flash.text.TextSnapshot]" text=".findText(%beginIndex:int,textToFind:String,caseSensitive:Boolean%):int" tiptext="Searches the specified TextSnapshot object and returns the position of the first occurrence of textToFind found at or after beginIndex." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextSnapshot.html#findText()"/>
                <string name="getSelected" object="[flash.text.TextSnapshot]" text=".getSelected(%beginIndex:int,endIndex:int%):Boolean" tiptext="Returns a Boolean value that specifies whether a TextSnapshot object contains selected text in the specified range." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextSnapshot.html#getSelected()"/>
                <string name="getSelectedText" object="[flash.text.TextSnapshot]" text=".getSelectedText(%[includeLineEndings:Boolean=false]%):String" tiptext="Returns a string that contains all the characters specified by the corresponding setSelected() method." version="9. " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextSnapshot.html#getSelectedText()"/>
                <string name="getText" object="[flash.text.TextSnapshot]" text=".getText(%beginIndex:int,endIndex:int[,includeLineEndings:Boolean=false]%):String" tiptext="Returns a string that contains all the characters specified by the beginIndex and endIndex parameters." version="9. " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextSnapshot.html#getText()"/>
                <string name="getTextRunInfo" object="[flash.text.TextSnapshot]" text=".getTextRunInfo(%beginIndex:int,endIndex:int%):Array" tiptext="Returns an array of objects that contains information about a run of text." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextSnapshot.html#getTextRunInfo()"/>
                <string name="hitTestTextNearPos" object="[flash.text.TextSnapshot]" text=".hitTestTextNearPos(%x:Number,y:Number[,maxDistance:Number=0]%):Number" tiptext="Lets you determine which character within a TextSnapshot object is on or near the specified x, y coordinates of the movie clip containing the text in the TextSnapshot object." version="9. " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextSnapshot.html#hitTestTextNearPos()"/>
                <string name="setSelectColor" object="[flash.text.TextSnapshot]" text=".setSelectColor(%[hexColor:uint=0xFFFF00]%):void" tiptext="Specifies the color to use when highlighting characters that have been selected with the  setSelected() method." version="9. " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextSnapshot.html#setSelectColor()"/>
                <string name="setSelected" object="[flash.text.TextSnapshot]" text=".setSelected(%beginIndex:int,endIndex:int,select:Boolean%):void" tiptext="Specifies a range of characters in a TextSnapshot object to be selected or deselected." version="9. " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextSnapshot.html#setSelected()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class TextSnapshot" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextSnapshot.html">
                <string name="charCount" object="[flash.text.TextSnapshot]" text=".charCount" tiptext="The number of characters in a TextSnapshot object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/text/TextSnapshot.html#charCount"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.ui" id="flash.ui" sort="true" tiptext="Classes for package flash.ui" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/package-detail.html">
        <folder name="ContextMenu" id="[flash.ui.ContextMenu]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The ContextMenu class provides control over the items in the Flash Player context menu." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenu.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ContextMenu" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenu.html">
                <string name="ContextMenu" object="[flash.ui.ContextMenu]" text="new ContextMenu(%%)" constructor="true" tiptext="Creates a ContextMenu object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenu.html#ContextMenu()"/>
                <string name="clone" object="[flash.ui.ContextMenu]" text=".clone(%%):flash.ui:ContextMenu" tiptext="Creates a copy of the specified ContextMenu object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenu.html#clone()"/>
                <string name="hideBuiltInItems" object="[flash.ui.ContextMenu]" text=".hideBuiltInItems(%%):void" tiptext="Hides all built-in menu items (except Settings) in the specified ContextMenu object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenu.html#hideBuiltInItems()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ContextMenu" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenu.html">
                <string name="builtInItems" object="[flash.ui.ContextMenu]" text=".builtInItems" tiptext="An object that has the following properties of the ContextMenuBuiltInItems class: forwardAndBack, loop, play, print, quality, rewind, save, and zoom." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenu.html#builtInItems"/>
                <string name="customItems" object="[flash.ui.ContextMenu]" text=".customItems" tiptext="An array of ContextMenuItem objects." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenu.html#customItems"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class ContextMenu" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenu.html">
                <string name="menuSelect" object="[flash.ui.ContextMenu]" text=".addEventListener(%type:String=ContextMenuEvent.MENU_SELECT{ContextMenuEvent.MENU_SELECT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a user first generates a context menu but before the contents of the context menu are displayed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenu.html#event:menuSelect"/>
            </folder>
        </folder>
        <folder name="ContextMenuBuiltInItems" id="[flash.ui.ContextMenuBuiltInItems]" sort="true" index="true" asAncestors="Object" tiptext="The ContextMenuBuiltInItems class describes the items that are built in to a context menu.You can hide these items by using the ContextMenu.hideBuiltInItems() method." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuBuiltInItems.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ContextMenuBuiltInItems" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuBuiltInItems.html">
                <string name="ContextMenuBuiltInItems" object="[flash.ui.ContextMenuBuiltInItems]" text="new ContextMenuBuiltInItems(%%)" constructor="true" tiptext="Creates a new ContextMenuBuiltInItems object so that you can set the properties for Flash Player to display or hide each menu item." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuBuiltInItems.html#ContextMenuBuiltInItems()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ContextMenuBuiltInItems" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuBuiltInItems.html">
                <string name="save" object="[flash.ui.ContextMenuBuiltInItems]" text=".save" tiptext="Lets the user with Shockmachine installed save a SWF file." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuBuiltInItems.html#save"/>
                <string name="zoom" object="[flash.ui.ContextMenuBuiltInItems]" text=".zoom" tiptext="Lets the user zoom in and out on a SWF file at run time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuBuiltInItems.html#zoom"/>
                <string name="quality" object="[flash.ui.ContextMenuBuiltInItems]" text=".quality" tiptext="Lets the user set the resolution of the SWF file at run time." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuBuiltInItems.html#quality"/>
                <string name="play" object="[flash.ui.ContextMenuBuiltInItems]" text=".play" tiptext="Lets the user start a paused SWF file (does not appear for a single-frame SWF file)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuBuiltInItems.html#play"/>
                <string name="loop" object="[flash.ui.ContextMenuBuiltInItems]" text=".loop" tiptext="Lets the user set a SWF file to start over automatically when it reaches the final frame (does not appear for a single-frame SWF file)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuBuiltInItems.html#loop"/>
                <string name="rewind" object="[flash.ui.ContextMenuBuiltInItems]" text=".rewind" tiptext="Lets the user set a SWF file to play from the first frame when selected, at any time (does not appear for a single-frame SWF file)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuBuiltInItems.html#rewind"/>
                <string name="forwardAndBack" object="[flash.ui.ContextMenuBuiltInItems]" text=".forwardAndBack" tiptext="Lets the user move forward or backward one frame in a SWF file at run time (does not appear for a single-frame SWF file)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuBuiltInItems.html#forwardAndBack"/>
                <string name="print" object="[flash.ui.ContextMenuBuiltInItems]" text=".print" tiptext="Lets the user send the displayed frame image to a printer." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuBuiltInItems.html#print"/>
            </folder>
        </folder>
        <folder name="ContextMenuItem" id="[flash.ui.ContextMenuItem]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="Use the ContextMenuItem class to create custom menu items to display in the Flash Player context menu." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuItem.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ContextMenuItem" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuItem.html">
                <string name="ContextMenuItem" object="[flash.ui.ContextMenuItem]" text="new ContextMenuItem(%caption:String[,separatorBefore:Boolean=false,enabled:Boolean=true,visible:Boolean=true]%)" constructor="true" tiptext="Creates a new ContextMenuItem object that can be added to the ContextMenu.customItems array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuItem.html#ContextMenuItem()"/>
                <string name="clone" object="[flash.ui.ContextMenuItem]" text=".clone(%%):flash.ui:ContextMenuItem" tiptext="Creates and returns a copy of the specified ContextMenuItem object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuItem.html#clone()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ContextMenuItem" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuItem.html">
                <string name="caption" object="[flash.ui.ContextMenuItem]" text=".caption" tiptext="Specifies the menu item caption (text) displayed in the context menu." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuItem.html#caption"/>
                <string name="enabled" object="[flash.ui.ContextMenuItem]" text=".enabled" tiptext="Indicates whether the specified menu item is enabled or disabled." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuItem.html#enabled"/>
                <string name="separatorBefore" object="[flash.ui.ContextMenuItem]" text=".separatorBefore" tiptext="Indicates whether a separator bar should appear above the specified menu item." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuItem.html#separatorBefore"/>
                <string name="visible" object="[flash.ui.ContextMenuItem]" text=".visible" tiptext="Indicates whether the specified menu item is visible when the Flash Player context menu is displayed." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuItem.html#visible"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class ContextMenuItem" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuItem.html">
                <string name="menuItemSelect" object="[flash.ui.ContextMenuItem]" text=".addEventListener(%type:String=ContextMenuEvent.MENU_ITEM_SELECT{ContextMenuEvent.MENU_ITEM_SELECT},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched when a user selects an item from a context menu." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/ContextMenuItem.html#event:menuItemSelect"/>
            </folder>
        </folder>
        <folder name="Keyboard" id="[flash.ui.Keyboard]" sort="true" index="true" asAncestors="Object" tiptext="The Keyboard class is used to build an interface that can be controlled by a user with a standard keyboard." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Keyboard" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html">
                <string name="isAccessible" object="[flash.ui.Keyboard]" text="Keyboard.isAccessible(%%):Boolean" static="true" tiptext="Specifies whether the last key pressed is accessible by other SWF files." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#isAccessible()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Keyboard" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html">
                <string name="BACKSPACE" object="[flash.ui.Keyboard]" text="Keyboard.BACKSPACE" constant="true" tiptext="Constant associated with the key code value for the Backspace key (8)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#BACKSPACE"/>
                <string name="CAPS_LOCK" object="[flash.ui.Keyboard]" text="Keyboard.CAPS_LOCK" constant="true" tiptext="Constant associated with the key code value for the Caps Lock key (20)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#CAPS_LOCK"/>
                <string name="CONTROL" object="[flash.ui.Keyboard]" text="Keyboard.CONTROL" constant="true" tiptext="Constant associated with the key code value for the Control key (17)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#CONTROL"/>
                <string name="DELETE" object="[flash.ui.Keyboard]" text="Keyboard.DELETE" constant="true" tiptext="Constant associated with the key code value for the Delete key (46)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#DELETE"/>
                <string name="DOWN" object="[flash.ui.Keyboard]" text="Keyboard.DOWN" constant="true" tiptext="Constant associated with the key code value for the Down Arrow key (40)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#DOWN"/>
                <string name="END" object="[flash.ui.Keyboard]" text="Keyboard.END" constant="true" tiptext="Constant associated with the key code value for the End key (35)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#END"/>
                <string name="ENTER" object="[flash.ui.Keyboard]" text="Keyboard.ENTER" constant="true" tiptext="Constant associated with the key code value for the Enter key (13)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#ENTER"/>
                <string name="ESCAPE" object="[flash.ui.Keyboard]" text="Keyboard.ESCAPE" constant="true" tiptext="Constant associated with the key code value for the Escape key (27)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#ESCAPE"/>
                <string name="F1" object="[flash.ui.Keyboard]" text="Keyboard.F1" constant="true" tiptext="Constant associated with the key code value for the F1 key (112)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F1"/>
                <string name="F2" object="[flash.ui.Keyboard]" text="Keyboard.F2" constant="true" tiptext="Constant associated with the key code value for the F2 key (113)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F2"/>
                <string name="F3" object="[flash.ui.Keyboard]" text="Keyboard.F3" constant="true" tiptext="Constant associated with the key code value for the F3 key (114)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F3"/>
                <string name="F4" object="[flash.ui.Keyboard]" text="Keyboard.F4" constant="true" tiptext="Constant associated with the key code value for the F4 key (115)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F4"/>
                <string name="F5" object="[flash.ui.Keyboard]" text="Keyboard.F5" constant="true" tiptext="Constant associated with the key code value for the F5 key (116)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F5"/>
                <string name="F6" object="[flash.ui.Keyboard]" text="Keyboard.F6" constant="true" tiptext="Constant associated with the key code value for the F6 key (117)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F6"/>
                <string name="F7" object="[flash.ui.Keyboard]" text="Keyboard.F7" constant="true" tiptext="Constant associated with the key code value for the F7 key (118)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F7"/>
                <string name="F8" object="[flash.ui.Keyboard]" text="Keyboard.F8" constant="true" tiptext="Constant associated with the key code value for the F8 key (119)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F8"/>
                <string name="F9" object="[flash.ui.Keyboard]" text="Keyboard.F9" constant="true" tiptext="Constant associated with the key code value for the F9 key (120)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F9"/>
                <string name="F10" object="[flash.ui.Keyboard]" text="Keyboard.F10" constant="true" tiptext="Constant associated with the key code value for the F10 key (121)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F10"/>
                <string name="F11" object="[flash.ui.Keyboard]" text="Keyboard.F11" constant="true" tiptext="Constant associated with the key code value for the F11 key (122)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F11"/>
                <string name="F12" object="[flash.ui.Keyboard]" text="Keyboard.F12" constant="true" tiptext="Constant associated with the key code value for the F12 key (123)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F12"/>
                <string name="F13" object="[flash.ui.Keyboard]" text="Keyboard.F13" constant="true" tiptext="Constant associated with the key code value for the F13 key (124)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F13"/>
                <string name="F14" object="[flash.ui.Keyboard]" text="Keyboard.F14" constant="true" tiptext="Constant associated with the key code value for the F14 key (125)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F14"/>
                <string name="F15" object="[flash.ui.Keyboard]" text="Keyboard.F15" constant="true" tiptext="Constant associated with the key code value for the F15 key (126)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#F15"/>
                <string name="HOME" object="[flash.ui.Keyboard]" text="Keyboard.HOME" constant="true" tiptext="Constant associated with the key code value for the Home key (36)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#HOME"/>
                <string name="INSERT" object="[flash.ui.Keyboard]" text="Keyboard.INSERT" constant="true" tiptext="Constant associated with the key code value for the Insert key (45)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#INSERT"/>
                <string name="LEFT" object="[flash.ui.Keyboard]" text="Keyboard.LEFT" constant="true" tiptext="Constant associated with the key code value for the Left Arrow key (37)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#LEFT"/>
                <string name="NUMPAD_0" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_0" constant="true" tiptext="Constant associated with the key code value for the number 0 key on the number pad (96)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_0"/>
                <string name="NUMPAD_1" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_1" constant="true" tiptext="Constant associated with the key code value for the number 1 key on the number pad (97)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_1"/>
                <string name="NUMPAD_2" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_2" constant="true" tiptext="Constant associated with the key code value for the number 2 key on the number pad (98)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_2"/>
                <string name="NUMPAD_3" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_3" constant="true" tiptext="Constant associated with the key code value for the number 3 key on the number pad (99)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_3"/>
                <string name="NUMPAD_4" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_4" constant="true" tiptext="Constant associated with the key code value for the number 4 key on the number pad (100)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_4"/>
                <string name="NUMPAD_5" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_5" constant="true" tiptext="Constant associated with the key code value for the number 5 key on the number pad (101)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_5"/>
                <string name="NUMPAD_6" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_6" constant="true" tiptext="Constant associated with the key code value for the number 6 key on the number pad (102)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_6"/>
                <string name="NUMPAD_7" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_7" constant="true" tiptext="Constant associated with the key code value for the number 7 key on the number pad (103)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_7"/>
                <string name="NUMPAD_8" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_8" constant="true" tiptext="Constant associated with the key code value for the number 8 key on the number pad (104)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_8"/>
                <string name="NUMPAD_9" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_9" constant="true" tiptext="Constant associated with the key code value for the number 9 key on the number pad (105)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_9"/>
                <string name="NUMPAD_ADD" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_ADD" constant="true" tiptext="Constant associated with the key code value for the addition key on the number pad (107)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_ADD"/>
                <string name="NUMPAD_DECIMAL" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_DECIMAL" constant="true" tiptext="Constant associated with the key code value for the decimal key on the number pad (110)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_DECIMAL"/>
                <string name="NUMPAD_DIVIDE" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_DIVIDE" constant="true" tiptext="Constant associated with the key code value for the division key on the number pad (111)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_DIVIDE"/>
                <string name="NUMPAD_ENTER" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_ENTER" constant="true" tiptext="Constant associated with the key code value for the Enter key on the number pad (108)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_ENTER"/>
                <string name="NUMPAD_MULTIPLY" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_MULTIPLY" constant="true" tiptext="Constant associated with the key code value for the multiplication key on the number pad (106)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_MULTIPLY"/>
                <string name="NUMPAD_SUBTRACT" object="[flash.ui.Keyboard]" text="Keyboard.NUMPAD_SUBTRACT" constant="true" tiptext="Constant associated with the key code value for the subtraction key on the number pad (109)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#NUMPAD_SUBTRACT"/>
                <string name="PAGE_DOWN" object="[flash.ui.Keyboard]" text="Keyboard.PAGE_DOWN" constant="true" tiptext="Constant associated with the key code value for the Page Down key (34)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#PAGE_DOWN"/>
                <string name="PAGE_UP" object="[flash.ui.Keyboard]" text="Keyboard.PAGE_UP" constant="true" tiptext="Constant associated with the key code value for the Page Up key (33)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#PAGE_UP"/>
                <string name="RIGHT" object="[flash.ui.Keyboard]" text="Keyboard.RIGHT" constant="true" tiptext="Constant associated with the key code value for the Right Arrow key (39)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#RIGHT"/>
                <string name="SHIFT" object="[flash.ui.Keyboard]" text="Keyboard.SHIFT" constant="true" tiptext="Constant associated with the key code value for the Shift key (16)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#SHIFT"/>
                <string name="SPACE" object="[flash.ui.Keyboard]" text="Keyboard.SPACE" constant="true" tiptext="Constant associated with the key code value for the Spacebar (32)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#SPACE"/>
                <string name="TAB" object="[flash.ui.Keyboard]" text="Keyboard.TAB" constant="true" tiptext="Constant associated with the key code value for the Tab key (9)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#TAB"/>
                <string name="UP" object="[flash.ui.Keyboard]" text="Keyboard.UP" constant="true" tiptext="Constant associated with the key code value for the Up Arrow key (38)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#UP"/>
                <string name="capsLock" object="[flash.ui.Keyboard]" text=".capsLock" tiptext="Specifies whether the Caps Lock key is activated (true) or not (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#capsLock"/>
                <string name="numLock" object="[flash.ui.Keyboard]" text=".numLock" tiptext="Specifies whether the Num Lock key is activated (true) or not (false)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Keyboard.html#numLock"/>
            </folder>
        </folder>
        <folder name="KeyLocation" id="[flash.ui.KeyLocation]" sort="true" index="true" asAncestors="Object" tiptext="The KeyLocation class contains constants that indicate the location of a key pressed on the keyboard." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/KeyLocation.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class KeyLocation" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/KeyLocation.html">
                <string name="STANDARD" object="[flash.ui.KeyLocation]" text="KeyLocation.STANDARD" constant="true" tiptext="Indicates the key activation is not distinguished as the left or right version of the key, and did not originate on the numeric keypad (or did not originate with a virtual key corresponding to the numeric keypad)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/KeyLocation.html#STANDARD"/>
                <string name="LEFT" object="[flash.ui.KeyLocation]" text="KeyLocation.LEFT" constant="true" tiptext="Indicates the key activated is in the left key location (there is more than one possible location for this key)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/KeyLocation.html#LEFT"/>
                <string name="RIGHT" object="[flash.ui.KeyLocation]" text="KeyLocation.RIGHT" constant="true" tiptext="Indicates the key activated is in the right key location (there is more than one possible location for this key)." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/KeyLocation.html#RIGHT"/>
                <string name="NUM_PAD" object="[flash.ui.KeyLocation]" text="KeyLocation.NUM_PAD" constant="true" tiptext="Indicates the key activation originated on the numeric keypad or with a virtual key corresponding to the numeric keypad." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/KeyLocation.html#NUM_PAD"/>
            </folder>
        </folder>
        <folder name="Mouse" id="[flash.ui.Mouse]" sort="true" index="true" asAncestors="Object" tiptext="The methods of the Mouse class are used to hide and show the mouse pointer." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Mouse.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Mouse" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Mouse.html">
                <string name="hide" object="[flash.ui.Mouse]" text="Mouse.hide(%%):void" static="true" tiptext="Hides the pointer." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Mouse.html#hide()"/>
                <string name="show" object="[flash.ui.Mouse]" text="Mouse.show(%%):void" static="true" tiptext="Displays the pointer." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/ui/Mouse.html#show()"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.utils" id="flash.utils" sort="true" tiptext="Classes for package flash.utils" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package-detail.html">
        <folder name="ByteArray" id="[flash.utils.ByteArray]" sort="true" index="true" asAncestors="Object" tiptext="The ByteArray class provides methods and properties to optimize reading, writing, and working with binary data." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class ByteArray" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html">
                <string name="ByteArray" object="[flash.utils.ByteArray]" text="new ByteArray(%%)" constructor="true" tiptext="Creates a ByteArray instance representing a packed array of bytes, so that you can use the methods and properties in this class to optimize your data storage and stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#ByteArray()"/>
                <string name="readBytes" object="[flash.utils.ByteArray]" text=".readBytes(%bytes:flash.utils:ByteArray[,offset:uint=0,length:uint=0]%):void" tiptext="Reads the number of data bytes, specified by the length parameter, from the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readBytes()"/>
                <string name="writeBytes" object="[flash.utils.ByteArray]" text=".writeBytes(%bytes:flash.utils:ByteArray[,offset:uint=0,length:uint=0]%):void" tiptext="Writes a sequence of length bytes from the specified byte array, bytes, starting offset (zero-based index) bytes into the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#writeBytes()"/>
                <string name="writeBoolean" object="[flash.utils.ByteArray]" text=".writeBoolean(%value:Boolean%):void" tiptext="Writes a Boolean value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#writeBoolean()"/>
                <string name="writeByte" object="[flash.utils.ByteArray]" text=".writeByte(%value:int%):void" tiptext="Writes a byte to the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#writeByte()"/>
                <string name="writeShort" object="[flash.utils.ByteArray]" text=".writeShort(%value:int%):void" tiptext="Writes a 16-bit integer to the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#writeShort()"/>
                <string name="writeInt" object="[flash.utils.ByteArray]" text=".writeInt(%value:int%):void" tiptext="Writes a 32-bit signed integer to the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#writeInt()"/>
                <string name="writeUnsignedInt" object="[flash.utils.ByteArray]" text=".writeUnsignedInt(%value:uint%):void" tiptext="Writes a 32-bit unsigned integer to the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#writeUnsignedInt()"/>
                <string name="writeFloat" object="[flash.utils.ByteArray]" text=".writeFloat(%value:Number%):void" tiptext="Writes an IEEE 754 single-precision (32-bit) floating-point number to the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#writeFloat()"/>
                <string name="writeDouble" object="[flash.utils.ByteArray]" text=".writeDouble(%value:Number%):void" tiptext="Writes an IEEE 754 double-precision (64-bit) floating-point number to the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#writeDouble()"/>
                <string name="writeMultiByte" object="[flash.utils.ByteArray]" text=".writeMultiByte(%value:String,charSet:String%):void" tiptext="Writes a multibyte string to the byte stream using the specified character set." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#writeMultiByte()"/>
                <string name="writeUTF" object="[flash.utils.ByteArray]" text=".writeUTF(%value:String%):void" tiptext="Writes a UTF-8 string to the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#writeUTF()"/>
                <string name="writeUTFBytes" object="[flash.utils.ByteArray]" text=".writeUTFBytes(%value:String%):void" tiptext="Writes a UTF-8 string to the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#writeUTFBytes()"/>
                <string name="readBoolean" object="[flash.utils.ByteArray]" text=".readBoolean(%%):Boolean" tiptext="Reads a Boolean value from the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readBoolean()"/>
                <string name="readByte" object="[flash.utils.ByteArray]" text=".readByte(%%):int" tiptext="Reads a signed byte from the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readByte()"/>
                <string name="readUnsignedByte" object="[flash.utils.ByteArray]" text=".readUnsignedByte(%%):uint" tiptext="Reads an unsigned byte from the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readUnsignedByte()"/>
                <string name="readShort" object="[flash.utils.ByteArray]" text=".readShort(%%):int" tiptext="Reads a signed 16-bit integer from the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readShort()"/>
                <string name="readUnsignedShort" object="[flash.utils.ByteArray]" text=".readUnsignedShort(%%):uint" tiptext="Reads an unsigned 16-bit integer from the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readUnsignedShort()"/>
                <string name="readInt" object="[flash.utils.ByteArray]" text=".readInt(%%):int" tiptext="Reads a signed 32-bit integer from the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readInt()"/>
                <string name="readUnsignedInt" object="[flash.utils.ByteArray]" text=".readUnsignedInt(%%):uint" tiptext="Reads an unsigned 32-bit integer from the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readUnsignedInt()"/>
                <string name="readFloat" object="[flash.utils.ByteArray]" text=".readFloat(%%):Number" tiptext="Reads an IEEE 754 single-precision (32-bit) floating-point number from the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readFloat()"/>
                <string name="readDouble" object="[flash.utils.ByteArray]" text=".readDouble(%%):Number" tiptext="Reads an IEEE 754 double-precision (64-bit) floating-point number from the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readDouble()"/>
                <string name="readMultiByte" object="[flash.utils.ByteArray]" text=".readMultiByte(%length:uint,charSet:String%):String" tiptext="Reads a multibyte string of specified length from the byte stream using the specified character set." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readMultiByte()"/>
                <string name="readUTF" object="[flash.utils.ByteArray]" text=".readUTF(%%):String" tiptext="Reads a UTF-8 string from the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readUTF()"/>
                <string name="readUTFBytes" object="[flash.utils.ByteArray]" text=".readUTFBytes(%length:uint%):String" tiptext="Reads a sequence of UTF-8 bytes specified by the length parameter from the byte stream and returns a string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readUTFBytes()"/>
                <string name="writeObject" object="[flash.utils.ByteArray]" text=".writeObject(%object:*%):void" tiptext="Writes an object into the byte array in AMF serialized format." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#writeObject()"/>
                <string name="readObject" object="[flash.utils.ByteArray]" text=".readObject(%%)" tiptext="Reads an object from the byte array, encoded in AMF serialized format." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#readObject()"/>
                <string name="compress" object="[flash.utils.ByteArray]" text=".compress(%%):void" tiptext="Compresses the byte array using the zlib compressed data format." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#compress()"/>
                <string name="uncompress" object="[flash.utils.ByteArray]" text=".uncompress(%%):void" tiptext="Decompresses the byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#uncompress()"/>
                <string name="toString" object="[flash.utils.ByteArray]" text=".toString(%%):String" tiptext="Converts the byte array to a string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#toString()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class ByteArray" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html">
                <string name="length" object="[flash.utils.ByteArray]" text=".length" tiptext="The length of the ByteArray object, in bytes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#length"/>
                <string name="bytesAvailable" object="[flash.utils.ByteArray]" text=".bytesAvailable" tiptext="The number of bytes of data available for reading from the current position in the byte array to the end of the array." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#bytesAvailable"/>
                <string name="position" object="[flash.utils.ByteArray]" text=".position" tiptext="Moves, or returns the current position, in bytes, of the file pointer into the ByteArray object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#position"/>
                <string name="defaultObjectEncoding" object="[flash.utils.ByteArray]" text=".defaultObjectEncoding" tiptext="Denotes the default object encoding for the ByteArray class to use for a new ByteArray instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#defaultObjectEncoding"/>
                <string name="objectEncoding" object="[flash.utils.ByteArray]" text=".objectEncoding" tiptext="Used to determine whether the ActionScript 3.0, ActionScript 2.0, or ActionScript 1.0 format should be used when writing to, or reading from, a ByteArray instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#objectEncoding"/>
                <string name="endian" object="[flash.utils.ByteArray]" text=".endian" tiptext="Changes or reads the byte order for the data; either &quot;bigEndian&quot; or &quot;littleEndian&quot;." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/ByteArray.html#endian"/>
            </folder>
        </folder>
        <folder name="Dictionary" id="[flash.utils.Dictionary]" sort="true" index="true" asAncestors="Object" tiptext="The Dictionary class lets you create a dynamic collection of properties, which uses strict equality (===) for key comparison on non-primitive object keys." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Dictionary.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Dictionary" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Dictionary.html">
                <string name="Dictionary" object="[flash.utils.Dictionary]" text="new Dictionary(%[weakKeys:Boolean=false]%)" constructor="true" tiptext="Creates a new Dictionary object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Dictionary.html#Dictionary()"/>
            </folder>
        </folder>
        <folder name="Endian" id="[flash.utils.Endian]" sort="true" index="true" asAncestors="Object" tiptext="The Endian class contains values that denote the byte order used to represent multibyte numbers." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Endian.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class Endian" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Endian.html">
                <string name="BIG_ENDIAN" object="[flash.utils.Endian]" text="Endian.BIG_ENDIAN" constant="true" tiptext="Indicates the most significant byte of the multibyte number appears first in the sequence of bytes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Endian.html#BIG_ENDIAN"/>
                <string name="LITTLE_ENDIAN" object="[flash.utils.Endian]" text="Endian.LITTLE_ENDIAN" constant="true" tiptext="Indicates the least significant byte of the multibyte number appears first in the sequence of bytes." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Endian.html#LITTLE_ENDIAN"/>
            </folder>
        </folder>
        <folder name="IDataInput" id="[flash.utils.IDataInput]" sort="true" index="true" tiptext="The IDataInput interface provides a set of methods for reading binary data." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IDataInput" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html">
                <string name="readBytes" object="[flash.utils.IDataInput]" text=".readBytes(%bytes:flash.utils:ByteArray[,offset:uint=0,length:uint=0]%):void" tiptext="Reads the number of data bytes, specified by the length parameter, from the byte stream or byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readBytes()"/>
                <string name="readBoolean" object="[flash.utils.IDataInput]" text=".readBoolean(%%):Boolean" tiptext="Reads a Boolean value from the byte stream or byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readBoolean()"/>
                <string name="readByte" object="[flash.utils.IDataInput]" text=".readByte(%%):int" tiptext="Reads a signed byte from the byte stream or byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readByte()"/>
                <string name="readUnsignedByte" object="[flash.utils.IDataInput]" text=".readUnsignedByte(%%):uint" tiptext="Reads an unsigned byte from the byte stream or byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readUnsignedByte()"/>
                <string name="readShort" object="[flash.utils.IDataInput]" text=".readShort(%%):int" tiptext="Reads a signed 16-bit integer from the byte stream or byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readShort()"/>
                <string name="readUnsignedShort" object="[flash.utils.IDataInput]" text=".readUnsignedShort(%%):uint" tiptext="Reads an unsigned 16-bit integer from the byte stream or byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readUnsignedShort()"/>
                <string name="readInt" object="[flash.utils.IDataInput]" text=".readInt(%%):int" tiptext="Reads a signed 32-bit integer from the byte stream or byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readInt()"/>
                <string name="readUnsignedInt" object="[flash.utils.IDataInput]" text=".readUnsignedInt(%%):uint" tiptext="Reads an unsigned 32-bit integer from the byte stream or byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readUnsignedInt()"/>
                <string name="readFloat" object="[flash.utils.IDataInput]" text=".readFloat(%%):Number" tiptext="Reads an IEEE 754 single-precision floating point number from the byte stream or byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readFloat()"/>
                <string name="readDouble" object="[flash.utils.IDataInput]" text=".readDouble(%%):Number" tiptext="Reads an IEEE 754 double-precision floating point number from the byte stream or byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readDouble()"/>
                <string name="readMultiByte" object="[flash.utils.IDataInput]" text=".readMultiByte(%length:uint,charSet:String%):String" tiptext="Reads a multibyte string of specified length from the byte stream using the specified character set." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readMultiByte()"/>
                <string name="readUTF" object="[flash.utils.IDataInput]" text=".readUTF(%%):String" tiptext="Reads a UTF-8 string from the byte stream or byte array." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readUTF()"/>
                <string name="readUTFBytes" object="[flash.utils.IDataInput]" text=".readUTFBytes(%length:uint%):String" tiptext="Reads a sequence of length UTF-8 bytes from the byte stream or byte array and returns a string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readUTFBytes()"/>
                <string name="readObject" object="[flash.utils.IDataInput]" text=".readObject(%%)" tiptext="Reads an object from the byte stream or byte array, encoded in AMF serialized format." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#readObject()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class IDataInput" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html">
                <string name="bytesAvailable" object="[flash.utils.IDataInput]" text=".bytesAvailable" tiptext="Returns the number of bytes of data available for reading in the input buffer." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#bytesAvailable"/>
                <string name="objectEncoding" object="[flash.utils.IDataInput]" text=".objectEncoding" tiptext="Used to determine whether the ActionScript 3.0, ActionScript 2.0, or ActionScript 1.0 format should be used when writing to, or reading binary data." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#objectEncoding"/>
                <string name="endian" object="[flash.utils.IDataInput]" text=".endian" tiptext="The byte order for the data, either the &quot;bigEndian&quot; or &quot;littleEndian&quot; constant from the Endian class." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataInput.html#endian"/>
            </folder>
        </folder>
        <folder name="IDataOutput" id="[flash.utils.IDataOutput]" sort="true" index="true" tiptext="The IDataOutput interface provides a set of methods for writing binary data." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IDataOutput" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html">
                <string name="writeBytes" object="[flash.utils.IDataOutput]" text=".writeBytes(%bytes:flash.utils:ByteArray[,offset:uint=0,length:uint=0]%):void" tiptext="Writes a sequence of length bytes from the specified byte array, bytes, starting offset(zero-based index) bytes into the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#writeBytes()"/>
                <string name="writeBoolean" object="[flash.utils.IDataOutput]" text=".writeBoolean(%value:Boolean%):void" tiptext="Writes a Boolean value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#writeBoolean()"/>
                <string name="writeByte" object="[flash.utils.IDataOutput]" text=".writeByte(%value:int%):void" tiptext="Writes a byte." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#writeByte()"/>
                <string name="writeShort" object="[flash.utils.IDataOutput]" text=".writeShort(%value:int%):void" tiptext="Writes a 16-bit integer." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#writeShort()"/>
                <string name="writeInt" object="[flash.utils.IDataOutput]" text=".writeInt(%value:int%):void" tiptext="Writes a 32-bit signed integer." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#writeInt()"/>
                <string name="writeUnsignedInt" object="[flash.utils.IDataOutput]" text=".writeUnsignedInt(%value:uint%):void" tiptext="Writes a 32-bit unsigned integer." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#writeUnsignedInt()"/>
                <string name="writeFloat" object="[flash.utils.IDataOutput]" text=".writeFloat(%value:Number%):void" tiptext="Writes an IEEE 754 single-precision (32-bit) floating point number." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#writeFloat()"/>
                <string name="writeDouble" object="[flash.utils.IDataOutput]" text=".writeDouble(%value:Number%):void" tiptext="Writes an IEEE 754 double-precision (64-bit) floating point number." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#writeDouble()"/>
                <string name="writeMultiByte" object="[flash.utils.IDataOutput]" text=".writeMultiByte(%value:String,charSet:String%):void" tiptext="Writes a multibyte string to the byte stream using the specified character set." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#writeMultiByte()"/>
                <string name="writeUTF" object="[flash.utils.IDataOutput]" text=".writeUTF(%value:String%):void" tiptext="Writes a UTF-8 string to the byte stream." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#writeUTF()"/>
                <string name="writeUTFBytes" object="[flash.utils.IDataOutput]" text=".writeUTFBytes(%value:String%):void" tiptext="Writes a UTF-8 string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#writeUTFBytes()"/>
                <string name="writeObject" object="[flash.utils.IDataOutput]" text=".writeObject(%object:*%):void" tiptext="Writes an object to the byte stream or byte array in AMF serialized format." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#writeObject()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class IDataOutput" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html">
                <string name="objectEncoding" object="[flash.utils.IDataOutput]" text=".objectEncoding" tiptext="Used to determine whether the ActionScript 3.0, ActionScript 2.0, or ActionScript 1.0 format should be used when writing to, or reading binary data." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#objectEncoding"/>
                <string name="endian" object="[flash.utils.IDataOutput]" text=".endian" tiptext="The byte order for the data, either the &quot;bigEndian&quot; or &quot;littleEndian&quot; constant from the Endian class." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IDataOutput.html#endian"/>
            </folder>
        </folder>
        <folder name="IExternalizable" id="[flash.utils.IExternalizable]" sort="true" index="true" tiptext="The IExternalizable interface provides control over serialization of a class as it is encoded into a data stream." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IExternalizable.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class IExternalizable" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IExternalizable.html">
                <string name="writeExternal" object="[flash.utils.IExternalizable]" text=".writeExternal(%output:flash.utils:IDataOutput%):void" tiptext="A class implements this method to encode itself for a data stream by calling the methods of the IDataOutput interface." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IExternalizable.html#writeExternal()"/>
                <string name="readExternal" object="[flash.utils.IExternalizable]" text=".readExternal(%input:flash.utils:IDataInput%):void" tiptext="A class implements this method to decode itself from a data stream by calling the methods of the IDataInput interface." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/IExternalizable.html#readExternal()"/>
            </folder>
        </folder>
        <folder name="Methods" id="Methods" tiptext="Methods for package flash.utils" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package-detail.html">
            <string name="describeType" text="describeType(%value:*%):XML" tiptext="Produces an XML object that describes the ActionScript object named as the parameter of the method." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package.html#describeType()"/>
            <string name="getQualifiedClassName" text="getQualifiedClassName(%value:*%):String" tiptext="Returns the fully qualified class name of an object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package.html#getQualifiedClassName()"/>
            <string name="getDefinitionByName" text="getDefinitionByName(%name:String%):Object" tiptext="Returns a reference to the class object of the class specified by the name parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package.html#getDefinitionByName()"/>
            <string name="getQualifiedSuperclassName" text="getQualifiedSuperclassName(%value:*%):String" tiptext="Returns the fully qualified class name of the base class of the object specified by the value parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package.html#getQualifiedSuperclassName()"/>
            <string name="getTimer" text="getTimer(%%):int" tiptext="Returns the number of milliseconds that have elapsed since Flash Player was initialized, and is used to compute relative time." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package.html#getTimer()"/>
            <string name="escapeMultiByte" text="escapeMultiByte(%value:String%):String" tiptext="Returns an escaped copy of the input string encoded as either UTF-8 or system code page, depending on the value of System.useCodePage." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package.html#escapeMultiByte()"/>
            <string name="unescapeMultiByte" text="unescapeMultiByte(%value:String%):String" tiptext="Returns an unescaped copy of the input string, which is decoded from either system code page page or UTF-8 depending on the value of System.useCodePage." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package.html#unescapeMultiByte()"/>
            <string name="setInterval" text="setInterval(%closure:Function,delay:Number,arguments:restParam%):uint" tiptext="Runs a function at a specified interval (in milliseconds)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package.html#setInterval()"/>
            <string name="setTimeout" text="setTimeout(%closure:Function,delay:Number,arguments:restParam%):uint" tiptext="Runs a specified function after a specified delay (in milliseconds)." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package.html#setTimeout()"/>
            <string name="clearInterval" text="clearInterval(%id:uint%):void" tiptext="Cancels a specified setInterval() call." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package.html#clearInterval()"/>
            <string name="clearTimeout" text="clearTimeout(%id:uint%):void" tiptext="Cancels a specified setTimeout() call." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/package.html#clearTimeout()"/>
        </folder>
        <folder name="Proxy" id="[flash.utils.Proxy]" sort="true" index="true" asAncestors="Object" tiptext="The Proxy class lets you override the default behavior of ActionScript operations (such as retrieving and modifying properties) on an object." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Proxy.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Proxy" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Proxy.html">
                <string name="getProperty" object="[flash.utils.Proxy]" text=".getProperty(%name:*%)" tiptext="Overrides any request for a property&apos;s value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Proxy.html#getProperty()"/>
                <string name="setProperty" object="[flash.utils.Proxy]" text=".setProperty(%name:*,value:*%):void" tiptext="Overrides a call to change a property&apos;s value." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Proxy.html#setProperty()"/>
                <string name="callProperty" object="[flash.utils.Proxy]" text=".callProperty(%name:*,rest:restParam%)" tiptext="Overrides the behavior of an object property that can be called as a function." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Proxy.html#callProperty()"/>
                <string name="hasProperty" object="[flash.utils.Proxy]" text=".hasProperty(%name:*%):Boolean" tiptext="Overrides a request to check whether an object has a particular property by name." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Proxy.html#hasProperty()"/>
                <string name="deleteProperty" object="[flash.utils.Proxy]" text=".deleteProperty(%name:*%):Boolean" tiptext="Overrides the request to delete a property." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Proxy.html#deleteProperty()"/>
                <string name="getDescendants" object="[flash.utils.Proxy]" text=".getDescendants(%name:*%)" tiptext="Overrides the use of the descendant operator." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Proxy.html#getDescendants()"/>
                <string name="nextNameIndex" object="[flash.utils.Proxy]" text=".nextNameIndex(%index:int%):int" tiptext="Allows enumeration of the proxied object&apos;s properties by index number." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Proxy.html#nextNameIndex()"/>
                <string name="nextName" object="[flash.utils.Proxy]" text=".nextName(%index:int%):String" tiptext="Allows enumeration of the proxied object&apos;s properties by index number to retrieve property names." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Proxy.html#nextName()"/>
                <string name="nextValue" object="[flash.utils.Proxy]" text=".nextValue(%index:int%)" tiptext="Allows enumeration of the proxied object&apos;s properties by index number to retrieve property values." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Proxy.html#nextValue()"/>
                <string name="isAttribute" object="[flash.utils.Proxy]" text=".isAttribute(%name:*%):Boolean" tiptext="Checks whether a supplied QName is also marked as an attribute." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Proxy.html#isAttribute()"/>
            </folder>
        </folder>
        <folder name="Timer" id="[flash.utils.Timer]" sort="true" index="true" asAncestors="flash.events:EventDispatcher,Object" tiptext="The Timer class is the interface to Flash Player timers." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class Timer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html">
                <string name="Timer" object="[flash.utils.Timer]" text="new Timer(%delay:Number[,repeatCount:int=0]%)" constructor="true" tiptext="Constructs a new Timer object with the specified delay and repeatCount states." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html#Timer()"/>
                <string name="start" object="[flash.utils.Timer]" text=".start(%%):void" tiptext="Starts the timer, if it is not already running." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html#start()"/>
                <string name="reset" object="[flash.utils.Timer]" text=".reset(%%):void" tiptext="Stops the timer, if it is running, and sets the currentCount property back to 0, like the reset button of a stopwatch." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html#reset()"/>
                <string name="stop" object="[flash.utils.Timer]" text=".stop(%%):void" tiptext="Stops the timer." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html#stop()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class Timer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html">
                <string name="delay" object="[flash.utils.Timer]" text=".delay" tiptext="The delay, in milliseconds, between timer events." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html#delay"/>
                <string name="repeatCount" object="[flash.utils.Timer]" text=".repeatCount" tiptext="The total number of times the timer is set to run." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html#repeatCount"/>
                <string name="currentCount" object="[flash.utils.Timer]" text=".currentCount" tiptext="The total number of times the timer has fired since it started at zero." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html#currentCount"/>
                <string name="running" object="[flash.utils.Timer]" text=".running" tiptext="The timer&apos;s current state; true if the timer is running, otherwise false." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html#running"/>
            </folder>
            <folder name="Events" id="Events" tiptext="Events for class Timer" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html">
                <string name="timerComplete" object="[flash.utils.Timer]" text=".addEventListener(%type:String=TimerEvent.TIMER_COMPLETE{TimerEvent.TIMER_COMPLETE,TimerEvent.TIMER},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched whenever it has completed the number of requests set by Timer.repeatCount." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html#event:timerComplete"/>
                <string name="timer" object="[flash.utils.Timer]" text=".addEventListener(%type:String=TimerEvent.TIMER{TimerEvent.TIMER_COMPLETE,TimerEvent.TIMER},listener::Function[,useCapture:Boolean = false,priority:int = 0,useWeakReference:Boolean = false]%):void" tiptext="Dispatched whenever a Timer object reaches an interval specified according to the Timer.delay property." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/utils/Timer.html#event:timer"/>
            </folder>
        </folder>
    </folder>
        <folder name="flash.xml" id="flash.xml" sort="true" tiptext="Classes for package flash.xml" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/package-detail.html">
        <folder name="XMLDocument" id="[flash.xml.XMLDocument]" sort="true" index="true" asAncestors="flash.xml:XMLNode,Object" tiptext="The XMLDocument class represents the legacy XML object that was present in ActionScript 2.0." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLDocument.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class XMLDocument" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLDocument.html">
                <string name="XMLDocument" object="[flash.xml.XMLDocument]" text="new XMLDocument(%[source:String=null]%)" constructor="true" tiptext="Creates a new XMLDocument object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLDocument.html#XMLDocument()"/>
                <string name="createElement" object="[flash.xml.XMLDocument]" text=".createElement(%name:String%):flash.xml:XMLNode" tiptext="Creates a new XMLNode object with the name specified in the parameter." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLDocument.html#createElement()"/>
                <string name="createTextNode" object="[flash.xml.XMLDocument]" text=".createTextNode(%text:String%):flash.xml:XMLNode" tiptext="Creates a new XML text node with the specified text." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLDocument.html#createTextNode()"/>
                <string name="toString" object="[flash.xml.XMLDocument]" text=".toString(%%):String" tiptext="Returns a string representation of the XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLDocument.html#toString()"/>
                <string name="parseXML" object="[flash.xml.XMLDocument]" text=".parseXML(%source:String%):void" tiptext="Parses the XML text specified in the value parameter and populates the specified XMLDocument object with the resulting XML tree." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLDocument.html#parseXML()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class XMLDocument" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLDocument.html">
                <string name="xmlDecl" object="[flash.xml.XMLDocument]" text=".xmlDecl" tiptext="A string that specifies information about a document&apos;s XML declaration." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLDocument.html#xmlDecl"/>
                <string name="docTypeDecl" object="[flash.xml.XMLDocument]" text=".docTypeDecl" tiptext="Specifies information about the XML document&apos;s DOCTYPE declaration." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLDocument.html#docTypeDecl"/>
                <string name="idMap" object="[flash.xml.XMLDocument]" text=".idMap" tiptext="An Object containing the nodes of the XML that have an id attribute assigned." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLDocument.html#idMap"/>
                <string name="ignoreWhite" object="[flash.xml.XMLDocument]" text=".ignoreWhite" tiptext="When set to true, text nodes that contain only white space are discarded during the parsing process." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLDocument.html#ignoreWhite"/>
            </folder>
        </folder>
        <folder name="XMLNode" id="[flash.xml.XMLNode]" sort="true" index="true" asAncestors="Object" tiptext="The XMLNode class represents the legacy XML object that was present in ActionScript 2.0 and that was renamed in ActionScript 3.0." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html">
            <folder name="Methods" id="Methods" tiptext="Methods for class XMLNode" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html">
                <string name="XMLNode" object="[flash.xml.XMLNode]" text="new XMLNode(%type:uint,value:String%)" constructor="true" tiptext="Creates a new XMLNode object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#XMLNode()"/>
                <string name="hasChildNodes" object="[flash.xml.XMLNode]" text=".hasChildNodes(%%):Boolean" tiptext="Indicates whether the specified XMLNode object has child nodes." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#hasChildNodes()"/>
                <string name="cloneNode" object="[flash.xml.XMLNode]" text=".cloneNode(%deep:Boolean%):flash.xml:XMLNode" tiptext="Constructs and returns a new XML node of the same type, name, value, and attributes as the specified XML object." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#cloneNode()"/>
                <string name="removeNode" object="[flash.xml.XMLNode]" text=".removeNode(%%):void" tiptext="Removes the specified XML object from its parent." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#removeNode()"/>
                <string name="insertBefore" object="[flash.xml.XMLNode]" text=".insertBefore(%node:flash.xml:XMLNode,before:flash.xml:XMLNode%):void" tiptext="Inserts a new child node into the XML object&apos;s child list, before the beforeNode node." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#insertBefore()"/>
                <string name="appendChild" object="[flash.xml.XMLNode]" text=".appendChild(%node:flash.xml:XMLNode%):void" tiptext="Appends the specified node to the XML object&apos;s child list." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#appendChild()"/>
                <string name="toString" object="[flash.xml.XMLNode]" text=".toString(%%):String" tiptext="Evaluates the specified XMLNode object, constructs a textual representation of the XML structure, including the node, children, and attributes, and returns the result as a string." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#toString()"/>
                <string name="getNamespaceForPrefix" object="[flash.xml.XMLNode]" text=".getNamespaceForPrefix(%prefix:String%):String" tiptext="Returns the namespace URI that is associated with the specified prefix for the node." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#getNamespaceForPrefix()"/>
                <string name="getPrefixForNamespace" object="[flash.xml.XMLNode]" text=".getPrefixForNamespace(%ns:String%):String" tiptext="Returns the prefix that is associated with the specified namespace URI for the node." version="9 " helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#getPrefixForNamespace()"/>
            </folder>
            <folder name="Properties" id="Properties" tiptext="Properties for class XMLNode" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html">
                <string name="nodeType" object="[flash.xml.XMLNode]" text=".nodeType" tiptext="A nodeType constant value, either XMLNodeType.ELEMENT_NODE for an XML element or XMLNodeType.TEXT_NODE for a text node." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#nodeType"/>
                <string name="previousSibling" object="[flash.xml.XMLNode]" text=".previousSibling" tiptext="An XMLNode value that references the previous sibling in the parent node&apos;s child list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#previousSibling"/>
                <string name="nextSibling" object="[flash.xml.XMLNode]" text=".nextSibling" tiptext="An XMLNode value that references the next sibling in the parent node&apos;s child list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#nextSibling"/>
                <string name="parentNode" object="[flash.xml.XMLNode]" text=".parentNode" tiptext="An XMLNode value that references the parent node of the specified XML object, or returns null if the node has no parent." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#parentNode"/>
                <string name="firstChild" object="[flash.xml.XMLNode]" text=".firstChild" tiptext="Evaluates the specified XMLDocument object and references the first child in the parent node&apos;s child list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#firstChild"/>
                <string name="lastChild" object="[flash.xml.XMLNode]" text=".lastChild" tiptext="An XMLNode value that references the last child in the node&apos;s child list." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#lastChild"/>
                <string name="nodeName" object="[flash.xml.XMLNode]" text=".nodeName" tiptext="A string representing the node name of the XMLNode object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#nodeName"/>
                <string name="nodeValue" object="[flash.xml.XMLNode]" text=".nodeValue" tiptext="The node value of the XMLDocument object." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#nodeValue"/>
                <string name="childNodes" object="[flash.xml.XMLNode]" text=".childNodes" tiptext="An array of the specified XMLNode object&apos;s children." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#childNodes"/>
                <string name="attributes" object="[flash.xml.XMLNode]" text=".attributes" tiptext="An object containing all of the attributes of the specified XMLNode instance." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#attributes"/>
                <string name="localName" object="[flash.xml.XMLNode]" text=".localName" tiptext="The local name portion of the XML node&apos;s name." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#localName"/>
                <string name="prefix" object="[flash.xml.XMLNode]" text=".prefix" tiptext="The prefix portion of the XML node name." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#prefix"/>
                <string name="namespaceURI" object="[flash.xml.XMLNode]" text=".namespaceURI" tiptext="If the XML node has a prefix, namespaceURI is the value of the xmlns declaration for that prefix (the URI), which is typically called the namespace URI." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNode.html#namespaceURI"/>
            </folder>
        </folder>
        <folder name="XMLNodeType" id="[flash.xml.XMLNodeType]" sort="true" index="true" asAncestors="Object" tiptext="The XMLNodeType class contains constants used with XMLNode.nodeType." helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNodeType.html">
            <folder name="Properties" id="Properties" tiptext="Properties for class XMLNodeType" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNodeType.html">
                <string name="ELEMENT_NODE" object="[flash.xml.XMLNodeType]" text="XMLNodeType.ELEMENT_NODE" constant="true" tiptext="Specifies that the node is an element." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNodeType.html#ELEMENT_NODE"/>
                <string name="TEXT_NODE" object="[flash.xml.XMLNodeType]" text="XMLNodeType.TEXT_NODE" constant="true" tiptext="Specifies that the node is a text node." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/flash/xml/XMLNodeType.html#TEXT_NODE"/>
            </folder>
        </folder>
    </folder>
        <folder name="Language Elements" id="Language Elements" sort="true" tiptext="Language elements that perform or specify an action at runtime">
            <folder name="Statements, Keywords &amp; Directives" id="Statements, Keywords &amp; Directives" sort="true" tiptext="Statements to be used in expressions" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html">
                <folder name="statement" id="statement" sort="true" tiptext="Language elements that perform or specify an action at runtime.">
                    <action id="break" name="break" quickey="br" text="break;\n" tiptext="Appears within a loop (for , for..in, for each..in, do..while or while) or within a block of statements associated with a particular case within a switch statement." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#break"/>
                    <action id="case" name="case" quickey="ce" text="case condition :\n" tiptext="Defines a condition for the switch statement." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#case"/>
                    <action id="continue" name="continue" quickey="co" text="continue;\n" tiptext="Jumps past all remaining statements in the innermost loop and starts the next iteration of the loop as if control had passed through to the end of the loop normally." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#continue"/>
                    <action id="default" name="default" quickey="dt" text="default :\n" tiptext="Defines the default case for a switch statement." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#default"/>
                    <action id="do while" name="do..while" quickey="do" text="do {\n} while (% condition %);\n" tiptext="Similar to a while loop, except that the statements are executed once before the initial evaluation of the condition." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#do..while"/>
                    <action id="else" name="else" quickey="el" text="} else {\n" tiptext="Specifies the statements to run if the condition in the if statement returns false." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#else"/>
                    <action id="for" name="for" quickey="fr" text="for (% init; condition; next %) {\n}\n" tiptext="Evaluates the init (initialize) expression once and then starts a looping sequence." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#for"/>
                    <action id="for in" name="for..in" quickey="fi" text="for (% $iterator$ in $object$ %) {\n}\n" tiptext="Iterates over the properties of an object or elements in an array and executes the statement for each property or element." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#for..in"/>
                    <action id="for each in" name="for each..in" text="for each (% $iterator$ in $object$ %) {\n}\n" tiptext="Iterates over the items in a collection." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#for_each..in"/>
                    <action id="if" name="if" quickey="if" text="if (% condition %) {\n}\n" tiptext="Evaluates a condition to determine the next action in a SWF file." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#if"/>
                    <action id="label" name="label" text="" tiptext="Associates a statement with an identifier that can be referenced by break or continue." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#label"/>
                    <action id="return" name="return" quickey="rt" text="return (%%);\n" tiptext="Returns from a function, optionally specifying a return value." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#return"/>
                    <string name="super" text="super" tiptext="Invokes the superclass version of a method or constructor." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#super"/>
                    <action id="switch" name="switch" quickey="sw" text="switch (% condition %) {\n}\n" tiptext="Causes control to transfer to one of several statements, depending on the value of an expression." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#switch"/>
                    <action id="throw" name="throw" quickey="th" text="throw %expression%;\n" tiptext="Generates, or throws , an error that can be handled, or caught , by a catch{} code block." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#throw"/>
                    <ifmode mode="SCRIPT_ASSIST_ON">
                        <action id="try" name="try" quickey="ty" text="try {\n}\n" tiptext="Try a block of code with exception handling" version="7.0" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#try"/>
                    </ifmode>
                    <ifmode mode="SCRIPT_ASSIST_ON">
                        <action id="catch" name="catch" quickey="ch" text="catch (% variable %) {\n}\n" tiptext="Catches an exception" version="7.0" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#catch"/>
                    </ifmode>
                    <ifmode mode="SCRIPT_ASSIST_ON">
                        <action id="finally" name="finally" quickey="fy" text="finally {\n}\n" tiptext="Executes code after exception handling" version="7.0" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#finally"/>
                    </ifmode>
                    <ifmode mode="SCRIPT_ASSIST_OFF">
                        <string name="try..catch..finally" text="try {\n}\ncatch (% variable %) {\n}\nfinally {\n}\n" tiptext="Enclose a block of code in which an error can occur, and then respond to the error." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#try..catch..finally"/>
                    </ifmode>
                    <ifmode mode="SCRIPT_ASSIST_ON">
                        <action id="evaluate" name="evaluate" quickey="ev" text="" tiptext="Evaluates an arbitrary expression" version="7.0" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#evaluate"/>
                    </ifmode>
                    <action id="while" name="while" quickey="wh" text="while (% condition %) {\n}\n" tiptext="Evaluates a condition and if the condition evaluates to true , executes a statement or series of statements before looping back to evaluate the condition again." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#while"/>
                    <action id="with" name="with" quickey="wt" text="with (% object %) {\n}\n" tiptext="Establishes a default object to be used for the execution of a statement or statements." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#with"/>
                </folder>
                <folder name="definition keyword" id="definition keyword" sort="true" tiptext="Used to define entities such as variables, functions, classes, and interfaces.">
                    <action id="class" name="class" quickey="cl" text="class %name% {\n}\n" tiptext="Defines a class, which lets you instantiate objects that share methods and properties that you define." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#class"/>
                    <string name="extends" text="extends" tiptext="Defines a class that is a subclass of another class." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#extends"/>
                    <action id="function" name="function" quickey="fn" text="function %name% () {\n}\n" tiptext="Comprises a set of statements that you define to perform a certain task." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#function"/>
                    <string name="get" text="get" tiptext="Defines a read accessor, a method which can be read like a property." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#get"/>
                    <string name="implements" text="implements" tiptext="Specifies that a class must define all the methods declared in the interface (or interfaces) being implemented." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#implements"/>
                    <action id="interface" name="interface" text="interface" tiptext="Defines an interface." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#interface"/>
                    <string name="package" text="package" tiptext="Allows you to organize your code into discrete groups that can be imported by other scripts." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#package"/>
                    <string name="namespace" text="namespace" tiptext="Allows you to control the visibility of definitions." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#namespace"/>
                    <string name="... (rest) parameter" text="..." tiptext="Specifies that a function will accept any number of comma-delimited arguments." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#..._(rest)_parameter"/>
                    <string name="set" text="set" tiptext="Defines a setter, which is a method that appears in the public interface as a property." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#set"/>
                    <string name="const" text="const" tiptext="Specifies a constant, which is a variable that can only be assigned a value once." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#const"/>
                    <action id="var" name="var" quickey="vr" text="var %%;\n" tiptext="Specifies a variable." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#var"/>
                </folder>
                <folder name="directive" id="directive" sort="true" tiptext="Statements and definitions that can have an effect at compile time or runtime.">
                    <string name="default xml namespace" text="default xml namespace" tiptext="The default xml namespace statement sets the default namespace to use for XML objects." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#default_xml_namespace"/>
                    <action id="import" name="import" text="import" tiptext="Makes classes and packages available to your code." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#import"/>
                    <action id="include" name="include" text="include" tiptext="Includes the contents of the specified file, as if the commands in the file are part of the calling script." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#include"/>
                    <string name="use namespace" text="use namespace" tiptext="Causes the specified namespaces to be added to the set of open namespaces." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#use_namespace"/>
                </folder>
                <folder name="attribute keyword" id="attribute keyword" sort="true" tiptext="Used to alter the meaning of definitions, and can be applied to class, variable, function, and namespace definitions.">
                    <string name="dynamic" text="dynamic" tiptext="Specifies that instances of a class may possess dynamic properties added at runtime." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#dynamic"/>
                    <string name="private" text="private" tiptext="Specifies that a variable, constant, method or namespace is available only to the class that declares or defines it." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#private"/>
                    <string name="protected" text="protected" tiptext="Specifies that a variable, constant or method is available only to the class that declares or defines it or to subclasses of that class." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#protected"/>
                    <string name="native" text="native" tiptext="Specifies that a function or method is implemented by Flash Player in native code." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#native"/>
                    <string name="internal" text="internal" tiptext="Specifies that a class, variable, constant or function is available to any caller within the same package." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#internal"/>
                    <string name="override" text="override" tiptext="Specifies that a method replaces (shadows) an inherited method." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#override"/>
                    <string name="final" text="final" tiptext="Specifies that a method cannot be overridden." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#final"/>
                    <string name="public" text="public" tiptext="Specifies that a class, variable, constant or method is available to any caller." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#public"/>
                    <string name="static" text="static" tiptext="Specifies that a variable, constant or method belongs to the class, as opposed to instances of the class." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#static"/>
                </folder>
                <folder name="primary expression keyword" id="primary expression keyword" sort="true" tiptext="Used to represent literal values.">
                    <string name="this" text="this" tiptext="A reference to a method&apos;s containing object." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#this"/>
                    <string name="false" text="false" tiptext="A Boolean value representing false." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#false"/>
                    <string name="null" text="null" tiptext="A special value that can be assigned to variables or returned by a function if no data was provided." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#null"/>
                    <string name="true" text="true" tiptext="A Boolean value representing true." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#true"/>
                </folder>
                <folder name="namespace" id="namespace" sort="true" tiptext="A context for identifiers.">
                    <string name="AS3" text="" tiptext="Defines methods and properties of the core ActionScript classes that are fixed properties instead of prototype properties." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#AS3"/>
                    <string name="flash_proxy" text="" tiptext="Defines methods of the Proxy class." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#flash_proxy"/>
                    <string name="object_proxy" text="" tiptext="Defines methods of the ObjectProxy class." version="" helpurl="HelpPanel/Help/ActionScriptLangRefV3/statements.html#object_proxy"/>
                </folder>
            </folder>
            <folder name="Operators" tiptext="Symbolic operators used to combine, compare, or midify values" sort="true" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html">
                <folder name="other" sort="false" tiptext="Miscellaneous operators">
                    <string name="[] (array access)" text="[]" tiptext="Initializes a new array or multidimensional array with the specified elements (a0, and so on), or accesses elements in an array." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#array_access"/>
                    <string name="as" text="as" tiptext="Checks whether expression is compatible with data type datatype." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#as"/>
                    <string name=", (comma)" text="," tiptext="Evaluates expression1, then expression2, and so on." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#comma"/>
                    <string name="?: (conditional)" text="?:" tiptext="Instructs Flash to evaluate expression1, and if the value of  expression1 is true, it returns the value of expression2 ; otherwise it returns the value of expression3." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#conditional"/>
                    <string name="delete" text="delete" tiptext="Destroys the object reference specified by the reference parameter, and returns true if the reference is successfully deleted; false otherwise." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#delete"/>
                    <string name=". (dot)" text="." tiptext="Used to navigate movie clip hierarchies to access nested (child) movie clips, variables, or properties." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#dot"/>
                    <string name="in" text="in" tiptext="Checks whether expression1 is a property of expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#in"/>
                    <string name="instanceof" text="instanceof" tiptext="Evaluates whether an object belongs to a specific class." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#instanceof"/>
                    <string name="is" text="is" tiptext="Checks whether expression1 is compatible with data type expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#is"/>
                    <string name=":: (name qualifier)" text="::" tiptext="Used to identify the namespace of a property, a method, an XML property, or an XML attribute." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#name_qualifier"/>
                    <string name="new" text="new" tiptext="Creates a new, initially anonymous, object and calls the function identified by the constructor parameter." version="5" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#new"/>
                    <string name="{} (object initializer)" text="{}" tiptext="Creates a new object and initializes it with the specified name and value property pairs." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#object_initializer"/>
                    <string name="() (parentheses)" text="()" tiptext="Performs a grouping operation on one or more parameters, performs sequential evaluation of expressions, or surrounds one or more parameters and passes them as parameters to a function outside the parentheses." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#parentheses"/>
                    <string name="/ (RegExp delimiter)" text="/" tiptext="When used before and after characters, the forward slash character (/) define a regular expression literal." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#RegExp_delimiter"/>
                    <string name=": (type)" text=":" tiptext="Used for strict data typing; this operator specifies the variable type, function return type, or function parameter type." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#type"/>
                    <string name="typeof" text="typeof" tiptext="Evaluate the expression and returns a string specifying its type." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#typeof"/>
                    <string name="void" text="void" tiptext="The void operator evaluates an expression and then discards its value, returning an undefined value." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#void"/>
                </folder>
                <folder name="logical" sort="false" tiptext="logical operators">
                    <string name="&amp;&amp; (logical AND)" text="&amp;&amp;" tiptext="Performs a Boolean operation on the values of one or both of the expressions." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#logical_AND"/>
                    <string name="! (logical NOT)" text="!" tiptext="Inverts the Boolean value of a variable or expression." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#logical_NOT"/>
                    <string name="|| (logical OR)" text="||" tiptext="Evaluates expression1 (the expression on the left side of the operator) and returns true if the expression evaluates to true." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#logical_OR"/>
                </folder>
                <folder name="comparison" sort="false" tiptext="comparison operators">
                    <string name="== (equality)" text="==" tiptext="Tests two expressions for equality." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#equality"/>
                    <string name="&gt; (greater than)" text="&gt;" tiptext="Compares two expressions and determines whether expression1 is greater than expression2 ; if it is, the operator returns true." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#greater_than"/>
                    <string name="&gt;= (greater than or equal to)" text="&gt;=" tiptext="Compares two expressions and determines whether expression1 is greater than or equal to expression2 ; if it is, the operator returns true." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#greater_than_or_equal_to"/>
                    <string name="!= (inequality)" text="!=" tiptext="Tests for the exact opposite of the equality (==) operator." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#inequality"/>
                    <string name="&lt; (less than)" text="&lt;" tiptext="Compares two expressions and determines whether expression1 is less than expression2 ; if so, the operator returns true." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#less_than"/>
                    <string name="&lt;= (less than or equal to)" text="&lt;=" tiptext="Compares two expressions and determines whether expression1 is less than or equal to expression2 ; if it is, the operator returns true." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#less_than_or_equal_to"/>
                    <string name="=== (strict equality)" text="===" tiptext="Tests two expressions for equality; the strict equality (===) operator performs in the same way as the equality (==) operator, except that data types are not converted." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#strict_equality"/>
                    <string name="!== (strict inequality)" text="!==" tiptext="Tests for the exact opposite of the strict equality (===) operator." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#strict_inequality"/>
                </folder>
                <folder name="comment" sort="false" tiptext="comment operators">
                    <action id="comment" name="/*..*/ (block comment delimiter)" text="/* %% */\n" tiptext="Indicates one or more lines of script comments." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#block_comment_delimiter"/>
                    <action id="comment" quickey="//" name="// (line comment delimiter)" text="// %%\n" tiptext="Indicates the beginning of a script comment." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#line_comment_delimiter"/>
                </folder>
                <folder name="arithmetic" sort="false" tiptext="arithmetic operators">
                    <string name="+ (addition)" text="+" tiptext="Adds numeric expressions." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#addition"/>
                    <string name="-- (decrement)" text="--" tiptext="A pre-decrement and post-decrement unary operator that subtracts 1 from the expression." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#decrement"/>
                    <string name="/ (division)" text="/" tiptext="Divides expression1 by expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#division"/>
                    <string name="++ (increment)" text="++" tiptext="A pre-increment and post-increment unary operator that adds 1 to  expression ." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#increment"/>
                    <string name="% (modulo)" text="%" tiptext="Calculates the remainder of expression1 divided by  expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#modulo"/>
                    <string name="* (multiplication)" text="*" tiptext="Multiplies two numerical expressions." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#multiplication"/>
                    <string name="- (subtraction)" text="-" tiptext="Used for negating or subtracting." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#subtraction"/>
                </folder>
                <folder name="arithmetic compound assignment" sort="false" tiptext="compound arithmetic operators">
                    <string name="+= (addition assignment)" text="+=" tiptext="Assigns expression1 the value of  expression1 + expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#addition_assignment"/>
                    <string name="/= (division assignment)" text="/=" tiptext="Assigns expression1 the value of  expression1 / expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#division_assignment"/>
                    <string name="%= (modulo assignment)" text="%=" tiptext="Assigns expression1 the value of  expression1 % expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#modulo_assignment"/>
                    <string name="*= (multiplication assignment)" text="*=" tiptext="Operator (arithmetic compound assignment); assigns expression1 the value of  expression1 * expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#multiplication_assignment"/>
                    <string name="-= (subtraction assignment)" text="-=" tiptext="Assigns expression1 the value of  expression1 - expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#subtraction_assignment"/>
                </folder>
                <folder name="bitwise" sort="false" tiptext="bitwise operators">
                    <string name="&amp; (bitwise AND)" text="&amp;" tiptext="Converts expression1 and  expression2 to 32-bit unsigned integers, and performs a Boolean AND operation on each bit of the integer parameters." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_AND"/>
                    <string name="&lt;&lt; (bitwise left shift)" text="&lt;&lt;" tiptext="Converts expression1 and expression2 to 32-bit integers, and shifts all the bits in expression1 to the left by the number of places specified by the integer resulting from the conversion of expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_left_shift"/>
                    <string name="~ (bitwise NOT)" text="~" tiptext="Also known as the one&apos;s complement operator or the bitwise complement operator." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_NOT"/>
                    <string name="| (bitwise OR)" text="|" tiptext="Converts expression1 and expression2 to 32-bit unsigned integers, and places a 1 in each bit position where the corresponding bits of either  expression1 or expression2 are 1." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_OR"/>
                    <string name="&gt;&gt; (bitwise right shift)" text="&gt;&gt;" tiptext="Converts expression1 and expression2 to 32-bit integers, and shifts all the bits in expression1 to the right by the number of places specified by the integer that results from the conversion of expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_right_shift"/>
                    <string name="&gt;&gt;&gt; (bitwise unsigned right shift)" text="&gt;&gt;&gt;" tiptext="The same as the bitwise right shift (&amp;gt;&amp;gt;) operator except that it does not preserve the sign of the original expression because the bits on the left are always filled with 0." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_unsigned_right_shift"/>
                    <string name="^ (bitwise XOR)" text="^" tiptext="Converts expression1 and expression2 to 32-bit unsigned integers, and returns a 1 in each bit position where the corresponding bits in expression1 or expression2, but not both, are 1." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_XOR"/>
                </folder>
                <folder name="bitwise compound assignment" sort="false" tiptext="compound bitwise operators">
                    <string name="&amp;= (bitwise AND assignment)" text="&amp;=" tiptext="Assigns expression1 the value of expression1 &amp;amp; expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_AND_assignment"/>
                    <string name="&lt;&lt;= (bitwise left shift and assignment)" text="&lt;&lt;=" tiptext="This operator performs a bitwise left shift (&amp;lt;&amp;lt;=) operation and stores the contents as a result in expression1." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_left_shift_and_assignment"/>
                    <string name="|= (bitwise OR assignment)" text="|=" tiptext="Assigns expression1 the value of  expression1 | expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_OR_assignment"/>
                    <string name="&gt;&gt;= (bitwise right shift and assignment)" text="&gt;&gt;=" tiptext="This operator performs a bitwise right-shift operation and stores the contents as a result in expression1." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_right_shift_and_assignment"/>
                    <string name="&gt;&gt;&gt;= (bitwise unsigned right shift and assignment)" text="&gt;&gt;&gt;=" tiptext="Performs an unsigned bitwise right-shift operation and stores the contents as a result in expression1." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_unsigned_right_shift_and_assignment"/>
                    <string name="^= (bitwise XOR assignment)" text="^=" tiptext="Assigns expression1 the value of  expression1 ^ expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#bitwise_XOR_assignment"/>
                </folder>
                <folder name="string" sort="false" tiptext="string operators">
                    <string name="+ (concatenation)" text="+" tiptext="Concatenates (combines) strings." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#concatenation"/>
                    <string name="+= (concatenation assignment)" text="+=" tiptext="Assigns expression1 the value of  expression1 + expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#concatenation_assignment"/>
                    <string name="&quot; (string delimiter)" text="&quot;" tiptext="When used before and after characters, quotation marks (&quot;) indicate that the characters have a literal value." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#string_delimiter"/>
                </folder>
                <folder name="assignment" sort="false" tiptext="assignment operators">
                    <string name="= (assignment)" text="=" tiptext="Assigns the value of expression2 (the parameter on the right) to the variable, array element, or property in expression1." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#assignment"/>
                </folder>
                <folder name="XML" sort="false" tiptext="XML operators">
                    <string name="@ (attribute identifier)" text="@" tiptext="Use the XML @ (at sign) operator to identify attributes of an XML or XMLList object." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#attribute_identifier"/>
                    <string name="{ } (braces (XML))" text="{ }" tiptext="Use the XML { and } operators to pass data by reference (from other variables) into an XML or XMLList literal." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#braces_(XML)"/>
                    <string name="[ ] (brackets (XML))" text="[ ]" tiptext="Accesses a property or attribute of an XML or XMLList object." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#brackets_(XML)"/>
                    <string name="+ (concatenation (XMLList))" text="+" tiptext="Use the XML + (concatenation) operator to concatenate XMLList objects." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#concatenation_(XMLList)"/>
                    <string name="+= (concatenation assignment (XMLList))" text="+=" tiptext="Assigns expression1, which is an XMLList object, the value of expression1 + expression2." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#concatenation_assignment_(XMLList)"/>
                    <string name="delete (XML)" text="delete (XML)" tiptext="Deletes the XML elements or attributes specified." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#delete_(XML)"/>
                    <string name=".. (descendant accessor)" text=".." tiptext="Use the XML descendant accessor (..) operator to navigate to descendant elements of an XML or XMLList object, or (combined with the @ operator) to return attributes descendants." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#descendant_accessor"/>
                    <string name=". (dot (XML))" text="." tiptext="Navigates to child elements of an XML or XMLList object, or (combined with the @ operator) returns attributes of an XML or XMLList object." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#dot_(XML)"/>
                    <string name="( ) (parentheses (XML))" text="( )" tiptext="Use the ( and ) operators to evaluate an expression in an E4X XML construct." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#parentheses_(XML)"/>
                    <string name="&lt; &gt; (XML literal tag delimiter)" text="&lt; &gt;" tiptext="Use the &amp;lt; and &amp;gt; operators to define an XML tag in an XML literal." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/operators.html#XML_literal_tag_delimiter"/>
                </folder>
            </folder>
            <folder name="Special Types" tiptext="Special Types for strong typing" sort="true" helpurl="HelpPanel/Help/ActionScriptLangRefV3/specialTypes.html#">
                <string name="*" text="*" tiptext="Specifies that a property is untyped." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/specialTypes.html#*"/>
                <string name="void" text="void" object="void" tiptext="Specifies that a function cannot return any value." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/specialTypes.html#void"/>
                <string name="Null" text="Null" object="Null" tiptext="A special data type that represents the lack of a value." version="9" helpurl="HelpPanel/Help/ActionScriptLangRefV3/specialTypes.html#Null"/>
            </folder>
        </folder>
    </actionspanel>
    <codehints>
        <package name="adobe.utils" children="CustomActions,XMLUI,MMExecute"/>
        <package name="fl.accessibility" children="AccImpl,ButtonAccImpl,CheckBoxAccImpl,ComboBoxAccImpl,DataGridAccImpl,LabelButtonAccImpl,ListAccImpl,RadioButtonAccImpl,SelectableListAccImpl,TileListAccImpl,UIComponentAccImpl"/>
        <package name="fl.containers" children="BaseScrollPane,ScrollPane,UILoader"/>
        <package name="fl.controls" children="BaseButton,Button,ButtonLabelPlacement,CheckBox,ColorPicker,ComboBox,DataGrid,Label,LabelButton,List,NumericStepper,ProgressBar,ProgressBarDirection,ProgressBarMode,RadioButton,RadioButtonGroup,ScrollBar,ScrollBarDirection,ScrollPolicy,SelectableList,Slider,SliderDirection,TextArea,TextInput,TileList,UIScrollBar"/>
        <package name="fl.controls.dataGridClasses" children="DataGridCellEditor,DataGridColumn,HeaderRenderer"/>
        <package name="fl.controls.listClasses" children="CellRenderer,ICellRenderer,ImageCell,ListData,TileListData"/>
        <package name="fl.controls.progressBarClasses" children="IndeterminateBar"/>
        <package name="fl.core" children="InvalidationType,UIComponent"/>
        <package name="fl.data" children="DataProvider,SimpleCollectionItem,TileListCollectionItem"/>
        <package name="fl.events" children="ColorPickerEvent,ComponentEvent,DataChangeEvent,DataChangeType,DataGridEvent,DataGridEventReason,InteractionInputType,ListEvent,ScrollEvent,SliderEvent,SliderEventClickTarget"/>
        <package name="fl.lang" children="Locale"/>
        <package name="fl.livepreview" children="LivePreviewParent"/>
        <package name="fl.managers" children="FocusManager,IFocusManager,IFocusManagerComponent,IFocusManagerGroup,StyleManager"/>
        <package name="fl.motion" children="Animator,BezierEase,BezierSegment,Color,CustomEase,FunctionEase,ITween,Keyframe,MatrixTransformer,Motion,MotionEvent,RotateDirection,SimpleEase,Source,Tweenables"/>
        <package name="fl.motion.easing" children="Back,Bounce,Circular,Cubic,Elastic,Exponential,Linear,Quadratic,Quartic,Quintic,Sine"/>
        <package name="fl.transitions" children="Blinds,Fade,Fly,Iris,Photo,PixelDissolve,Rotate,Squeeze,Transition,TransitionManager,Tween,TweenEvent,Wipe,Zoom"/>
        <package name="fl.transitions.easing" children="Back,Bounce,Elastic,None,Regular,Strong"/>
        <package name="fl.video" children="AutoLayoutEvent,CaptionChangeEvent,CaptionTargetEvent,CuePointType,FLVPlayback,FLVPlaybackCaptioning,INCManager,IVPEvent,LayoutEvent,MetadataEvent,NCManager,NCManagerNative,SkinErrorEvent,SoundEvent,VideoAlign,VideoError,VideoEvent,VideoPlayer,VideoProgressEvent,VideoScaleMode,VideoState"/>
        <package name="flash.accessibility" children="Accessibility,AccessibilityProperties"/>
        <package name="flash.display" children="ActionScriptVersion,AVM1Movie,Bitmap,BitmapData,BitmapDataChannel,BlendMode,CapsStyle,DisplayObject,DisplayObjectContainer,FrameLabel,GradientType,Graphics,IBitmapDrawable,InteractiveObject,InterpolationMethod,JointStyle,LineScaleMode,Loader,LoaderInfo,MorphShape,MovieClip,PixelSnapping,Scene,Shape,SimpleButton,SpreadMethod,Sprite,Stage,StageAlign,StageDisplayState,StageQuality,StageScaleMode,SWFVersion"/>
        <package name="flash.errors" children="EOFError,IllegalOperationError,InvalidSWFError,IOError,MemoryError,ScriptTimeoutError,StackOverflowError"/>
        <package name="flash.events" children="ActivityEvent,AsyncErrorEvent,ContextMenuEvent,DataEvent,ErrorEvent,Event,EventDispatcher,EventPhase,FocusEvent,FullScreenEvent,HTTPStatusEvent,IEventDispatcher,IMEEvent,IOErrorEvent,KeyboardEvent,MouseEvent,NetStatusEvent,ProgressEvent,SecurityErrorEvent,StatusEvent,SyncEvent,TextEvent,TimerEvent"/>
        <package name="flash.external" children="ExternalInterface"/>
        <package name="flash.filters" children="BevelFilter,BitmapFilter,BitmapFilterQuality,BitmapFilterType,BlurFilter,ColorMatrixFilter,ConvolutionFilter,DisplacementMapFilter,DisplacementMapFilterMode,DropShadowFilter,GlowFilter,GradientBevelFilter,GradientGlowFilter"/>
        <package name="flash.geom" children="ColorTransform,Matrix,Point,Rectangle,Transform"/>
        <package name="flash.media" children="Camera,ID3Info,Microphone,Sound,SoundChannel,SoundLoaderContext,SoundMixer,SoundTransform,Video"/>
        <package name="flash.net" children="FileFilter,FileReference,FileReferenceList,IDynamicPropertyOutput,IDynamicPropertyWriter,LocalConnection,NetConnection,NetStream,ObjectEncoding,Responder,SharedObject,SharedObjectFlushStatus,Socket,URLLoader,URLLoaderDataFormat,URLRequest,URLRequestHeader,URLRequestMethod,URLStream,URLVariables,XMLSocket,registerClassAlias,getClassByAlias,navigateToURL,sendToURL"/>
        <package name="flash.printing" children="PrintJob,PrintJobOptions,PrintJobOrientation"/>
        <package name="flash.profiler" children="showRedrawRegions"/>
        <package name="flash.system" children="ApplicationDomain,Capabilities,IME,IMEConversionMode,LoaderContext,Security,SecurityDomain,SecurityPanel,System,fscommand"/>
        <package name="flash.text" children="AntiAliasType,CSMSettings,Font,FontStyle,FontType,GridFitType,StaticText,StyleSheet,TextColorType,TextDisplayMode,TextField,TextFieldAutoSize,TextFieldType,TextFormat,TextFormatAlign,TextLineMetrics,TextRenderer,TextSnapshot"/>
        <package name="flash.ui" children="ContextMenu,ContextMenuBuiltInItems,ContextMenuItem,Keyboard,KeyLocation,Mouse"/>
        <package name="flash.utils" children="ByteArray,Dictionary,Endian,IDataInput,IDataOutput,IExternalizable,Proxy,Timer,describeType,getQualifiedClassName,getDefinitionByName,getQualifiedSuperclassName,getTimer,escapeMultiByte,unescapeMultiByte,setInterval,setTimeout,clearInterval,clearTimeout"/>
        <package name="flash.xml" children="XMLDocument,XMLNode,XMLNodeType"/>
        <typeinfo pattern="*_mc" object="flash.display.MovieClip"/>
        <typeinfo pattern="*_array" object="Array"/>
        <typeinfo pattern="*_str" object="String"/>
        <typeinfo pattern="*_btn" object="fl.controls.Button"/>
        <typeinfo pattern="*_txt" object="flash.text.TextField"/>
        <typeinfo pattern="*_fmt" object="flash.text.TextFormat"/>
        <typeinfo pattern="*_date" object="Date"/>
        <typeinfo pattern="*_sound" object="flash.media.Sound"/>
        <typeinfo pattern="*_xml" object="XML"/>
        <typeinfo pattern="*_xmlnode" object="flash.xml.XMLNode"/>
        <typeinfo pattern="*_xmlsocket" object="flash.net.XMLSocket"/>
        <typeinfo pattern="*_color" object="fl.motion.Color"/>
        <typeinfo pattern="*_cm" object="flash.ui.ContextMenu"/>
        <typeinfo pattern="*_cmi" object="flash.ui.ContextMenuItem"/>
        <typeinfo pattern="*_pj" object="flash.printing.PrintJob"/>
        <typeinfo pattern="*_err" object="Error"/>
        <typeinfo pattern="*_cam" object="flash.media.Camera"/>
        <typeinfo pattern="*_lc" object="flash.net.LocalConnection"/>
        <typeinfo pattern="*_mic" object="flash.media.Microphone"/>
        <typeinfo pattern="*_nc" object="flash.net.NetConnection"/>
        <typeinfo pattern="*_ns" object="flash.net.NetStream"/>
        <typeinfo pattern="*_so" object="flash.net.SharedObject"/>
        <typeinfo pattern="*_video" object="flash.media.Video"/>
    </codehints>
</toolbox>
