<?xml version="1.0"?>
<actionspanel>
  <folder name="Actions" id="Actions" sort="false" tiptext="Actions that can be added to your script" helpid="2202">
    <folder name="Movie Control" id="Movie Control" tiptext="Actions which control movie playback" helpid="2615">
      <ifmode mode="normal">
        <action id="goto" name="goto" tiptext="Go to the specified frame of the movie" helpid="2349" quickey="go" />
      </ifmode>
      <ifmode mode="expert">
        <action name="gotoAndPlay" tiptext="Go to the specified frame and play" helpid="2350"
                text="gotoAndPlay(% frame %);\n"
                text2="gotoAndPlay(% scene, frame %);\n"
                quickey="gp" />
        <action name="gotoAndStop" tiptext="Go to the specified frame and stop" helpid="2351"
                text="gotoAndStop(% frame %);\n"
                text2="gotoAndStop(% scene, frame %);\n"
                quickey="gs" />
        <action name="nextFrame" tiptext="Go to the next frame" helpid="2424" text="nextFrame();\n" quickey="nf" />
        <action name="prevFrame" tiptext="Go to the previous frame" helpid="2453" text="prevFrame();\n" quickey="pf" />
        <action name="nextScene" tiptext="Go to the next scene" helpid="2425" text="nextScene();\n" quickey="ns" />
        <action name="prevScene" tiptext="Go to the previous scene" helpid="2454" text="prevScene();\n" quickey="ps" />
      </ifmode>
      <action id="play" name="play" tiptext="Start playing the movie" helpid="2449" text="play();\n" quickey="pl" />
      <action id="stop" name="stop" tiptext="Stop playing the movie" helpid="2486" text="stop();\n" quickey="st" />
      <action id="stopAllSounds" name="stopAllSounds" tiptext="Stop playing all sounds" helpid="2487" text="stopAllSounds();\n" quickey="ss" />
      <action id="on" name="on" tiptext="Performs actions when a particular mouse event occurs" helpid="2438"
              text="on (% event %) {\n}\n"
              codehint="false"
              quickey="on" version="3" />
    </folder>
    <folder name="Browser/Network" id="Browser_Network" tiptext="Actions which control the Web browser and network" helpid="2616">
      <action id="getURL" name="getURL" tiptext="Tell Web browser to navigate to specified URL" helpid="2345" text="getURL(% url, window, method %);\n" quickey="gu" />
      <ifmode mode="normal">
        <action id="loadMovie" name="loadMovie" tiptext="Load a movie clip from an URL" helpid="2389"  quickey="lm" version="3" />
        <action id="unloadMovie" name="unloadMovie" tiptext="Unload a movie clip loaded with loadMovie" helpid="2527"  quickey="um" version="3" />
        <action id="loadVariables" name="loadVariables" tiptext="Load variables from an URL" helpid="2390"  quickey="lv" version="4" />
      </ifmode>
      <ifmode mode="expert">
        <action name="loadMovie" tiptext="Load a movie clip from an URL" helpid="2389" text="loadMovie(% url, target, method %);\n" quickey="lm" version="3" />
        <action name="loadMovieNum" tiptext="Load a movie clip from an URL into a level" helpid="2598" text="loadMovieNum(% url, level, method %);\n" quickey="ln" version="3" />
        <action name="loadVariables" tiptext="Load variables from an URL" helpid="2390" text="loadVariables(% url, target, method %);\n" quickey="lv" version="4" />
        <action name="loadVariablesNum" tiptext="Load variables from an URL into a level" helpid="2597" text="loadVariablesNum(% url, level, method %);\n" quickey="vn" version="4" />
        <action name="unloadMovie" tiptext="Unload a movie clip loaded with loadMovie" helpid="2527" text="unloadMovie(% target %);\n" quickey="um" version="3" />
        <action name="unloadMovieNum" tiptext="Unload a movie clip loaded with loadMovieNum" helpid="2599" text="unloadMovieNum(% level %);\n" quickey="un" version="3" />
      </ifmode>
      <action id="FSCommand" name="fscommand" tiptext="Sends FSCommand to movie's container" helpid="2337" text="fscommand(% command, parameters %);\n" quickey="fs" version="3" />
    </folder>
    <folder name="Movie Clip Control" id="Movie Clip Control" tiptext="Actions which control Movie Clips" helpid="2617">
      <action id="onClipEvent" name="onClipEvent" tiptext="Performs actions when a particular movie clip event occurs" helpid="2439"
              text="onClipEvent (% event %) {\n}\n"
              codehint="false"
              quickey="oc" version="5" />
      <action id="setProperty" name="setProperty" tiptext="Set a property of a movie clip" helpid="2475" text="setProperty(% target, property, value %);\n" quickey="sp" version="4" />
      <action id="duplicateMovieClip" name="duplicateMovieClip" tiptext="Make a duplicate of a movie clip" helpid="2264" text="duplicateMovieClip(% target, newname, depth %);\n" quickey="dm" version="4" />
      <action id="removeMovieClip" name="removeMovieClip" tiptext="Removes a movie clip created with duplicateMovieClip" helpid="2460" text="removeMovieClip(% target %);\n" quickey="rm" version="4" />
      <action id="startDrag" name="startDrag" tiptext="Start a drag operation on a movie clip" helpid="2485" text="startDrag(% target, lockcenter, l, t, r, b %);\n" quickey="dr" version="4" />
      <action id="stopDrag" name="stopDrag" tiptext="Stops a drag operation currently in progress" helpid="2488" text="stopDrag();\n" quickey="sd" version="4" />
      <string name="updateAfterEvent" tiptext='Updates the stage after "mouse" or "key" clip events' helpid="2581" text="updateAfterEvent()" type="procedure" version="5" />
    </folder>
    <folder name="Variables" id="Variables" tiptext="Actions that modify and access variables" helpid="2618">
      <action id="set variable" name="set variable" tiptext="Set a variable" helpid="2476" text="set (% name, value %);\n" quickey="sv" version="4" />
      <action id="with" name="with" tiptext="Actions within with operate on the specified object" helpid="2534" text="with (% object %) {\n}\n" quickey="wt" version="5" />
      <action id="delete" name="delete" tiptext="Delete a variable or object" helpid="2321" text="delete (% path %);\n" quickey="de" version="5" />
      <action id="var" name="var" tiptext="Declares local variables" helpid="2529" text="var %%;\n" quickey="vr" version="5" />
    </folder>
    <folder name="Conditions/Loops" id="Conditions_Loops" tiptext="Conditional statements and loop constructs" helpid="2619">
      <action id="if" name="if" tiptext="Performs actions if a condition is true" helpid="2356" text="if (% condition %) {\n}\n" quickey="if" version="4" />
      <action id="else" name="else" tiptext="Inside if, perform actions if condition is false" helpid="2325" text="} else {\n" quickey="el" version="4" />
      <action id="else if" name="else if" tiptext="Inside if, perform actions if alternate condition is true" helpid="2326" text="} else if (% condition %) {\n" quickey="ei" version="4" />
      <action id="while" name="while" tiptext="Perform actions while the condition is true." helpid="2532" text="while (% condition %) {\n}\n" quickey="wh" version="4" />
      <action id="do while" name="do while" tiptext="Do While Loop" helpid="2323" text="do {\n} while (% condition %);\n" quickey="do" version="4" />
      <action id="for" name="for" tiptext="For Loop" helpid="2335" text="for (% init; condition; next %) {\n}\n" quickey="fr" version="4" />
      <action id="for in" name="for..in" tiptext="Enumerates the children of an object" helpid="2336" text="for (% $iterator$ in $object$ %) {\n}\n" quickey="fi" version="5" />
      <action id="break" name="break" tiptext="Break out of the enclosing loop" helpid="2244" text="break;\n" quickey="br" version="4" />
      <action id="continue" name="continue" tiptext="Continue at the start of the enclosing loop" helpid="2275" text="continue;\n" quickey="co" version="4" />
      <ifdef mode="FEATURE_SWITCH_AND_STRICT_EQUALITY">
        <action id="switch" name="switch" tiptext="Performs a block of code based on a condition" helpid="2606" text="switch (% condition %) {\n}\n" quickey="sw" version="4" />
        <action id="case" name="case" tiptext="Identifies a block of code inside a 'switch' statement" helpid="2607" text="case condition :\n" quickey="ce" version="4" />
        <action id="default" name="default" tiptext="Identifies the default block of code in a 'switch' statement" helpid="2608" text="default :\n" quickey="dt" version="4" />
      </ifdef>
    </folder>
    <folder name="Printing" id="Printing" tiptext="Actions that print movies or movie clips" helpid="2622">
      <action id="print" name="print" tiptext="Print a movie clip" helpid="2455" text="print(% target, type %);\n" quickey="pr" version="4" />
      <ifmode mode="expert">
        <action name="printAsBitmap" tiptext="Prints a movie clip as a bitmap" helpid="2456" text="printAsBitmap(% target, type %);\n" quickey="pb" version="4" />
        <action name="printNum" tiptext="Print a level" helpid="2600" text="printNum(% level, type %);\n" quickey="pn" version="4" />
        <action name="printAsBitmapNum" tiptext="Prints a level as a bitmap" helpid="2601" text="printAsBitmapNum(% level, type %);\n" quickey="bn" version="4" /> 
      </ifmode>
    </folder>
    <folder name="User-Defined Functions" id="User-Defined Functions" tiptext="Actions that create and invoke functions" helpid="2620">
      <action id="function" name="function" tiptext="Declares a user-defined function" helpid="2338" text="function %name% () {\n}\n" quickey="fn" version="5" />
	  <ifmode mode="normal">
	    <action id="method"
		        name="method"
				tiptext="Declare a method of an object"
				helpid="2890"
				quickey="md"
				version="5" />
        <action id="call function"
                name="call function"
                tiptext="Call a user-defined function or method"
                helpid="2892"
                quickey="cf"
                version="5" />
	  </ifmode>
      <action id="return" name="return" tiptext="Returns a value from a function" helpid="2461" text="return (%%);\n" quickey="rt" version="5" />
      <action id="call" name="call" tiptext="Call a subroutine in a specified frame" helpid="2245" text="call (% frame %);\n" quickey="ca" version="4" />
    </folder>
    <folder name="Miscellaneous Actions" id="Miscellaneous Actions" tiptext="Miscellaneous actions" helpid="2621">
      <action id="trace" name="trace" tiptext="Sends a message to the Output window" helpid="2523" text="trace(% message %);\n" quickey="tr" version="4" />
      <action id="comment" name="comment" tiptext="Insert a comment to help document your script" helpid="2271" text="// %%\n" quickey="//" />
      <action id="include" name="#include" tiptext="Include a script from a file" helpid="2358" text='#include "%path%"\n' quickey="in" />
      <ifmode mode="normal">
	    <action id="evaluate" name="evaluate" tiptext="Evaluates an arbitrary expression" helpid="2330"  quickey="ev" version="4" />
	  </ifmode>
      <ifdef mode="FEATURE_INTERVAL_FUNCS">
        <string name="setInterval" tiptext="Initialize a periodic callback" helpid="2630" text="setInterval(% functionName, interval, params %)" version="6" />
        <string name="clearInterval" tiptext="Cancel a periodic callback" helpid="2631" text="clearInterval(% intervalID %)" version="6" type="procedure" />
      </ifdef>
      <ifdef mode="FEATURE_OBJECT_MODEL">
        <action id="#initclip" name="#initclip" text="#initclip\n" helpid="2632" tiptext="Begin a Component initialization block" quickey="ic" version="6" />
        <action id="#endinitclip" name="#endinitclip" text="#endinitclip\n" helpid="2633" tiptext="End a Component initialization block" quickey="ec" version="6" />
       </ifdef>
    </folder>
  </folder>

  <!-- Operators -->
  <folder name="Operators" id="Operators" tiptext="Operators to use in expressions" helpid="2341" version="4" >
    <string name='""' tiptext="Put double quotes around string literals in an expression" helpid="2458" text='"%%"' version="4" />
    <string name="()" tiptext="Use parentheses to group expressions, i.e. (x+y)*z" helpid="2446" text="(%%)" version="4" />

    <folder name="Arithmetic Operators" id="Arithmetic Operators" tiptext="Operators that perform arithmetic operations" helpid="2237" version="4">
      <string name="+" tiptext="Add numbers" helpid="2450" text="+" version="4" />
      <string name="-" tiptext="Subtract numbers" helpid="2410" text="-" version="4" />
      <string name="*" tiptext="Multiply numbers" helpid="2520" text="*" version="4" />
      <string name="/" tiptext="Divides first number by the second number" helpid="2322" text="/" version="4" />
      <string name="%" tiptext="Calculate the remainder of x divided by y" helpid="2412" text="%" version="4" />
    </folder>

    <folder name="Comparison Operators" id="Comparison Operators" tiptext="Operators that perform comparisons" helpid="2237" version="4">
      <string name="==" tiptext="Test equality" helpid="2327" text="==" version="4" />
      <ifdef mode="FEATURE_SWITCH_AND_STRICT_EQUALITY">
        <string name="===" tiptext="Test strict equality" helpid="61476" text="===" version="4" />
        <string name="!==" tiptext="Test strict inequality" helpid="61477" text="!==" version="4" />
      </ifdef>
      <string name="!=" tiptext="Test inequality" helpid="2421" text="!=" version="4" />
      <string name="&lt;" tiptext="Less than" helpid="2394" text="&lt;" version="4" />
      <string name="&gt;" tiptext="Greater than" helpid="2352" text="&gt;" version="4" />
      <string name="&lt;=" tiptext="Less than or equal to" helpid="2387" text="&lt;=" version="4" />
      <string name="&gt;=" tiptext="Greater than or equal to" helpid="2340" text="&gt;=" version="4" />
    </folder>

    <folder name="Logical Operators" id="Logical Operators" tiptext="Operators that perform logical operations" helpid="2237" version="4">
      <string name="&amp;&amp;" tiptext="Short-circuit logical AND operator" helpid="2440" text="&amp;&amp;" version="4" />
      <string name="||" tiptext="Short-circuit logical OR operator" helpid="2442" text="||" version="4" />
      <string name="!" tiptext="Logical NOT operator" helpid="2441" text="!" version="4" />
    </folder>

    <!-- Bitwise operators are a subcategory of Operators -->
    <folder name="Bitwise Operators" id="Bitwise Operators" tiptext="Operators that manipulate bits (AND, OR, XOR, etc.)" helpid="2237" version="5">
      <string name="&amp;" tiptext="Bitwise AND operator" helpid="2232" text="&amp;" version="5" />
      <string name="|" tiptext="Bitwise OR operator" helpid="2234" text="|" version="5" />
      <string name="^" tiptext="Bitwise XOR operator" helpid="2238" text="^" version="5" />
      <string name="&lt;&lt;" tiptext="Shifts left by a number of bits" helpid="2233" text="&lt;&lt;" version="5" />
      <string name="&gt;&gt;" tiptext="Shifts right by a number of bits" helpid="2235" text="&gt;&gt;" version="5" />
      <string name="&gt;&gt;&gt;" tiptext="Shifts right by a number of bits (unsigned)" helpid="2236" text="&gt;&gt;&gt;" version="5" />
      <string name="~" tiptext="Bitwise one's complement operator" helpid="2272" text="~" version="5" />
    </folder>	

    <!-- Assignment operators are a subcategory of Operators -->
    <folder name="Assignment" id="Assignment" tiptext="Operators that perform variable assignments" helpid="2273" version="4">
      <string name="=" tiptext="Store the value of B in A" helpid="2744" text="=" version="4" />
      <string name="|=" tiptext="Store the bitwise OR of A and B in A" helpid="2223" text="|=" version="5" />
      <string name="&amp;=" tiptext="Store the bitwise AND of A and B in A" helpid="2218" text="&amp;=" version="5" />
      <string name="^=" tiptext="Store the bitwise XOR of A and B in A" helpid="2227" text="^=" version="5" />
      <string name="+=" tiptext="Store the sum A + B in A" helpid="2217" text="+=" version="4" />
      <string name="-=" tiptext="Store the value A - B in A" helpid="2225" text="-=" version="4" />
      <string name="*=" tiptext="Stores the value A * B in A" helpid="2222" text="*=" version="4" />
      <string name="/=" tiptext="Stores the quotient A / B in A" helpid="2219" text="/=" version="4" />
      <string name="%=" tiptext="Stores the remainder A % B in A" helpid="2221" text="%=" version="4" />
      <string name="&lt;&lt;=" tiptext="Stores A shifted left by B bits in A" helpid="2220" text="&lt;&lt;=" version="5" />
      <string name="&gt;&gt;=" tiptext="Stores A shifted right by B bits in A" helpid="2224" text="&gt;&gt;=" version="5" />
      <string name="&gt;&gt;&gt;=" tiptext="Stores A shifted right by B bits in A (unsigned)" helpid="2226" text="&gt;&gt;&gt;=" version="5" />
    </folder>

    <folder name="Miscellaneous Operators" id="Miscellaneous Operators" tiptext="The weird ones" helpid="2273" version="4">
      <string name="?:" tiptext="Conditional operator.  Example: a ? b : c" helpid="2882" text="condition ? trueExpression : falseExpression" version="4" />
      <string name="++" tiptext="Increments a variable.  Example: x++, ++y" helpid="2359" text="++" version="4" />
      <string name="--" tiptext="Decrements a variable.  Example: x--, --y" helpid="2320" text="--" version="4" />
      <string name="typeof" tiptext="Returns the type of expression x" helpid="2525" text="typeof(% expression %)" version="5" />
      <string name="instanceof" tiptext="Returns whether a is of class b" helpid="2649" text="a instanceof b" version="6" />
      <string name="void" tiptext="Evaluates expression, return undefined" helpid="2531" text="void (% expression %)" version="5" />
    </folder>

  </folder>

  <!-- Functions -->
  <folder name="Functions" id="Functions" tiptext="Functions to use in expressions" helpid="2339" version="4" >
    <string name="eval" tiptext="Returns value of variable named by the expresssion" helpid="2329" text="eval(% variable %)" version="4" />
    <string name="getTimer" tiptext="The number of milliseconds since the movie started playing" helpid="2519" text="getTimer()" version="4" />
    <string name="escape" tiptext="Escapes characters in a string not permitted in URLs" helpid="2328" text="escape(% string %)" version="5" />
    <string name="unescape" tiptext="Unescapes %XX hex sequences in a string" helpid="2526" text="unescape(% string %)" version="5" />
    <string name="getProperty" tiptext="Returns a property of the specified movie clip" helpid="2343" text="getProperty(% target, property %)" version="4" />
    <string name="getVersion" tiptext="Get version number of Flash Player" helpid="2346" text="getVersion()" version="4" />
    <string name="targetPath" tiptext="Returns the target path string for a specified movie clip" helpid="2517" text="targetPath(% movieClip %)" version="5" />
    <folder name="Mathematical Functions" id="Mathematical Functions" tiptext="Functions that perform mathematical operations" helpid="2623" version="4" >
      <string name="parseInt" tiptext="Parses a string into an integer" helpid="2448" text="parseInt(% string, radix %)" version="5" />
      <string name="parseFloat" tiptext="Parses a string into a floating-point number" helpid="2447" text="parseFloat(% string %)" version="5" />
      <string name="isFinite" tiptext="Tests whether a number is finite" helpid="2361" text="isFinite(% number %)" version="5" />
      <string name="isNaN" tiptext="Tests whether a number is NaN (Not A Number)" helpid="2362" text="isNaN(% number %)" version="5" />
    </folder>
    <folder name="Conversion Functions" id="Conversion Functions" tiptext="Functions that perform type conversions" helpid="2624" version="4" >
      <string name="String" tiptext="Converts argument to type string" helpid="2489" text="String(% expression %)" version="4" />
      <string name="Number" tiptext="Converts argument to type number" helpid="2427" text="Number(% expression %)" version="4" />
      <string name="Boolean" tiptext="Converts argument to type boolean" helpid="2239" text="Boolean(% expression %)" version="5" />
      <string name="Array" tiptext="Constructs array from arguments" helpid="3014"
              text="Array(%%)"
              text2="Array(% length %)"
              text3="Array(% item1, ..., itemN %)"
              version="6" />
      <string name="Object" tiptext="Converts argument to corresponding object type" helpid="3015"
              text="Object(% expression %)"
              text2="Object(%%)" version="6" />
    </folder>
  </folder>

  <folder name="Constants" id="Constants" tiptext="Global constants to use in expressions" helpid="2625" version="4" >
    <string name="true" tiptext="The boolean value true" helpid="2524" text="true" version="4" />
    <string name="false" tiptext="The boolean value false" helpid="2332" text="false" version="4" />
    <string name="newline" tiptext="The newline character" helpid="2423" text="newline" version="4" />
    <ifdef mode="FEATURE_XML_ACTIONS_TOOLBOX">
      <string name="null" text="null" tiptext="The 'null' value." helpid="2742" version="5" />
      <string name="undefined" text="undefined" tiptext="The 'undefined' value." helpid="2743" version="5" />
    </ifdef>
  </folder>

  <folder name="Properties" id="Properties" tiptext="Properties of movie clips" helpid="2457" version="4" >
    <property name="_x" description="X Position" tiptext="X position of a movie clip" helpid="2535" variable="_x" version="4" />
    <property name="_y" description="Y Position" tiptext="Y position of a movie clip" helpid="2570" variable="_y" version="4" />
    <property name="_xmouse" description="X Mouse Position" tiptext="X position of the mouse" helpid="2413" variable="_xmouse" version="5" />
    <property name="_ymouse" description="Y Mouse Position"  tiptext="Y position of the mouse" helpid="2414" variable="_ymouse" version="5" />
    <property name="_xscale" description="X Scale Factor" tiptext="X scale factor of a movie clip (percentage)" helpid="2465" variable="_xscale" version="4" />
    <property name="_yscale" description="Y Scale Factor" tiptext="Y scale factor of a movie clip (percentage)" helpid="2466" variable="_yscale" version="4" />
    <property name="_width" description="Width" tiptext="Width of a movie clip" helpid="2533" variable="_width" version="4" />
    <property name="_height" description="Height" tiptext="Height of a movie clip" helpid="2353" variable="_height" version="4" />
    <property name="_alpha" description="Alpha" tiptext="Alpha transparency of a movie clip (percentage)" helpid="2203" variable="_alpha" version="4" />
    <property name="_visible" description="Visibility" tiptext="Returns true if movie clip is visible, false if hidden" helpid="2530" variable="_visible" version="4" />
    <property name="_target" description="Target" tiptext="Target path of a movie clip" helpid="2516" variable="_target" version="4" />
    <property name="_rotation" description="Rotation" tiptext="Angle of rotation of a movie clip (degrees)" helpid="2463" variable="_rotation" version="4" />
    <property name="_name" description="Name" tiptext="Instance name of a movie clip" helpid="2419" variable="_name" version="4" />
    <property name="_framesloaded" description="Frames Loaded" tiptext="Number of frames already loaded in a movie clip" helpid="2386" variable="_framesloaded" version="4" />
    <property name="_droptarget" description="Drop Target" tiptext="During drag, movie clip the dragged movie clip is over" helpid="2324" variable="_droptarget" version="4" />
    <property name="_currentframe" description="Current Frame" tiptext="Current frame of a movie clip" helpid="2280" variable="_currentframe" version="4" />
    <property name="_totalframes" description="Total Frames" tiptext="Total number of frames in a movie clip" helpid="2522" variable="_totalframes" version="4" />
    <property name="_quality" description="Quality" tiptext="Current rendering quality as string: LOW, MEDIUM, HIGH or BEST" helpid="2573" variable="_quality" version="5" />
    <property name="_focusrect" description="Show focus rectangle" tiptext="Returns false if tab focus rectangles are hidden, true if displayed" helpid="2334" variable="_focusrect" version="4" />
    <property name="_soundbuftime" description="Sound buffer time" tiptext="Number of seconds of sound to prebuffer, default = 5" helpid="2481" variable="_soundbuftime" version="4" />
    <property name="_url" description="Movie clip URL" tiptext="URL a movie clip was loaded from" helpid="2528" variable="_url" version="4" />
  </folder>

  <folder name="Objects" id="Objects" sort="false" tiptext="Predefined objects provided by ActionScript" helpid="2432" version="4" >

    <folder name="Core" id="Core" tiptext="Core objects of ActionScript language" helpid="2732" version="5">

      <ifdef mode="FEATURE_XML_ACTIONS_TOOLBOX">
        <string name="this" text="this" tiptext="The current object; container of executing script or method" helpid="2738" version="5" />
      </ifdef>
      <ifdef mode="FEATURE_OBJECT_MODEL">
        <string name="super" text="super" tiptext="Superclass operator; invokes constructor/method of superclass" helpid="2952" version="6" />
        <string name="_global" text="_global" tiptext="The global object, which holds global variables" helpid="2650" version="6" />
      </ifdef>

      <ifdef mode="FEATURE_XML_ACTIONS_TOOLBOX">
        <folder name="arguments" id="arguments" index="true" tiptext="Object passed to user-defined functions"
                helpid="2733" version="5">
          <string name="callee" tiptext="Function object that is being invoked" helpid="2735" text="arguments.callee" version="5" />
          <string name="caller" tiptext="Function object that invoked this function" helpid="2734" text="arguments.caller" version="6" />
          <string name="length" tiptext="Number of arguments passed to this function" helpid="3004" text="arguments.length" version="6" />
        </folder>
      </ifdef>

      <!-- Array object -->
      <folder name="Array" id="Array" sort="false" index="true" tiptext="Object that helps you work with arrays" helpid="2209" version="5" >
        <string name="new Array" tiptext="Creates a new Array object" helpid="2208"
                text="new Array(%%)"
                text2="new Array(% length %)"
                text3="new Array(% item1, ..., itemN %)"
                version="5" />
        <folder name="Methods" id="Methods" tiptext="Methods of the Array object" helpid="2718" version="5">
          <string name="concat" tiptext="Concatenates this array to others and return new array" helpid="2205" object="Array" text=".concat(% array1, ..., arrayN %)" version="5" />
          <string name="join" tiptext="Joins all array elements into string" helpid="2206" object="Array" text=".join(% separator %)" version="5" />
          <string name="pop" tiptext="Remove last item in array and return it" helpid="2210" object="Array" text=".pop()" version="5" />
          <string name="push" tiptext="Append new item to the end of array" helpid="2211" object="Array" text=".push(% value %)" type="procedure" version="5" />
          <string name="reverse" tiptext="Rearranges the elements of an array into reverse order" helpid="2462" object="Array" text=".reverse()" type="procedure" version="5" />
          <string name="shift" tiptext="Remove first item in array and return it" helpid="2212" object="Array" text=".shift()" version="5" />
          <string name="slice" tiptext="Returns new array of elements from indexA to indexB" helpid="2213" object="Array" text=".slice(% indexA, indexB %)" version="5" />
          <string name="sort" tiptext="Sorts an array" helpid="2479" object="Array"
                  text=".sort(%%)"
                  text2=".sort(% compareFunction %)"
                  type="procedure" version="5" />
          <string name="sortOn" tiptext="Sorts an array, using object property as sort key" helpid="3021" object="Array"
                  text=".sortOn(% key %)"
                  type="procedure" version="6" />
          <string name="splice" tiptext="Delete count items at index, insert elems if specified" helpid="2214" object="Array" text=".splice(% index, count, elem1, ..., elemN %)" version="5" />
          <string name="toString" tiptext="Return string of all array elements separated by commas" helpid="2577" object="Array" text=".toString()" version="5" />
          <string name="unshift" tiptext="Insert a new item at the beginning of the array" helpid="2215" object="Array" text=".unshift(% value %)" type="procedure" version="5" />
        </folder>
        <folder name="Properties" id="Properties" tiptext="Properties of the Array object" helpid="2719" version="5">
          <string name="length" tiptext="Length of the array" helpid="2207" object="Array" text=".length" version="5" />
        </folder>
      </folder>

      <!-- Boolean object -->
      <folder name="Boolean" id="Boolean" sort="false" index="true" tiptext="Object which represents boolean values" helpid="2241" version="5" >
        <string name="new Boolean" tiptext="Creates a new Boolean object" helpid="2240" text="new Boolean(% value %)" version="5" />
        <folder name="Methods" id="Methods" tiptext="Methods of the Boolean object" helpid="2720" version="5">
          <string name="toString" tiptext="Convert Boolean object to string" helpid="2242" object="Boolean" text=".toString()" version="5" />
          <string name="valueOf" tiptext="Convert Boolean object to primitive type (boolean)" helpid="2243" object="Boolean" text=".valueOf()" version="5" />
        </folder>
      </folder>

      <!-- Date object -->
      <folder name="Date" id="Date" sort="false" index="true" tiptext="Object that helps you work with dates and times"
              helpid="2281" version="5">
        <string name="new Date" tiptext="Creates a new Date object" helpid="2301"
                text="new Date(%%)"
                text2="new Date(% timeValue %)"
                text3="new Date(% year, month, date, hour, min, sec, ms %)"
                version="5" />
        <folder name="Methods" id="Methods" tiptext="Methods of the Date object" helpid="2722" version="5">
          <string name="getDate" tiptext="Gets day of month [local time]" helpid="2282" object="Date" text=".getDate()" version="5" />
          <string name="getMonth" tiptext="Gets month of year (0=Jan, 1=Feb, ...) [local time]" helpid="2288" object="Date" text=".getMonth()" version="5" />
          <string name="getFullYear" tiptext="Gets full year (e.g. 2000) [local time]" helpid="2284" object="Date" text=".getFullYear()" version="5" />
          <string name="getDay" tiptext="Gets day of week (0=Sun, 1=Mon, ...) [local time]" helpid="2283" object="Date" text=".getDay()" version="5" />
          <string name="getHours" tiptext="Gets hour of day (0=12am, 23=11pm) [local time]" helpid="2285" object="Date" text=".getHours()" version="5" />
          <string name="getMinutes" tiptext="Gets minute of hour [local time]" helpid="2287" object="Date" text=".getMinutes()" version="5" />
          <string name="getSeconds" tiptext="Gets seconds since last minute began [local time]" helpid="2289" object="Date" text=".getSeconds()" version="5" />
          <string name="getMilliseconds" tiptext="Gets milliseconds since last second began [local time]" helpid="2286" object="Date" text=".getMilliseconds()" version="5" />
          <string name="getYear" tiptext="Gets the year minus 1900 [local time]" helpid="2300" object="Date" text=".getYear()" version="5" />
          <string name="UTC" tiptext="Returns time value for specific UTC date and time" helpid="2319" text="Date.UTC(% year, month, date, hour, min, sec, ms %)" version="5" />
          <string name="getTimezoneOffset" tiptext="Gets offset of local time from UTC time in minutes" helpid="2291" object="Date" text=".getTimezoneOffset()" version="5" />
          <string name="getTime" tiptext="Gets milliseconds since midnight Jan 1 1970 UTC" helpid="2290" object="Date" text=".getTime()" version="5" />
          <string name="getUTCDate" tiptext="Gets day of month [UTC time]" helpid="2292" object="Date" text=".getUTCDate()" version="5" />
          <string name="getUTCMonth" tiptext="Gets month of year (0=Jan, 1=Feb, ...) [UTC time]" helpid="2298" object="Date" text=".getUTCMonth()" version="5" />
          <string name="getUTCFullYear" tiptext="Gets the full year (e.g. 2000) [UTC time]" helpid="2294" object="Date" text=".getUTCFullYear()" version="5" />
          <string name="getUTCDay" tiptext="Gets day of week (0=Sun, 1=Mon, ...) [UTC time]" helpid="2293" object="Date" text=".getUTCDay()" version="5" />
          <string name="getUTCHours" tiptext="Gets hour of day (0=12am, 23=11pm) [UTC time]" helpid="2295" object="Date" text=".getUTCHours()" version="5" />
          <string name="getUTCMinutes" tiptext="Gets minute of hour [UTC time]" helpid="2297" object="Date" text=".getUTCMinutes()" version="5" />
          <string name="getUTCSeconds" tiptext="Gets seconds since last minute began [UTC time]" helpid="2299" object="Date" text=".getUTCSeconds()" version="5" />
          <string name="getUTCMilliseconds" tiptext="Gets milliseconds since last second began [UTC time]" helpid="2296" object="Date" text=".getUTCMilliseconds()" version="5" />
          <string name="setTime" tiptext="Sets milliseconds since midnight Jan 1 1970 UTC" helpid="2309" object="Date" text=".setTime(% value %)" type="procedure" version="5" />
          <string name="setDate" tiptext="Sets day of month [local time]" helpid="2302" object="Date" text=".setDate(% date %)" type="procedure" version="5" />
          <string name="setMonth" tiptext="Sets month of year (0=Jan, 1=Feb, ...) [local time]" helpid="2307" object="Date" text=".setMonth(% month, date %)" type="procedure" version="5" />
          <string name="setFullYear" tiptext="Sets the full year (e.g. 2000) [local time]" helpid="2303" object="Date" text=".setFullYear(% year, month, date %)" type="procedure" version="5" />
          <string name="setHours" tiptext="Sets hour of day (0=12am, 23=11pm) [local time]" helpid="2304" object="Date" text=".setHours(% hours, minutes, seconds, ms %)" type="procedure" version="5" />
          <string name="setMinutes" tiptext="Sets minute of hour [local time]" helpid="2306" object="Date" text=".setMinutes(% minutes, seconds, ms %)" type="procedure" version="5" />
          <string name="setSeconds" tiptext="Sets seconds since last minute began [local time]" helpid="2308" object="Date" text=".setSeconds(% seconds, ms %)" type="procedure" version="5" />
          <string name="setMilliseconds" tiptext="Sets milliseconds since last second started [local time]" helpid="2305" object="Date" text=".setMilliseconds(% ms %)" type="procedure" version="5" />
          <string name="setYear" tiptext="Sets the year minus 1900 [local time]" helpid="2317" object="Date" text=".setYear(% year, month, date %)" type="procedure" version="5" />
          <string name="setUTCDate" tiptext="Sets day of month [UTC time]" helpid="2310" object="Date" text=".setUTCDate(% date %)" type="procedure" version="5" />
          <string name="setUTCMonth" tiptext="Sets month of year (0=Jan, 1=Feb, ...) [UTC time]" helpid="2315" object="Date" text=".setUTCMonth(% month, date %)" type="procedure" version="5" />
          <string name="setUTCFullYear" tiptext="Sets full year (e.g. 2000) [UTC time]" helpid="2311" object="Date" text=".setUTCFullYear(% year, month, date %)" type="procedure" version="5" />
          <string name="setUTCHours" tiptext="Sets hour of day (0=12am, 23=11pm) [UTC time]" helpid="2312" object="Date" text=".setUTCHours(% hours, minutes, seconds, ms %)" type="procedure" version="5" />
          <string name="setUTCMinutes" tiptext="Sets minute of hour [UTC time]" helpid="2314" object="Date" text=".setUTCMinutes(% minutes, seconds, ms %)" type="procedure" version="5" />
          <string name="setUTCSeconds" tiptext="Sets seconds since last minute began [UTC time]" helpid="2316" object="Date" text=".setUTCSeconds(% seconds, ms %)" type="procedure" version="5" />
          <string name="setUTCMilliseconds" tiptext="Sets milliseconds since last second began [UTC time]" helpid="2313" object="Date" text=".setUTCMilliseconds(% ms %)" type="procedure" version="5" />
          <string name="toString" tiptext="Return a string representation of the date/time" helpid="2318" object="Date" text=".toString()" version="5" />
        </folder>
      </folder>

      <!-- Function object -->
      <ifdef mode="FEATURE_OBJECT_MODEL">
        <folder name="Function" id="Function" index="true" sort="false" 
                tiptext="Object which represents a function"
                helpid="2953" version="6">
          <folder name="Methods" id="Methods" tiptext="Methods of Function objects" helpid="2954" version="6">
            <string name="call" tiptext="Invokes the function with specified parameters"
                    helpid="2955" type="procedure" object="Function" text=".call(% thisObject, arg1, arg2, ... %)" version="6" />
            <string name="apply" tiptext="Invokes the function with parameters in array"
                    helpid="2956" type="procedure" object="Function" text=".apply(% thisObject, parametersArray %)" version="6" />
          </folder>
          <folder name="Properties" id="Properties" tiptext="Properties of Object objects" helpid="3008" version="5">
            <string name="prototype" tiptext="Prototype object for objects constructed by this function"
                    helpid="3009" object="Function" text=".prototype" version="5" />
          </folder>
        </folder>
      </ifdef>

      <!-- Math object -->
      <folder name="Math" id="Math" tiptext="Object providing mathematical functions and properties"
              helpid="2395" index="true" sort="false" version="4">
        <folder name="Methods" id="Methods" tiptext="Methods of the Math object" helpid="2714" version="5">
          <string name="abs" tiptext="Absolute value" helpid="2200" text="Math.abs(% number %)" version="4" />
          <string name="acos" tiptext="Calculate arccosine, in radians" helpid="2201" text="Math.acos(% number %)" version="4" />
          <string name="asin" tiptext="Calculate arcsine, in radians" helpid="2216" text="Math.asin(% number %)" version="4" />
          <string name="atan" tiptext="Calculate arctangent, in radians" helpid="2228" text="Math.atan(% number %)" version="4" />
          <string name="atan2" tiptext="Calculates arctangent of y/x, in radians" helpid="2229" text="Math.atan2(% y, x %)" version="4" />
          <string name="ceil" tiptext="Calculate ceiling of number (round up)" helpid="2246" text="Math.ceil(% number %)" version="4" />
          <string name="cos" tiptext="Calculate cosine of angle (radians)" helpid="2279" text="Math.cos(% number %)" version="4" />
          <string name="exp" tiptext="Exponential function" helpid="2331" text="Math.exp(% number %)" version="4" />
          <string name="floor" tiptext="Calculate floor of number (round down)" helpid="2333" text="Math.floor(% number %)" version="4" />
          <string name="log" tiptext="Natural logarithm" helpid="2392" text="Math.log(% number %)" version="4" />
          <string name="min" tiptext="Compute minimum of two numbers" helpid="2409" text="Math.min(% x, y %)" version="4" />
          <string name="max" tiptext="Compute maximum of two numbers" helpid="2403" text="Math.max(% x, y %)" version="4" />
          <string name="pow" tiptext="Calculate x to the power of y" helpid="2452" text="Math.pow(% base, exponent %)" version="4" />
          <string name="random" tiptext="Generate a random number between 0 and 1" helpid="2571" text="Math.random()" version="4" />
          <string name="round" tiptext="Rounds a number to the nearest integer" helpid="2464" text="Math.round(% number %)" version="4" />
          <string name="sin" tiptext="Calculate sine of angle (radians)" helpid="2478" text="Math.sin(% number %)" version="4" />
          <string name="sqrt" tiptext="Square root" helpid="2483" text="Math.sqrt(% number %)" version="4" />
          <string name="tan" tiptext="Calculate tangent of angle (radians)" helpid="2515" text="Math.tan(% number %)" version="4" />
        </folder>
        <folder name="Constants" id="Constants" tiptext="Constant properties of the Math object" helpid="2715" version="5">
          <string name="E" tiptext="Euler's constant, approx 2.718" helpid="2396" text="Math.E" version="4" />
          <string name="LN10" tiptext="Natural logarithm of 10, approx 2.302" helpid="2397" text="Math.LN10" version="4" />
          <string name="LN2" tiptext="Natural logarithm of 2, approx 0.693" helpid="2398" text="Math.LN2" version="4" />
          <string name="LOG10E" tiptext="Base 10 logarithm of E, approx 0.434" helpid="2399" text="Math.LOG10E" version="4" />
          <string name="LOG2E" tiptext="Base 2 logarithm of E, approx 1.443" helpid="2584" text="Math.LOG2E" version="4" />
          <string name="PI" tiptext="The value of pi, approx 3.14159" helpid="2400" text="Math.PI" version="4" />
          <string name="SQRT1_2" tiptext="Square root of 1/2, approx 0.707" helpid="2401" text="Math.SQRT1_2" version="4" />
          <string name="SQRT2" tiptext="Square root of 2, approx 1.414" helpid="2402" text="Math.SQRT2" version="4" />
        </folder>
      </folder>

      <!-- Number object -->
      <folder name="Number" sort="false" id="Number" index="true" tiptext="Object which represents numbers" helpid="2429" version="5" >
        <string name="new Number" tiptext="Creates a new Number object" helpid="2428"
                text="new Number(% number %)"
                text2="new Number(%%)" version="5" />
        <folder name="Methods" id="Methods" tiptext="Methods of Number objects" helpid="2711" version="5">
          <string name="toString" tiptext="Converts Number object to string, with optional radix conversion" helpid="2430" object="Number"
                  text=".toString(%%)"
                  text2=".toString(% radix %)" version="5" />
          <string name="valueOf" tiptext="Convert Number object to primitive type (number)" helpid="2596" object="Number" text=".valueOf()" version="5" />
        </folder>
        <folder name="Constants" id="Constants" tiptext="Constant properties of the Number object" helpid="2712" version="5">
          <string name="MIN_VALUE" tiptext="The smallest representable number" helpid="2411" text="Number.MIN_VALUE" version="5" />
          <string name="MAX_VALUE" tiptext="The largest representable number" helpid="2404" text="Number.MAX_VALUE" version="5" />
          <string name="POSITIVE_INFINITY" tiptext="Positive infinity" helpid="2451" text="Number.POSITIVE_INFINITY" version="5" />
          <string name="NEGATIVE_INFINITY" tiptext="Negative infinity" helpid="2422" text="Number.NEGATIVE_INFINITY" version="5" />
          <string name="NaN" tiptext="NaN (Not A Number)" helpid="2420" text="Number.NaN" version="5" />
        </folder>
      </folder>

      <!-- Object object -->
      <folder name="Object" id="Object" sort="false" index="true" tiptext="Object is the primitive ActionScript object type"
              helpid="2434" version="5">
        <string name="new Object" tiptext="Creates a new Object object" helpid="2433"
                text="new Object(%%)"
                text2="new Object(% value %)"
                version="5" />
        <folder name="Methods" id="Methods" tiptext="Methods of Object objects" helpid="2710" version="5">
          <string name="toString" tiptext="Converts this object to its string representation" helpid="2435" object="Object" text=".toString()" version="5" />
          <string name="valueOf" tiptext="Returns the primitive value of this object" helpid="2436" object="Object" text=".valueOf()" version="5" />
          <ifdef mode="FEATURE_OBJECT_MODEL">
            <string name="watch" tiptext="Add a watchpoint on an object property" helpid="2602" object="Object" text=".watch(% prop, callback, userData %)" type="procedure" version="6" />
            <string name="unwatch" tiptext="Removes a watchpoint created with Object.watch" helpid="2603" object="Object" text=".unwatch(% prop %)" type="procedure" version="6" />  
            <string name="registerClass" tiptext="Associates a linkage identifier with an object class" helpid="2604" text="Object.registerClass(% symbolID, theClass %)"
		          type="procedure" version="6" />  
            <string name="addProperty" tiptext="Registers a getter/setter property on an object" helpid="2605" object="Object"
                    text=".addProperty(% prop, getFunc, setFunc %)" type="procedure" version="6" />  
          </ifdef>
        </folder>
        <folder name="Properties" id="Properties" tiptext="Properties of Object objects" helpid="3006" version="5">
          <string name="__proto__" tiptext="Prototype object that this object inherits from"
                  helpid="3007" object="Object" text=".__proto__" version="5" />
        </folder>
      </folder>

      <!-- String object -->
      <folder name="String" id="String" sort="false" index="true" tiptext="Object that helps you work with strings" helpid="2505" version="5">
        <string name="new String" tiptext="Creates a new String object" helpid="2504"
                text="new String(% value %)"
                text2="new String(%%)" version="5" />
        <folder name="Methods" id="Methods" tiptext="Methods of String objects" helpid="2704" version="5">
          <string name="charAt" tiptext="Return character at specified index" helpid="2490" object="String" text=".charAt(% index %)" version="5" />
          <string name="charCodeAt" tiptext="Return character code at specified index" helpid="2491" object="String" text=".charCodeAt(% index %)" version="5" />
          <string name="fromCharCode" tiptext="Construct string from character codes" helpid="2494" text="String.fromCharCode(% num1, ..., numN %)" version="5" />
          <string name="toUpperCase" tiptext="Return string converted to uppercase" helpid="2512" object="String" text=".toUpperCase()" version="5" />
          <string name="toLowerCase" tiptext="Return string converted to lowercase" helpid="2511" object="String" text=".toLowerCase()" version="5" />
          <string name="concat" tiptext="Concatenate string to other strings" helpid="2492" object="String" text=".concat(% string1, ..., stringN %)" version="5" />
          <string name="indexOf" tiptext="Search string for substring, return index or -1" helpid="2498" object="String" text=".indexOf(% searchString, fromIndex %)" version="5" />
          <string name="lastIndexOf" tiptext="Search string backwards for substring" helpid="2499" object="String" text=".lastIndexOf(% searchString, fromIndex %)" version="5" />
          <string name="slice" tiptext="Returns slice of string between two indices" helpid="2507" object="String" text=".slice(% indexA, indexB %)" version="5" />
          <string name="substring" tiptext="Returns substring of string between two indices" helpid="2510" object="String" text=".substring(% indexA, indexB %)" version="5" />
          <string name="split" tiptext="Splits string into array of strings using delimiter" helpid="2508" object="String" text=".split(% separator, limit %)" version="5" />
          <string name="substr" tiptext="Returns substring of count chars starting at index" helpid="2509" object="String" text=".substr(% start, length %)" version="5" />
        </folder>
        <folder name="Properties" id="Properties" tiptext="Properties of String objects" helpid="2705" version="5">
          <string name="length" tiptext="Returns the length of a String object" helpid="2501" object="String" text=".length" version="5" />
        </folder>
      </folder>

    </folder>

    <folder name="Movie" id="Movie" tiptext="Objects for scripting Flash movies" helpid="2736" version="5">

      <ifdef mode="FEATURE_XML_ACTIONS_TOOLBOX">
        <string name="_root" text="_root" tiptext="The root Movie Clip of the current level, e.g. _level0 or _level2" helpid="2739" version="5" />
        <string name="_parent" text="_parent" tiptext="The parent Movie Clip of the current Movie Clip" helpid="2740" version="5" />
        <string name="_level" text="_level" tiptext="A numbered level loaded with loadMovie, like _level1" helpid="2741" version="3" />
      </ifdef>

	  <ifdef mode="FEATURE_ACCESSIBILITY">
        <folder name="Accessibility" id="Accessibility" index="true" tiptext="Object for creating accessible movies" helpid="2984" version="6" >
          <string name="isActive" text="Accessibility.isActive()" tiptext="true if Accessibility is active, false otherwise" helpid="2985" version="6" />
        </folder>
	  </ifdef>

      <!-- Button object -->
      <ifdef mode="FEATURE_OBJECT_MODEL">
        <folder name="Button" id="Button" sort="false" index="true" tiptext="Object which represents button instances" helpid="2609" version="6" >
          <folder name="Methods" id="Methods" tiptext="Methods of Button objects" helpid="3001" version="6">
            <string name="getDepth" tiptext='Returns the absolute "z" order of the button' helpid="3002" object="Button" text=".getDepth()" version="6" />
          </folder>
          <folder name="Properties" id="Properties" tiptext="Properties of Button objects" helpid="2686" version="6">
            <string name="enabled" tiptext="If true, button is enabled; if false, disabled" helpid="2610" object="Button" text=".enabled" version="6" />
            <string name="useHandCursor" tiptext="If true, use hand cursor over button rather than arrow" helpid="2611" object="Button" text=".useHandCursor" version="6" />
		  <ifdef mode="FEATURE_EVENT_MODEL">
            <string name="tabIndex" tiptext="Tab index of button" helpid="2729" object="Button" text=".tabIndex" version="6" />
            <string name="tabEnabled" tiptext="If true, tab stop enabled; if false, disabled" helpid="2730" object="Button" text=".tabEnabled" version="6" />
            <string name="trackAsMenu" tiptext="Track as Menu Item for Buttons" helpid="2893" object="Button" text=".trackAsMenu" version="6" />
		  </ifdef>
          </folder>
          <ifdef mode="FEATURE_EVENT_MODEL">
            <folder name="Events" id="Events" tiptext="Events received by Button objects" helpid="2668" version="6">
              <string name="onPress" tiptext="Callback invoked when press event occurs" helpid="2669" object="Button" text=".onPress" version="6" type="event" />
              <string name="onRelease" tiptext="Callback invoked when release event occurs" helpid="2670" object="Button" text=".onRelease" version="6" type="event" />
              <string name="onReleaseOutside" tiptext="Callback invoked when releaseOutside event occurs" helpid="2671" object="Button" text=".onReleaseOutside" version="6" type="event" />
              <string name="onRollOver" tiptext="Callback invoked when rollOver event occurs" helpid="2672" object="Button" text=".onRollOver" version="6" type="event" />
              <string name="onRollOut" tiptext="Callback invoked when rollOut event occurs" helpid="2673" object="Button" text=".onRollOut" version="6" type="event" />
              <string name="onDragOver" tiptext="Callback invoked when dragOver event occurs" helpid="2674" object="Button" text=".onDragOver" version="6" type="event" />
              <string name="onDragOut" tiptext="Callback invoked when dragOut event occurs" helpid="2675" object="Button" text=".onDragOut" version="6" type="event" />
              <string name="onSetFocus" tiptext="Callback invoked when button receives focus" helpid="2688" object="Button" text=".onSetFocus(oldFocus)" version="6" type="event" />
              <string name="onKillFocus" tiptext="Callback invoked when button loses focus" helpid="2689" object="Button" text=".onKillFocus(newFocus)" version="6" type="event" />
            </folder>
          </ifdef>
        </folder>
      </ifdef>

      <ifdef mode="FEATURE_CAPABILITIES">
        <folder name="Capabilities" sort="false" id="Capabilities" index="true" tiptext="Object containing system capabilities info" helpid="2747" version="6">
          <folder name="Properties" id="Properties" tiptext="Properties of the Capabilities object" helpid="3010" version="6">
            <string name="hasAudio" tiptext="If true, system has audio capabilities" helpid="2748" text=".hasAudio" object="Capabilities" version="6" />
            <string name="hasMP3" tiptext="If true, system has MP3 sound capabilities" helpid="2749" text=".hasMP3" object="Capabilities" version="6" />
            <string name="hasAudioEncoder" tiptext="If true, system can encode audio" helpid="2750" text=".hasAudioEncoder" object="Capabilities" version="6" />
            <string name="hasVideoEncoder" tiptext="If true, system can encode video" helpid="2751" text=".hasVideoEncoder" object="Capabilities" version="6" />
            <string name="screenResolutionX" tiptext="Screen X resolution in pixels" helpid="2752" text=".screenResolutionX" object="Capabilities" version="6" />
            <string name="screenResolutionY" tiptext="Screen Y resolution in pixels" helpid="2753" text=".screenResolutionY" object="Capabilities" version="6" />
            <string name="screenDPI" tiptext="Screen dots per inch (dpi)" helpid="2754" text=".screenDPI" object="Capabilities" version="6" />
            <string name="screenColor" tiptext="String indicating type of color screen" helpid="2755" text=".screenColor" object="Capabilities" version="6" />
            <string name="pixelAspectRatio" tiptext="Pixel aspect ratio of screen" helpid="2756" text=".pixelAspectRatio" object="Capabilities" version="6" />
            <string name="hasAccessibility" tiptext="If true, system has Accessibility features" helpid="2757" text=".hasAccessibility" object="Capabilities" version="6" />
          </folder>
        </folder>
      </ifdef>

      <!-- Color object -->
      <folder name="Color" id="Color" index="true" sort="false" tiptext="Object that controls the color transform of movie clips" helpid="2268" version="5" >
        <string name="new Color" tiptext="Creates a color object" helpid="2267" text="new Color(% target %)" version="5" />
        <folder name="Methods" id="Methods" tiptext="Methods of the Color object" helpid="2721" version="5">
          <string name="getRGB" tiptext="Gets the color RGB offsets transform" helpid="2265" object="Color" text=".getRGB()" version="5" />
          <string name="getTransform" tiptext="Gets the color transform" helpid="2266" object="Color" text=".getTransform()" version="5" />
          <string name="setRGB" tiptext="Sets the color RGB offsets of the color transform" helpid="2269" object="Color" text=".setRGB(% 0xRRGGBB %)" type="procedure" version="5" />
          <string name="setTransform" tiptext="Sets the color transform" helpid="2270" object="Color" text=".setTransform(% cxform %)" type="procedure" version="5" />
        </folder>
      </folder>

      <!-- Key Object -->
      <folder name="Key" id="Key" index="true" sort="false" tiptext="Object which help you interface with the keyboard"
              helpid="2378" version="5" >
        <folder name="Methods" id="Methods" tiptext="Methods of the Key object" helpid="2716" version="5">
          <string name="getAscii" tiptext="Gets the ASCII code of the last key pressed or released" helpid="2364" text="Key.getAscii()" version="5" />
          <string name="getCode" tiptext="Gets the virtual key code of the last key pressed or released" helpid="2363" text="Key.getCode()" version="5" />
          <string name="isDown" tiptext="Returns true if key is down" helpid="2375" text="Key.isDown(% keyCode %)" version="5" />
          <string name="isToggled" tiptext="Returns true if key is toggled" helpid="2376" text="Key.isToggled(% keyCode %)" version="5" />
          <string name="addListener" tiptext="Adds a listener for onKeyDown/onKeyUp events" helpid="2957" text="Key.addListener(% listener %)" type="procedure" version="6" />
          <string name="removeListener" tiptext="Removes a listener for onKeyDown/onKeyUp events" helpid="2958" text="Key.removeListener(% listener %)" type="procedure" version="6" />
        </folder>
        <folder name="Constants" id="Constants" tiptext="Constant properties of the Key object" helpid="2717" version="5">
          <string name="BACKSPACE" tiptext="Virtual key code for &lt;BACKSPACE&gt;" helpid="2365" text="Key.BACKSPACE" version="5" />
          <string name="CAPSLOCK" tiptext="Virtual key code for &lt;CAPSLOCK&gt;" helpid="2366" text="Key.CAPSLOCK" version="5" />
          <string name="CONTROL" tiptext="Virtual key code for &lt;CONTROL&gt;" helpid="2367" text="Key.CONTROL" version="5" />
          <string name="DELETEKEY" tiptext="Virtual key code for &lt;DELETE&gt;" helpid="2368" text="Key.DELETEKEY" version="5" />
          <string name="DOWN" tiptext="Virtual key code for &lt;DOWN&gt;" helpid="2369" text="Key.DOWN" version="5" />
          <string name="END" tiptext="Virtual key code for &lt;END&gt;" helpid="2370" text="Key.END" version="5" />
          <string name="ENTER" tiptext="Virtual key code for &lt;ENTER&gt;" helpid="2371" text="Key.ENTER" version="5" />
          <string name="ESCAPE" tiptext="Virtual key code for &lt;ESCAPE&gt;" helpid="2372" text="Key.ESCAPE" version="5" />
          <string name="HOME" tiptext="Virtual key code for &lt;HOME&gt;" helpid="2373" text="Key.HOME" version="5" />
          <string name="INSERT" tiptext="Virtual key code for &lt;INSERT&gt;" helpid="2374" text="Key.INSERT" version="5" />
          <string name="LEFT" tiptext="Virtual key code for &lt;LEFT&gt;" helpid="2377" text="Key.LEFT" version="5" />
          <string name="PGUP" tiptext="Virtual key code for &lt;PGUP&gt;" helpid="2380" text="Key.PGUP" version="5" />
          <string name="PGDN" tiptext="Virtual key code for &lt;PGDN&gt;" helpid="2379" text="Key.PGDN" version="5" />
          <string name="RIGHT" tiptext="Virtual key code for &lt;RIGHT&gt;" helpid="2381" text="Key.RIGHT" version="5" />
          <string name="SHIFT" tiptext="Virtual key code for &lt;SHIFT&gt;" helpid="2382" text="Key.SHIFT" version="5" />
          <string name="SPACE" tiptext="Virtual key code for &lt;SPACE&gt;" helpid="2383" text="Key.SPACE" version="5" />
          <string name="TAB" tiptext="Virtual key code for &lt;TAB&gt;" helpid="2384" text="Key.TAB" version="5" />
          <string name="UP" tiptext="Virtual key code for &lt;UP&gt;" helpid="2385" text="Key.UP" version="5" />
        </folder>
        <ifdef mode="FEATURE_EVENT_MODEL">
          <folder name="Listeners" id="Listeners" tiptext="Listener callbacks of the Key object" helpid="2979" version="6">
            <string name="onKeyDown" tiptext="Listener invoked when key is pressed" helpid="2980" text=".onKeyDown" version="6" type="listener" />
            <string name="onKeyUp" tiptext="Listener invoked when key is released" helpid="2981" text=".onKeyUp" version="6" type="listener" />
          </folder>
        </ifdef>
      </folder>

      <!-- Mouse object -->
      <folder name="Mouse" id="Mouse" sort="false" tiptext="Object that controls the mouse cursor"
              helpid="2416" version="5" index="true">
        <folder name="Methods" id="Methods" tiptext="Methods of the Mouse object" helpid="2713" version="5">
          <string name="show" tiptext="Show the mouse cursor" helpid="2417" text="Mouse.show()" type="procedure" version="5" />
          <string name="hide" tiptext="Hide the mouse cursor" helpid="2415" text="Mouse.hide()" type="procedure" version="5" />
          <ifdef mode="FEATURE_EVENT_MODEL">
            <string name="addListener" tiptext="Adds a listener for onMouseDown/onMouseMove/onMouseUp events" helpid="2959" text="Mouse.addListener(% listener %)" type="procedure" version="6" />
            <string name="removeListener" tiptext="Removes a listener for onMouseDown/onMouseMove/onMouseUp events" helpid="2960" text="Mouse.removeListener(% listener %)" type="procedure" version="6" />
          </ifdef>
        </folder>
        <ifdef mode="FEATURE_EVENT_MODEL">
          <folder name="Listeners" id="Listeners" tiptext="Listener callbacks of the Mouse object" helpid="2975" version="6">
            <string name="onMouseDown" tiptext="Listener invoked when mouse button is pressed" helpid="2976" text=".onMouseDown" version="6" type="listener" />
            <string name="onMouseMove" tiptext="Listener invoked when mouse is moved" helpid="2977" text=".onMouseMove" version="6" type="listener" />
            <string name="onMouseUp" tiptext="Listener invoked when mouse button is released" helpid="2978" text=".onMouseUp" version="6" type="listener" />
          </folder>
        </ifdef>
      </folder>

      <!-- MovieClip object -->
      <folder name="MovieClip" id="MovieClip" sort="false" index="true" tiptext="Object that represents a movie clip" helpid="2256" version="5" >
        <folder name="Methods" id="Methods" tiptext="Methods of MovieClip Object" helpid="2677" version="5" >
          <string name="attachMovie" tiptext="Creates instance of movie clip located in the Library" helpid="2248" object="MovieClip" text=".attachMovie(% idName, newName, depth [, initObject] %)" type="procedure" version="5" />
          <ifdef mode="FEATURE_DRAWING_API">
            <string name="createEmptyMovieClip" tiptext="Creates an empty Movie Clip instance" helpid="2855" object="MovieClip" text=".createEmptyMovieClip(% instanceName, depth %)" type="procedure" version="6" />
          </ifdef>
          <ifdef mode="FEATURE_TEXTFIELD_OBJECT">
            <string name="createTextField" tiptext="Creates an empty text field" helpid="2918" object="MovieClip" text=".createTextField(% instanceName, depth, x, y, width, height %)" type="procedure" version="6" />
          </ifdef>
          <string name="duplicateMovieClip" tiptext="Duplicates this movie clip" helpid="2249" object="MovieClip" text=".duplicateMovieClip(% newName, depth [, initObject] %)" type="procedure" version="5" />
          <string name="getBounds" tiptext="Returns an object whose properties contain the bounds of the movie clip" helpid="2576" object="MovieClip" text=".getBounds(% targetCoordinateSpace %)" version="5" />
          <string name="getBytesLoaded" tiptext="Returns the number of bytes loaded for this movie clip" helpid="2582" object="MovieClip" text=".getBytesLoaded()" version="5" />
          <string name="getBytesTotal" tiptext="Returns the size of the movie clip" helpid="2583" object="MovieClip" text=".getBytesTotal()" version="5" />
          <string name="getDepth" tiptext='Returns the absolute "z" order of the movie clip' helpid="2965" object="MovieClip" text=".getDepth()" version="6" />
          <string name="getURL" tiptext="Navigates to an URL, optionally sending variables" helpid="2250" object="MovieClip" text=".getURL(% url, window, method %)" type="procedure" version="5" />
          <string name="globalToLocal" tiptext="Converts stage coordinate to movie clip coordinate" helpid="2348" object="MovieClip" text=".globalToLocal(% point %)" type="procedure" version="5" />
          <string name="gotoAndPlay" tiptext="Go to a frame of movie clip and start playing" helpid="2251" object="MovieClip" text=".gotoAndPlay(% frame %)" type="procedure" version="5" />
          <string name="gotoAndStop" tiptext="Go to a frame of movie clip and stop" helpid="2252" object="MovieClip" text=".gotoAndStop(% frame %)" type="procedure" version="5" />
          <string name="hitTest" tiptext="Check if a point or movie clip intersects another movie clip" helpid="2355" object="MovieClip" text=".hitTest(% x, y, shapeFlag %)" version="5" />
          <string name="loadMovie" tiptext="Loads a .swf from an URL into movie clip" helpid="2253" object="MovieClip" text=".loadMovie(% url, method %)" type="procedure" version="5" />
          <string name="loadVariables" tiptext="Loads variables from an URL into movie clip" helpid="2254" object="MovieClip" text=".loadVariables(% url, method %)" type="procedure" version="5" />
          <string name="localToGlobal" tiptext="Converts movie clip coordinate to stage coordinate" helpid="2391" object="MovieClip" text=".localToGlobal(% point %)" type="procedure" version="5" />
          <string name="nextFrame" tiptext="Go to next frame of movie clip" helpid="2255" object="MovieClip" text=".nextFrame()" type="procedure" version="5" />
          <string name="play" tiptext="Starts playing movie clip from current frame" helpid="2257" object="MovieClip" text=".play()" type="procedure" version="5" />
          <string name="prevFrame" tiptext="Go to previous frame of movie clip" helpid="2258" object="MovieClip" text=".prevFrame()" type="procedure" version="5" />
          <string name="removeMovieClip" tiptext="Removes movie clip created with duplicateMovieClip" helpid="2259" object="MovieClip" text=".removeMovieClip()" type="procedure" version="5" />
          <ifdef mode="FEATURE_SCRIPTABLE_CLIPPING">
		    <string name="setMask" tiptext="Sets the scriptable mask of this movie clip" helpid="3020" object="MovieClip" text=".setMask(% maskMovieClip %)" type="procedure" version="6" />
          </ifdef>
          <string name="startDrag" tiptext="Starts drag operation on movie clip" helpid="2260" object="MovieClip" text=".startDrag(% lockCenter, left, top, right, bottom %)" type="procedure" version="5" />
          <string name="stop" tiptext="Stops playing movie clip" helpid="2261" object="MovieClip" text=".stop()" type="procedure" version="5" />
          <string name="stopDrag" tiptext="Stops drag operation" helpid="2262" object="MovieClip" text=".stopDrag()" type="procedure" version="5" />
          <string name="swapDepths" tiptext='Swaps the "z" order of 2 Movie Clips' helpid="2514" object="MovieClip" text=".swapDepths(% target %)" type="procedure" version="5" />
          <string name="unloadMovie" tiptext="Unloads .swf previously loaded with loadMovie" helpid="2263" object="MovieClip" text=".unloadMovie()" type="procedure" version="5" />
        </folder>

        <ifdef mode="FEATURE_DRAWING_API">
          <folder name="Drawing Methods" id="Drawing Methods" tiptext="Methods that perform direct drawing" helpid="2856" version="6" >
            <string name="beginFill" tiptext="Identifies the beginning of a solid fill" helpid="2857" object="MovieClip" text=".beginFill(% rgb, alpha %)" type="procedure" version="6" />
            <string name="beginGradientFill" tiptext="Identifies the beginning of a gradient fill" helpid="2858" object="MovieClip" text=".beginGradientFill(% fillType, colors, alphas, ratios, matrix %)" type="procedure" version="6" />
            <string name="lineStyle" tiptext="Changes the current line style" helpid="2859" object="MovieClip" text=".lineStyle(% thickness, rgb, alpha %)" type="procedure" version="6" />
            <string name="moveTo" tiptext="Moves the current drawing position" helpid="2860" object="MovieClip" text=".moveTo(% x, y %)" type="procedure" version="6" />
            <string name="lineTo" tiptext="Draws a line from the current drawing position" helpid="2861" object="MovieClip" text=".lineTo(% x, y %)" type="procedure" version="6" />
            <string name="curveTo" tiptext="Draws a curve from the current drawing position" helpid="3016" object="MovieClip" text=".curveTo(% controlX, controlY, anchorX, anchorY %)" type="procedure" version="6" />
            <string name="endFill" tiptext="Identifies the end of a fill" helpid="2878" object="MovieClip" text=".endFill()" type="procedure" version="6" />
            <string name="clear" tiptext="Clears all drawing commands on Movie Clip" helpid="2879" object="MovieClip" text=".clear()" type="procedure" version="6" />
          </folder>
        </ifdef>

        <ifdef mode="FEATURE_EVENT_MODEL">
          <folder name="Properties" id="Properties" tiptext="Properties of MovieClip object" helpid="2678" version="6">
            <string name="enabled" tiptext="If true, button movie clip is enabled; if false, disabled" helpid="2679" object="MovieClip" text=".enabled" version="6" />
            <string name="focusEnabled" tiptext="If true, movie clip may receive the focus" helpid="2967" object="MovieClip" text=".focusEnabled" version="6" />
            <string name="hitArea" tiptext="Hit Area to use for Button Movie Clips" helpid="2680" object="MovieClip" text=".hitArea" version="6" />
            <string name="tabIndex" tiptext="Tab index of a MovieClip object" helpid="2681" object="MovieClip" text=".tabIndex" version="6" />
            <string name="tabEnabled" tiptext="If true, tab stop enabled; if false, disabled" helpid="2682" object="MovieClip" text=".tabEnabled" version="6" />
            <string name="tabChildren" tiptext="If true, children may be tab stops" helpid="2683" object="MovieClip" text=".tabChildren" version="6" />
            <string name="trackAsMenu" tiptext="Track as Menu Item for Button Movie Clips" helpid="2684" object="MovieClip" text=".trackAsMenu" version="6" />
            <string name="useHandCursor" tiptext="If true, use hand cursor over movie clip rather than arrow" helpid="2685" object="MovieClip" text=".useHandCursor" version="6" />
    	    </folder>
          <folder name="Events" id="Events" tiptext="Events received by MovieClip objects" helpid="2651" version="6">
            <string name="onPress" tiptext="Callback invoked when press event occurs" helpid="2652" object="MovieClip" text=".onPress" version="6" type="event" />
            <string name="onRelease" tiptext="Callback invoked when release event occurs" helpid="2653" object="MovieClip" text=".onRelease" version="6" type="event" />
            <string name="onReleaseOutside" tiptext="Callback invoked when releaseOutside event occurs" helpid="2654" object="MovieClip" text=".onReleaseOutside" version="6" type="event" />
            <string name="onRollOver" tiptext="Callback invoked when rollOver event occurs" helpid="2655" object="MovieClip" text=".onRollOver" version="6" type="event" />
            <string name="onRollOut" tiptext="Callback invoked when rollOut event occurs" helpid="2656" object="MovieClip" text=".onRollOut" version="6" type="event" />
            <string name="onDragOver" tiptext="Callback invoked when dragOver event occurs" helpid="2657" object="MovieClip" text=".onDragOver" version="6" type="event" />
            <string name="onDragOut" tiptext="Callback invoked when dragOut event occurs" helpid="2658" object="MovieClip" text=".onDragOut" version="6" type="event" />
            <string name="onLoad" tiptext="Callback invoked when load event occurs" helpid="2660" object="MovieClip" text=".onLoad" version="6" type="event" />
            <string name="onUnload" tiptext="Callback invoked when unload event occurs" helpid="2661" object="MovieClip" text=".onUnload" version="6" type="event" />
            <string name="onEnterFrame" tiptext="Callback invoked when frame is entered" helpid="2862" object="MovieClip" text=".onEnterFrame" version="6" type="event" />
            <string name="onMouseDown" tiptext="Callback invoked when mouseDown event occurs" helpid="2662" object="MovieClip" text=".onMouseDown" version="6" type="event" />
            <string name="onMouseUp" tiptext="Callback invoked when mouseUp event occurs" helpid="2663" object="MovieClip" text=".onMouseUp" version="6" type="event" />
            <string name="onMouseMove" tiptext="Callback invoked when mouseMove event occurs" helpid="2664" object="MovieClip" text=".onMouseMove" version="6" type="event" />
            <string name="onKeyDown" tiptext="Callback invoked when keyDown event occurs" helpid="2665" object="MovieClip" text=".onKeyDown" version="6" type="event" />
            <string name="onKeyUp" tiptext="Callback invoked when keyUp event occurs" helpid="2666" object="MovieClip" text=".onKeyUp" version="6" type="event" />
            <string name="onData" tiptext="Callback invoked when data event occurs" helpid="2667" object="MovieClip" text=".onData" version="6" type="event" />
            <string name="onSetFocus" tiptext="Callback invoked when movie clip receives focus" helpid="2690" object="MovieClip" text=".onSetFocus(oldFocus)" version="6" type="event" />
            <string name="onKillFocus" tiptext="Callback invoked when movie clip loses focus" helpid="2691" object="MovieClip" text=".onKillFocus(newFocus)" version="6" type="event" />
          </folder>
        </ifdef>
      </folder>

      <!-- Selection object -->
      <folder name="Selection" id="Selection" sort="false" index="true" tiptext="Object that controls the edit text selection and focus"
              helpid="2471" version="5" >
        <folder name="Methods" id="Methods" tiptext="Methods of the Selection object" helpid="2708" version="5">
          <string name="getBeginIndex" tiptext="Gets the beginning index of the edit text selection, -1 if none" helpid="2467" text="Selection.getBeginIndex()" version="5" />
          <string name="getEndIndex" tiptext="Gets the end index of the edit text selection, -1 if none" helpid="2469" text="Selection.getEndIndex()" version="5" />
          <string name="getCaretIndex" tiptext="Gets the position of the edit text caret, -1 if none" helpid="2468" text="Selection.getCaretIndex()" version="5" />
          <string name="getFocus" tiptext="Gets the variable name of the focused edit text field" helpid="2470" text="Selection.getFocus()" version="5" />
          <string name="setFocus" tiptext="Sets the currently focused edit text field" helpid="2472" text="Selection.setFocus(% instanceName %)" type="procedure" version="5" />
          <string name="setSelection" tiptext="Sets the beginning and end of the text selection" helpid="2473" text="Selection.setSelection(% beginIndex, endIndex %)" type="procedure" version="5" />
          <string name="addListener" tiptext="Adds a listener for the onSetFocus event" helpid="2961" text="Selection.addListener(% listener %)" type="procedure" version="6" />
          <string name="removeListener" tiptext="Removes a listener for the onSetFocus event" helpid="2962" text="Selection.removeListener(% listener %)" type="procedure" version="6" />
        </folder>
	  <ifdef mode="FEATURE_EVENT_MODEL">
          <folder name="Listeners" id="Listeners" tiptext="Listener callbacks of the Selection object" helpid="2709" version="6">
	        <string name="onSetFocus" tiptext="Listener invoked when focus changes" helpid="2687" text=".onSetFocus(oldFocus, newFocus)" version="6" type="listener" />
          </folder>
	  </ifdef>
      </folder>

      <!-- Sound object -->
      <folder name="Sound" id="Sound" index="true" sort="false" tiptext="Object that helps you work with sound" helpid="2480" version="5" >
        <string name="new Sound" tiptext="Creates a sound object" helpid="2572" text="new Sound(% target %)" version="5" />
        <folder name="Methods" id="Methods" tiptext="Methods of Sound objects" helpid="2706" version="5" sort="true">
          <string name="getPan" tiptext="Gets the pan of sound" helpid="2342" object="Sound" text=".getPan()" version="5" />
          <string name="getTransform" tiptext="Gets the current sound transform" helpid="2344" object="Sound" text=".getTransform()" version="5" />
          <string name="getVolume" tiptext="Gets the volume percentage" helpid="2347" object="Sound" text=".getVolume()" version="5" />
          <string name="setPan" tiptext="Sets the pan of sound" helpid="2474" object="Sound" text=".setPan(% pan %)" type="procedure" version="5" />
          <string name="setTransform" tiptext="Set each channel to a combination of left and right channel" helpid="2482" object="Sound" text=".setTransform(% sxform %)" type="procedure" version="5" />
          <string name="setVolume" tiptext="Set the volume percentage" helpid="2477" object="Sound" text=".setVolume(% volume %)" type="procedure" version="5" />
          <string name="stop" tiptext="Stops all sounds" helpid="2445" object="Sound" text=".stop()" type="procedure" version="5" />
          <string name="attachSound" tiptext="Attach a sound located in the library" helpid="2230" object="Sound" text=".attachSound(% idName %)" type="procedure" version="5" />
          <ifdef mode="FEATURE_LOAD_IMAGES">
          <string name="loadSound" tiptext="Download a MP3 sound." helpid="3017" object="Sound" text=".loadSound(% URL, isStreaming %)" type="procedure" version="6" />
          <string name="getBytesLoaded" tiptext="Returns the number of bytes that have download during the loadSound() operation." helpid="2900" object="Sound" text=".getBytesLoaded()" type="procedure" version="6" />
          <string name="getBytesTotal" tiptext="Returns the size of the file that is currently being downloaded." helpid="2901" object="Sound" text=".getBytesTotal()" type="procedure" version="6" />
          </ifdef>
          <string name="start" tiptext="Starts playing the last attached sound" helpid="2484" object="Sound" text=".start(% secondsOffset, loops %)" type="procedure" version="5" />
        </folder>
        <ifdef mode="FEATURE_SOUND_COMPLETION_EVENT">
          <folder name="Properties" id="Properties" tiptext="Properties of the Sound object" helpid="2865" version="6">
            <string name="position" tiptext="Number of milliseconds sound has been playing for" helpid="2866" object="Sound" text=".position" version="6" />
            <string name="duration" tiptext="Duration of sound in milliseconds" helpid="2867" object="Sound" text=".duration" version="6" />
          </folder>
          <folder name="Events" id="Events" tiptext="Events of the Sound object" helpid="2868" version="6">
            <string name="onSoundComplete" tiptext="Callback invoked when sound has completed playing" helpid="2869" object="Sound" text=".onSoundComplete" version="6" type="event" />
            <string name="onLoad" tiptext="Callback invoked when loaded sound has been received." helpid="2902" object="Sound" text=".onLoad(success)" version="6" type="event" />
          </folder>
        </ifdef>
      </folder>

      <ifdef mode="FEATURE_RESIZABLE_MOVIE_LAYOUT">
        <folder name="Stage" id="Stage" sort="false" tiptext="Object that controls characteristics of the Flash movie stage"
                helpid="2870" version="6" index="true">
		  <folder name="Methods" id="Methods" tiptext="Methods of Stage object" helpid="2871" version="6" sort="true">
            <string name="addListener" tiptext="Adds a listener for the onResize event" helpid="2963" text="Stage.addListener(% listener %)" type="procedure" version="6" />
            <string name="removeListener" tiptext="Removes a listener for the onResize event" helpid="2964" text="Stage.removeListener(% listener %)" type="procedure" version="6" />
		  </folder>
          <folder name="Properties" id="Properties" tiptext="Properties of the Stage object" helpid="2872" version="6">
		    <string name="showMenu" tiptext="Flash movie context menu visibility flag: show (true), hide (false)" helpid="2873" text="Stage.showMenu" version="6" />
		    <string name="scaleMode" tiptext="Flash movie scaling behavior: show all, exact fit, no border, or no scale" helpid="2874" text="Stage.scaleMode" version="6" />
			<string name="align" tiptext="Flash movie alignment behavior: centered(C), top(T), top-left(TL), etc." helpid="2875" text="Stage.align" version="6" />
            <string name="width" tiptext="The current width of the Flash movie stage, in pixels" helpid="2876" text="Stage.width" version="6" />
            <string name="height" tiptext="The current height of the Flash movie stage, in pixels" helpid="2877" text="Stage.height" version="6" />
          </folder>
          <folder name="Events" id="Events" tiptext="Events of the Stage object" helpid="2878" version="6">
            <string name="onResize" tiptext="Callback invoked when Flash movie has resized" helpid="3011" text=".onResize" version="6" type="event" />
          </folder>
        </folder>
      </ifdef>

      <ifdef mode="FEATURE_CAPABILITIES">
        <folder name="System" id="System" index="true" tiptext="Object containing system information" helpid="2880" version="6">
          <string name="capabilities" tiptext="System capabilities object" helpid="2881" text="System.capabilities" version="6" />
        </folder>
      </ifdef>

      <!-- TextField object -->
      <ifdef mode="FEATURE_OBJECT_MODEL">
        <folder name="TextField" id="TextField" sort="false" index="true" tiptext="Object which represents text field instances" helpid="2612" version="6">
		  <ifdef mode="FEATURE_TEXTFIELD_OBJECT">
            <folder name="Methods" id="Methods" tiptext="Methods of text field objects" helpid="2940" version="6">
              <string name="removeTextField" tiptext="Removes a text field created with createTextField" helpid="2991" object="TextField" text=".removeTextField()" version="6"
                      type="procedure" />
              <string name="replaceSel" tiptext="Replace selected text with specified text" helpid="2941" object="TextField" text=".replaceSel(% text %)" version="6"
                      type="procedure" />
              <string name="getTextFormat" tiptext="Get text format information" helpid="2943" object="TextField" text=".getTextFormat(% beginIndex, endIndex %)" version="6" />
              <string name="setTextFormat" tiptext="Set text format information" helpid="2944" object="TextField"
                      text=".setTextFormat(%%)"
                      text2=".setTextFormat(% index, textFormat %)"
                      text3=".setTextFormat(% beginIndex, endIndex, textFormat %)" version="6"
                      type="procedure" />
              <string name="getNewTextFormat" tiptext="Get text format information for new text" helpid="2997" object="TextField" text=".getNewTextFormat()" version="6" />
              <string name="setNewTextFormat" tiptext="Set text format information for new text" helpid="2998" object="TextField" text=".setNewTextFormat(% textFormat %)" version="6"
                      type="procedure" />
              <string name="getFontList" tiptext="Get array containing names of fonts on system" helpid="2969" text="TextField.getFontList()" version="6" />
              <string name="addListener" tiptext="Adds a listener for onChanged/onScroller events" helpid="2986"
                      text=".addListener(% listener %)"
                      object="TextField" type="procedure" version="6" />
              <string name="removeListener" tiptext="Removes a listener for onChanged/onScroller events" helpid="2987"
                      text=".removeListener(% listener %)" object="TextField" type="procedure" version="6" />
              <string name="getDepth" tiptext='Returns the absolute "z" order of the text field' helpid="3003" object="TextField" text=".getDepth()" version="6" />
            </folder>
          </ifdef>
          <folder name="Properties" id="Properties" tiptext="Properties of TextField objects" helpid="2692" version="6">
            <string name="scroll" tiptext="Index of first visible line in text field" helpid="2613" object="TextField" text=".scroll" version="6" />
            <string name="bottomScroll" tiptext="Index of last visible line in text field" helpid="2949" object="TextField" text=".bottomScroll" version="6" />
            <string name="maxscroll" tiptext="Maximum value of .scroll in text field" helpid="2614" object="TextField" text=".maxscroll" version="6" />
            <ifdef mode="FEATURE_TEXTFIELD_OBJECT">
              <string name="type" tiptext="Type of text field ('dynamic' or 'input')" helpid="2972" object="TextField" text=".type" version="6" />
              <string name="textColor" tiptext="Color of text in text field" helpid="2646" object="TextField" text=".textColor" version="6" />
              <string name="borderColor" tiptext="Color of border of text field" helpid="2647" object="TextField" text=".borderColor" version="6" />
              <string name="backgroundColor" tiptext="Color of background of text field" helpid="2648" object="TextField" text=".backgroundColor" version="6" />
              <string name="text" tiptext="Current text in the text field" helpid="2694" object="TextField" text=".text" version="6" />
              <string name="htmlText" tiptext="Current text in the text field, with HTML tags" helpid="2926" object="TextField" text=".htmlText" version="6" />
              <string name="autoSize" tiptext="Text field auto-sizes to fit text" helpid="2693" object="TextField" text=".autoSize" version="6" />
              <string name="variable" tiptext="Name of variable associated with text field" helpid="2927" object="TextField" text=".variable" version="6" />
              <string name="hscroll" tiptext="Current horizontal scrolling position" helpid="2928" object="TextField" text=".hscroll" version="6" />
              <string name="maxhscroll" tiptext="Maximum value of .hscroll in text field" helpid="2929" object="TextField" text=".maxhscroll" version="6" />
              <string name="maxChars" tiptext="Maximum number of characters that may be entered" helpid="2930" object="TextField" text=".maxChars" version="6" />
              <string name="embedFonts" tiptext="Boolean; if true, use embedded font outlines" helpid="2931" object="TextField" text=".embedFonts" version="6" />
              <string name="html" tiptext="Boolean; if true, use HTML for variable representation" helpid="2932" object="TextField" text=".html" version="6" />
              <string name="border" tiptext="Boolean; if true, display border around text field" helpid="2933" object="TextField" text=".border" version="6" />
              <string name="background" tiptext="Boolean; if true, display background behind text field" helpid="2934" object="TextField" text=".background" version="6" />
              <string name="wordWrap" tiptext="Boolean; if true, perform word wrap at line ends" helpid="2935" object="TextField" text=".wordWrap" version="6" />
              <string name="password" tiptext="Boolean; if true, display asterisks to hide characters" helpid="2936" object="TextField" text=".password" version="6" />
              <string name="multiline" tiptext="Boolean; if true, user may enter multipline lines" helpid="2937" object="TextField" text=".multiline" version="6" />
              <string name="restrict" tiptext="Set of characters accepted by the text field" helpid="2992" object="TextField" text=".restrict" version="6" />
              <string name="selectable" tiptext="Boolean; if true, user may select text with mouse/keyboard" helpid="2938" object="TextField" text=".selectable" version="6" />
              <string name="length" tiptext="Length of text in .text property" helpid="2939" object="TextField" text=".length" version="6" />
              <string name="textWidth" tiptext="Width of the text, in pixels" helpid="2950" object="TextField" text=".textWidth" version="6" />
              <string name="textHeight" tiptext="Height of the text, in pixels" helpid="2951" object="TextField" text=".textHeight" version="6" />
            </ifdef>
		    <ifdef mode="FEATURE_EVENT_MODEL">
              <string name="tabIndex" tiptext="Tab index of text field" helpid="2727" object="TextField" text=".tabIndex" version="6" />
              <string name="tabEnabled" tiptext="If true, tab stop enabled; if false, disabled" helpid="2728" object="TextField" text=".tabEnabled" version="6" />
		    </ifdef>
          </folder>
		  <ifdef mode="FEATURE_EVENT_MODEL">
            <folder name="Events" id="Events" tiptext="Events received by text field objects" helpid="2695" version="6">
              <string name="onChanged" tiptext="Callback invoked when text changes" helpid="2696" object="TextField" text=".onChanged" version="6" type="event" />
              <string name="onSetFocus" tiptext="Callback invoked when text field receives focus" helpid="2697" object="TextField" text=".onSetFocus(oldFocus)" version="6" type="event" />
              <string name="onKillFocus" tiptext="Callback invoked when text field loses focus" helpid="2698" object="TextField" text=".onKillFocus(newFocus)" version="6" type="event" />
              <string name="onScroller" tiptext="Callback invoked when scrolling position/range changes" helpid="2894" object="TextField" text=".onScroller" version="6" type="event" />
            </folder>
            <folder name="Listeners" id="Listeners" tiptext="Listeners for text field objects" helpid="2988" version="6">
              <string name="onChanged" tiptext="Listener invoked when text changes" helpid="2989" text=".onChanged" version="6" type="listener" />
              <string name="onScroller" tiptext="Listener invoked when scrolling position/range changes" helpid="2990" text=".onScroller" version="6" type="listener" />
            </folder>
          </ifdef>
        </folder>
      </ifdef>

      <ifdef mode="FEATURE_TEXTFIELD_OBJECT">
        <folder name="TextFormat" id="TextFormat" sort="false" index="true" tiptext="Object that controls text formatting in text fields"
                helpid="2906" version="6">
          <string name="new TextFormat" tiptext="Construct a new TextFormat object" text="new TextFormat()" helpid="2920" version="6" />
          <folder name="Methods" id="Methods" tiptext="Methods of TextFormat objects" helpid="2970" version="6">
            <string name="getTextExtent" tiptext="Get X and Y extents of text" helpid="2971" object="TextFormat" text=".getTextExtent(% text %)" version="6" />
          </folder>
          <folder name="Properties" id="Properties" tiptext="Properties of TextFormat objects" helpid="2907" version="6">
            <string name="font" tiptext="Name of text font" object="TextFormat" text=".font" helpid="2908" version="6" />
            <string name="size" tiptext="Point size of text" object="TextFormat" text=".size" helpid="2909" version="6" />
            <string name="color" tiptext="Color of text" object="TextFormat" text=".color" helpid="2910" version="6" />
            <string name="url" tiptext="URL hyperlink of text, null if none" object="TextFormat" text=".url" helpid="2911" version="6" />
            <string name="target" tiptext="Target window of hyperlink, null if none" object="TextFormat" text=".target" helpid="2912" version="6" />
            <string name="bold" tiptext="Boolean indicating whether text is bold" object="TextFormat" text=".bold" helpid="2913" version="6" />
            <string name="italic" tiptext="Boolean indicating whether text is italicized" object="TextFormat" text=".italic" helpid="2914" version="6" />
            <string name="underline" tiptext="Boolean indicating whether text is underlined" object="TextFormat" text=".underline" helpid="2919" version="6" />
            <string name="align" tiptext="Alignment of text (left, center, right)" object="TextFormat" text=".align" helpid="2921" version="6" />
            <string name="leftMargin" tiptext="Left margin of text" object="TextFormat" text=".leftMargin" helpid="2922" version="6" />
            <string name="rightMargin" tiptext="Right margin of text" object="TextFormat" text=".rightMargin" helpid="2923" version="6" />
            <string name="indent" tiptext="Indentation of initial line in paragraph" object="TextFormat" text=".indent" helpid="2924" version="6" />
            <string name="blockIndent" tiptext="Indentation applied to all lines in paragraph" object="TextFormat" text=".blockIndent" helpid="3012" version="6" />
            <string name="leading" tiptext="Inter-line leading of text" object="TextFormat" text=".leading" helpid="2925" version="6" />
            <string name="bullet" tiptext="Boolean indicating whether text is bulleted" object="TextFormat" text=".bullet" helpid="2993" version="6" />
            <string name="tabStops" tiptext="Array indicating positions of tab stops" object="TextFormat" text=".tabStops" helpid="2994" version="6" />
          </folder>
        </folder>
      </ifdef>

    </folder>

    <folder name="Client/Server" id="Client_Server" tiptext="Objects for client/server communication" helpid="2737" version="5">

      <!-- LoadVars object -->
      <ifdef mode="FEATURE_XML_ENHANCEMENTS">
        <folder name="LoadVars" id="LoadVars" sort="false" index="true" tiptext="Object-oriented interface to Load Variables" helpid="2634" version="6" >
          <string name="new LoadVars" tiptext="Creates new LoadVars object" helpid="2635" text="new LoadVars()" version="6" />
          <folder name="Methods" id="Methods" tiptext="Methods of the LoadVars object" helpid="2723" version="6">
            <string name="load" tiptext="Loads variables into Flash from an URL" helpid="2639" object="LoadVars" text=".load(% url %)" type="procedure" version="6" />
            <string name="send" tiptext="Sends variables from Flash to an URL" helpid="2640" object="LoadVars" text=".send(% url, window, method %)" type="procedure" version="6" />
            <string name="sendAndLoad" tiptext="Sends variables from Flash to an URL and downloads variable results" helpid="2641" object="LoadVars" text=".sendAndLoad(% url, targetObject, method %)" type="procedure" version="6" />
            <string name="toString" tiptext="Converts this LoadVars object to a URL-encoded string" helpid="2638" object="LoadVars" text=".toString()" version="6" />
            <string name="getBytesLoaded" tiptext="Returns the number of bytes loaded of variables" helpid="2642" object="LoadVars" text=".getBytesLoaded()" version="6" />
            <string name="getBytesTotal" tiptext="Returns expected total downloaded size of variables" helpid="2643" object="LoadVars" text=".getBytesTotal()" version="6" />
          </folder>
          <folder name="Properties" id="Properties" tiptext="Properties of the LoadVars object" helpid="2724" version="6">
            <string name="loaded" tiptext="Sets to true if load/sendAndLoad completed" helpid="2636" object="LoadVars" text=".loaded" version="6" />
            <string name="contentType" tiptext="MIME Content Type for send/sendAndLoad" helpid="2895" object="LoadVars" text=".contentType" version="6" />
          </folder>
          <folder name="Events" id="Events" tiptext="Events received by the LoadVars object" helpid="2725" version="6">
            <string name="onLoad" tiptext="Callback invoked when load/sendAndLoad completes" helpid="2637" object="LoadVars" text=".onLoad(success)" version="6" type="event" />
          </folder>
        </folder>
      </ifdef>
 
      <!-- XML object -->
      <folder name="XML" id="XML" index="true" sort="false" tiptext="Object that allows you to work with XML documents" helpid="2561" version="5" >
        <string name="new XML" tiptext="Creates new XML object" helpid="2556" text="new XML(% source %)" version="5" />
        <folder name="Methods" id="Methods" tiptext="Methods of XML objects" helpid="2699" version="5">
          <string name="appendChild" tiptext="Appends a child to an XML element" helpid="2544" object="XML" text=".appendChild(% child %)" type="procedure" version="5" />
          <string name="cloneNode" tiptext="Clones this node, and optionally children" helpid="2547" object="XML" text=".cloneNode(% deep %)" version="5" />
          <string name="createElement" tiptext="Creates a new XML element" helpid="2548" object="XML" text=".createElement(% nodeName %)" version="5" />
          <string name="createTextNode" tiptext="Creates a new XML text node" helpid="2549" object="XML" text=".createTextNode(% text %)" version="5" />
          <ifdef mode="FEATURE_XML_ENHANCEMENTS">
            <string name="getBytesLoaded" tiptext="Returns the number of bytes loaded of XML" helpid="2644" object="XML" text=".getBytesLoaded()" version="6" />
            <string name="getBytesTotal" tiptext="Returns expected total downloaded size of XML" helpid="2645" object="XML" text=".getBytesTotal()" version="6" />
          </ifdef>
          <string name="hasChildNodes" tiptext="Returns true if XML element has child nodes" helpid="2551" object="XML" text=".hasChildNodes()" version="5" />
          <string name="insertBefore" tiptext="Inserts a child before another child in an XML element" helpid="2552" object="XML" text=".insertBefore(% newChild, beforeChild %)" type="procedure" version="5" />
          <string name="load" tiptext="Loads XML into Flash from an URL" helpid="2554" object="XML" text=".load(% url %)" type="procedure" version="5" />
          <string name="parseXML" tiptext="Parses XML string into this XML object" helpid="2564" object="XML" text=".parseXML(% string %)" type="procedure" version="5" />
          <string name="removeNode" tiptext="Removes node from the XML document hierarchy" helpid="2566" object="XML" text=".removeNode()" type="procedure" version="5" />
          <string name="send" tiptext="Sends XML from Flash to an URL" helpid="2567" object="XML" text=".send(% url, window %)" type="procedure" version="5" />
          <string name="sendAndLoad" tiptext="Sends XML from Flash to an URL and download XML results" helpid="2568" object="XML" text=".sendAndLoad(% url, resultXML %)" type="procedure" version="5" />
          <string name="toString" tiptext="Converts this XML object to an XML string" helpid="2569" object="XML" text=".toString()" version="5" />
        </folder>
        <folder name="Properties" id="Properties" tiptext="Properties of XML objects" helpid="2700" version="5">
          <string name="loaded" tiptext="Sets to true if XML load/sendAndLoad completed" helpid="2555" object="XML" text=".loaded" version="5" />
          <string name="firstChild" tiptext="First child of this XML node" helpid="2550" object="XML" text=".firstChild" version="5" />
          <string name="lastChild" tiptext="Last child of this XML node" helpid="2553" object="XML" text=".lastChild" version="5" />
          <string name="nextSibling" tiptext="Next sibling of this XML node" helpid="2557" object="XML" text=".nextSibling" version="5" />
          <string name="previousSibling" tiptext="Previous sibling of this XML node" helpid="2565" object="XML" text=".previousSibling" version="5" />
          <string name="nodeValue" tiptext="Value (text) of this XML text node" helpid="2560" object="XML" text=".nodeValue" version="5" />
          <string name="nodeType" tiptext="Type of this node (1=element, 3=text)" helpid="2559" object="XML" text=".nodeType" version="5" />
          <string name="nodeName" tiptext="Name of this XML element" helpid="2558" object="XML" text=".nodeName" version="5" />
          <string name="attributes" tiptext="Associative array of XML element's attributes" helpid="2545" object="XML" text=".attributes" version="5" />
          <string name="childNodes" tiptext="Array of XML element's child nodes" helpid="2546" object="XML" text=".childNodes" version="5" />
          <string name="parentNode" tiptext="Parent of this XML node" helpid="2563" object="XML" text=".parentNode" version="5" />
          <string name="status" tiptext="Status code returned by XML parser" helpid="2580" object="XML" text=".status" version="5" />
          <string name="xmlDecl" tiptext="Text of the XML document's &lt;?xml&gt; declaration" helpid="2578" object="XML" text=".xmlDecl" version="5" />
          <string name="docTypeDecl" tiptext="Text of the XML document's &lt;!DOCTYPE&gt; declaration" helpid="2579" object="XML" text=".docTypeDecl" version="5" />
          <string name="ignoreWhite" tiptext="Set to true to ignore whitespace" helpid="2745" object="XML" text=".ignoreWhite" version="5" />
          <string name="contentType" tiptext="MIME Content Type for send/sendAndLoad" helpid="2746" object="XML" text=".contentType" version="5" />
	    </folder>
        <folder name="Events" id="Events" tiptext="Events received by XML objects" helpid="2701" version="5">
          <string name="onLoad" tiptext="Callback invoked when load/sendAndLoad completes" helpid="2562" object="XML" text=".onLoad(success)" version="5" type="event" />
          <string name="onData" tiptext="Callback to receive raw data from server" helpid="3013" object="XML" text=".onData(data)" version="5" type="event" />
	    </folder>
      </folder>

      <!-- XMLSocket object -->
      <folder name="XMLSocket" id="XMLSocket" index="true" sort="false" tiptext="XML socket connection to server" helpid="2539" version="5">
        <string name="new XMLSocket" tiptext="Creates a new XMLSocket object" helpid="2538" text="new XMLSocket()" version="5" />
        <folder name="Methods" id="Methods" tiptext="Methods of XMLSocket objects" helpid="2701" version="5">
          <string name="connect" tiptext="Connects to specified host and port" helpid="2537" object="XMLSocket" text=".connect(% host, port %)" type="procedure" version="5" />
          <string name="send" tiptext="Sends XML document to server" helpid="2543" object="XMLSocket" text=".send(% data %)" type="procedure" version="5" />
          <string name="close" tiptext="Closes current socket connection" helpid="2536" object="XMLSocket" text=".close()" type="procedure" version="5" />
	    </folder>
        <folder name="Events" id="Events" tiptext="Events received by XMLSocket objects" helpid="2703" version="5">
          <string name="onClose" tiptext="Function invoked when connection is closed" helpid="2540" object="XMLSocket" text=".onClose" version="5" type="event" />
          <string name="onConnect" tiptext="Callback invoked when connection is established" helpid="2541" object="XMLSocket" text=".onConnect(success)" version="5" type="event" />
          <string name="onXML" tiptext="Callback to receive XML from server" helpid="2542" object="XMLSocket" text=".onXML(xmlText)" version="5" type="event" />
          <string name="onData" tiptext="Callback to receive raw data from server" helpid="2973" object="XMLSocket" text=".onData(data)" version="5" type="event" />
	    </folder>
      </folder>

    </folder>

    <ifdef mode="FEATURE_CUSTOM_ACTIONS">
      <folder name="Authoring" id="Authoring" tiptext="Objects specific to the Authoring Tool" helpid="2883" version="6">
        <folder name="CustomActions" index="true" sort="false" helpid="2884" tiptext="Object that manages Custom Actions" version="6">
          <folder name="Methods" helpid="2885" tiptext="Methods of the CustomActions object" version="6">
            <string name="install" helpid="2886" tiptext="Installs a Custom Action" text="CustomActions.install(% name, xmltext %)" type="procedure" version="6" />
            <string name="uninstall" helpid="2887" tiptext="Uninstalls a Custom Action" text="CustomActions.uninstall(% name %)" type="procedure" version="6" />
            <string name="list" helpid="2888" tiptext="Returns a list of all Custom Actions" text="CustomActions.list()" version="6" />
            <string name="get" helpid="2889" tiptext="Gets the definition of the named Custom Action" text="CustomActions.get(% name %)" version="6" />
          </folder>
        </folder>
        <ifdef mode="FEATURE_LIVE_PREVIEW">
          <folder name="Live Preview" id="Live_Preview" tiptext="Actions specific to Live Preview of Components" helpid="2982" version="6" index="true">
            <action id="function" name="onUpdate" tiptext="Declares the onUpdate callback function" helpid="2983" text="function onUpdate() {\n}\n" version="6" />
          </folder>
        </ifdef>
      </folder>
    </ifdef>

  </folder>

  <deprecate>
    <folder name="Deprecated" id="Deprecated" index="true" tiptext="Features that should be avoided in new content" helpid="2626">
      <folder name="Actions" id="Actions" tiptext="Deprecated actions" helpid="2627">
        <ifmode mode="normal">
          <action id="toggleHighQuality" name="toggleHighQuality" tiptext="Toggles between low and high quality" helpid="2521"  quickey="tq"/>
          <action id="tellTarget" name="tellTarget" tiptext="Within tellTarget, actions operate on targeted movie clip" helpid="2518"  quickey="tt" version="3" />
          <action id="ifFrameLoaded" name="ifFrameLoaded" tiptext="Performs actions only if a particular frame is loaded" helpid="2357"  quickey="il" version="3" />
        </ifmode>
        <ifmode mode="expert">
          <string name="toggleHighQuality" tiptext="Toggles between low and high quality" helpid="2521" text="toggleHighQuality();\n" quickey="tq" />
          <string name="tellTarget" tiptext="Within tellTarget, actions operate on targeted movie clip" helpid="2518" text="tellTarget (% target %) {\n}\n" quickey="tt" version="3" />
          <string name="ifFrameLoaded" tiptext="Performs actions only if a particular frame is loaded" helpid="2357" text="ifFrameLoaded (% frame %) {\n}\n" quickey="il" version="3" />
        </ifmode>
      </folder>
      <folder name="Operators" id="Operators" tiptext="Deprecated operators" helpid="2628">
        <string name="&lt;&gt;" tiptext="Not equals" helpid="2437" text="&lt;&gt;" version="4" />
        <string name="and" tiptext="Logical AND" helpid="2204" text="and" version="4" />
        <string name="or" tiptext="Logical OR" helpid="2443" text="or" version="4" />
        <string name="not" tiptext="Logical NOT" helpid="2426" text="not" version="4" />
        <string name="add" tiptext="Concatenate strings together" helpid="2274" text="add" version="4" />
        <string name="eq" tiptext="Test equality (strings)" helpid="2493" text="eq" version="4" />
        <string name="ne" tiptext="Test inequality (strings)" helpid="2503" text="ne" version="4" />
        <string name="lt" tiptext="Less than (strings)" helpid="2502" text="lt" version="4" />
        <string name="gt" tiptext="Greater than (strings)" helpid="2497" text="gt" version="4" />
        <string name="le" tiptext="Less than or equal to (strings)" helpid="2500" text="le" version="4" />
        <string name="ge" tiptext="Greater than or equal to (strings)" helpid="2496" text="ge" version="4" />
      </folder>
      <folder name="Functions" id="Functions" tiptext="Deprecated functions" helpid="2495" version="4" >
        <string name="substring" tiptext="Extract count characters from string, starting at index'th character" helpid="2513" text="substring(% string, index, count %)" version="4" />
        <string name="length" tiptext="Calculate the length of the string" helpid="2388" text="length(% string %)" version="4" />
        <string name="chr" tiptext="Convert an ASCII code to a character" helpid="2247" text="chr(% asciiCode %)" version="4" />
        <string name="ord" tiptext="Convert a character to an ASCII code" helpid="2444" text="ord(% character %)" version="4" />
        <string name="mbsubstring" tiptext="Extract count characters from string, starting at index'th character (multibyte aware)" helpid="2408" text="mbsubstring(% string, index, count %)" version="4" />
        <string name="mblength" tiptext="Calculate the length of the string (multibyte aware)" helpid="2406" text="mblength(% string %)" version="4" />
        <string name="mbchr" tiptext="Convert an ASCII/S-JIS code to a character (multibyte aware)" helpid="2405" text="mbchr(% asciiCode %)" version="4" />
        <string name="mbord" tiptext="Convert a character to an ASCII/S-JIS code (multibyte aware)" helpid="2407" text="mbord(% character %)" version="4" />
        <string name="int" tiptext="Extract the integer part of a number" helpid="2360" text="int(% number %)" version="4" />
        <string name="random" tiptext="Generate a random number between 0 and specified number" helpid="2459" text="random(% number %)" version="4" />
      </folder>
      <folder name="Properties" id="Properties" tiptext="Deprecated properties" helpid="2629" version="4" >
        <property name="_highquality" description="High quality" tiptext="Returns false if low quality, true if high quality" helpid="2354" variable="_highquality" version="4" />
        <string name="scroll" tiptext="Index of first visible line in text field" helpid="2574" text=".scroll" version="4" />
        <string name="maxscroll" tiptext="Maximum value of .scroll in text field" helpid="2575" text=".maxscroll" version="4" />
      </folder>
    </folder>
  </deprecate>

</actionspanel>
