﻿<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- saved from url=(0014)about:internet -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta name="book" content="ActionScript&nbsp;3.0&nbsp;Language&nbsp;and&nbsp;Components&nbsp;Reference"><title>ActionScript 2.0 Migration (ActionScript 3.0)</title><link rel="stylesheet" href="style.css" type="text/css" media="screen"><link rel="stylesheet" href="print.css" type="text/css" media="print"><link rel="stylesheet" href="override.css" type="text/css"></head><body><script language="javascript" type="text/javascript" src="asdoc.js"></script><script language="javascript" type="text/javascript" src="help.js"></script><script language="javascript" type="text/javascript" src="cookies.js"></script><script language="javascript" type="text/javascript">  
            <!--  
			    
				asdocTitle = 'ActionScript 2.0 Migration - ActionScript 3.0 Language and Components Reference';

				var baseRef = '';

				window.onload = configPage;
			      
			    -->  
            </script>
<script language="javascript" type="text/javascript"><!--
function submitValue(){
var searchStr=document.getElementById('search-livedocs').value;
window.location="search.html"+"###"+searchStr;
}
--></script><script type="text/javascript">
		scrollToNameAnchor();
	</script><table class="titleTable" cellpadding="0" cellspacing="0" id="titleTable" style="display:none"><tr><td class="titleTableTitle" align="left">ActionScript 3.0 Language and Components Reference</td><td class="titleTableSearch" align="center"><form class="searchForm" method="get" action="search.html" onsubmit="submitValue();"><input class="hidden" name="loc" value="" type="hidden"><input class="hidden" name="termPrefix" value="" type="hidden"><input class="hidden" name="term" value="" type="hidden"><input class="hidden" name="area" value="" type="hidden"><input id="search-livedocs" name="search_text" value="" title="" type="text"> <input type="button" name="action" value="Search" onclick="submitValue()"></form></td><td class="titleTableTopNav" align="right"><a href="../../Flash/10.0_Welcome/index.html">Home</a>&nbsp;|&nbsp;<a href="package-summary.html" onclick="loadClassListFrame('all-classes.html')">All Packages</a>&nbsp;|&nbsp;<a href="class-summary.html" onclick="loadClassListFrame('all-classes.html')">All Classes</a>&nbsp;|&nbsp;<a href="language-elements.html">Language Elements</a>&nbsp;| <a href="all-index-Symbols.html" onclick="loadClassListFrame('index-list.html')">Index</a>&nbsp;|&nbsp;<a href="appendixes.html">Appendixes</a>&nbsp;|&nbsp;<a href="conventions.html">Conventions</a>&nbsp;|&nbsp;<a id="framesLink1" href="index.html?migration.html&amp;all-classes.html">Frames</a><a id="noFramesLink1" style="display:none" href="" onclick="parent.location=document.location"> No Frames </a></td><td class="titleTableLogo" align="right" rowspan="3"><img src="images/logo.jpg" class="logoImage" alt=" Adobe Logo " title=" Adobe Logo "></td></tr><tr class="titleTableRow2"><td class="titleTableSubTitle" id="subTitle" align="left">ActionScript 2.0 Migration</td><td class="titleTableSubNav" id="subNav" align="right" colspan="2"></td></tr><tr class="titleTableRow3"><td colspan="3">&nbsp;</td></tr></table><script language="javascript" type="text/javascript" xml:space="preserve">
                
                    
                

				<!--

				
				    
				

					if (!isEclipse() || window.name != ECLIPSE_FRAME_NAME) {titleBar_setSubTitle("ActionScript 2.0 Migration"); titleBar_setSubNav(false,false,false	,false,false,false,false,false,false	,false,false,false,false,false);}

				    
				        
				    
				-->
                
                    
                
			</script><div class="MainContent"><br><p>The following table describes the differences between ActionScript 2.0 and 3.0.</p><br><table cellpadding="3" cellspacing="0" class="summaryTable"><tr><th>&nbsp;</th><th>ActionScript 2.0</th><th>ActionScript 3.0</th><th width="90%">Comments</th></tr><tr bgcolor="#CCCCCC" class="SummaryTableHeader"><td class="summaryTablePaddingCol">&nbsp;</td><td colspan="3"><b> Compiler Directives</b></td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">#endinitclip </td><td>Removed</td><td class="summaryTableLastCol">The <code>#endinitclip</code> directive identifies the end of initialization code in ActionScript 2.0, but has no use in ActionScript 3.0.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">#include </td><td>Removed</td><td class="summaryTableLastCol">See the <code>include</code> statement for similar functionality.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">#initclip </td><td>Removed</td><td class="summaryTableLastCol">The <code>#initclip</code> directive identifies the beginning of initialization code in ActionScript 2.0, but has no use in ActionScript 3.0.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC" class="SummaryTableHeader"><td class="summaryTablePaddingCol">&nbsp;</td><td colspan="3"><b>Constants</b></td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">false </td><td><a href="statements.html#false">false</a></td><td class="summaryTableLastCol">The value <code>false</code>, rather than <code>undefined</code>, is the default value of a Boolean object.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">NaN </td><td><a href="package.html#NaN">NaN</a></td><td class="summaryTableLastCol">The value <code>NaN</code>, rather than <code>undefined</code>, is the default value of a Number object.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">newline </td><td>Removed</td><td class="summaryTableLastCol">Use the escape sequence composed of the backslash character followed by the character "n" (\n).</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">null </td><td><a href="statements.html#null">null</a></td><td class="summaryTableLastCol">The value <code>null</code>, rather than <code>undefined</code>, is the default value of the Object and String classes.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">undefined </td><td><a href="package.html#undefined">undefined</a></td><td class="summaryTableLastCol">The value <code>undefined</code> can be assigned only to untyped variables; it is not the default value of any typed object.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC" class="SummaryTableHeader"><td class="summaryTablePaddingCol">&nbsp;</td><td colspan="3"><b>Global Functions</b></td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">asfunction </td><td><a href="flash/text/TextField.html#event:link">flash.text.TextField dispatches event: link</a></td><td class="summaryTableLastCol">Replaced by the new event handling model. You now get the same functionality by using the syntax <code>Event:</code> instead of <code>asfunction:</code>. When a user clicks the link, Flash Player dispatches a TextEvent object of type TextEvent.LINK, which your code can listen for with the <code>addEventListener()</code> method. Any text that you decide to include is stored in the event object's <code>text</code> property.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">call() </td><td>Removed</td><td class="summaryTableLastCol">The <code>call()</code> function was deprecated. > Use the <code>function</code> statement for similar functionality.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">chr() </td><td>Removed</td><td class="summaryTableLastCol">Use String.fromCharCode() instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">clearInterval() </td><td><a href="flash/utils/package.html#clearInterval()">flash.utils.clearInterval()</a></td><td class="summaryTableLastCol">Moved to flash.utils package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">clearTimeout() </td><td><a href="flash/utils/package.html#clearTimeout()">flash.utils.clearTimeout()</a></td><td class="summaryTableLastCol">Moved to flash.utils package.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">duplicateMovieClip() </td><td><a href="flash/display/MovieClip.html#MovieClip()">flash.display.MovieClip.MovieClip()</a></td><td class="summaryTableLastCol">Replaced by new MovieClip class constructor function.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">eval() </td><td>Removed</td><td class="summaryTableLastCol">There is no equivalent in ActionScript 3.0.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">fscommand() </td><td><a href="flash/system/package.html#fscommand()">flash.system.fscommand()</a></td><td class="summaryTableLastCol">Moved to flash.system package. Also, see flash.external.ExternalInterface class for JavaScript/ActionScript communication.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getProperty() </td><td>Removed</td><td class="summaryTableLastCol">To directly access properties, use the dot (.) operator.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getTimer() </td><td><a href="flash/utils/package.html#getTimer()">flash.utils.getTimer()</a></td><td class="summaryTableLastCol">Moved to flash.utils package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getURL() </td><td><a href="flash/net/package.html#navigateToURL()">flash.net.navigateToURL()</a></td><td class="summaryTableLastCol">Replaced by the <code>navigateToURL()</code> function.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getVersion() </td><td><a href="flash/system/Capabilities.html#version">flash.system.Capabilities.version</a></td><td class="summaryTableLastCol">Moved to Capabilities class and changed to accessor property.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">gotoAndPlay() </td><td><a href="flash/display/MovieClip.html#gotoAndPlay()">flash.display.MovieClip.gotoAndPlay()</a></td><td class="summaryTableLastCol">This function is no longer a global function, but is still available as a method of the MovieClip class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">gotoAndStop() </td><td><a href="flash/display/MovieClip.html#gotoAndStop()">flash.display.MovieClip.gotoAndStop()</a></td><td class="summaryTableLastCol">This function is no longer a global function, but it is still available as a method of the MovieClip class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">ifFrameLoaded() </td><td><a href="flash/display/MovieClip.html#framesLoaded">flash.display.MovieClip.framesLoaded</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">int() </td><td><a href="package.html#int()">int()</a></td><td class="summaryTableLastCol">int() Resurrected from deprecated status as a conversion function for the new int data type.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">length() </td><td><a href="String.html#length">String.length</a></td><td class="summaryTableLastCol">This property is no longer a global property, but it is still available as a property of the String class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">loadMovie() </td><td><a href="flash/display/Loader.html">flash.display.Loader</a></td><td class="summaryTableLastCol">Use the Loader class instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">loadMovieNum() </td><td><a href="flash/display/Loader.html">flash.display.Loader</a></td><td class="summaryTableLastCol">Use the Loader class instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">loadVariables() </td><td><a href="flash/net/URLLoader.html">flash.net.URLLoader</a></td><td class="summaryTableLastCol">Use the URLLoader class instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">loadVariablesNum() </td><td><a href="flash/net/URLLoader.html">flash.net.URLLoader</a></td><td class="summaryTableLastCol">Use the URLLoader class instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">mbchr() </td><td><a href="String.html#fromCharCode()">String.fromCharCode()</a></td><td class="summaryTableLastCol">Removed. Use the static <code>String.fromCharCode()</code> method instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">mblength() </td><td><a href="String.html#length">String.length</a></td><td class="summaryTableLastCol">Removed. Use <code>String.length</code> instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">mbord() </td><td><a href="String.html#charCodeAt()">String.charCodeAt()</a></td><td class="summaryTableLastCol">Removed. Use <code>String.charCodeAt()</code> instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">mbsubstring() </td><td><a href="String.html#substr()">String.substr()</a></td><td class="summaryTableLastCol">Removed. Use <code>String.substr()</code> instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">nextFrame() </td><td><a href="flash/display/MovieClip.html#nextFrame()">flash.display.MovieClip.nextFrame()</a></td><td class="summaryTableLastCol">This function is no longer a global function, but it is still available as a method of the MovieClip class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">nextScene() </td><td><a href="flash/display/MovieClip.html#nextScene()">flash.display.MovieClip.nextScene()</a></td><td class="summaryTableLastCol">This function is no longer a global function, but it is still available as a method of the MovieClip class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">on() </td><td><a href="flash/events/EventDispatcher.html">flash.events.EventDispatcher</a></td><td class="summaryTableLastCol">Removed. Use the new event handling system in the flash.events package instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onClipEvent() </td><td><a href="flash/events/EventDispatcher.html">flash.events.EventDispatcher</a></td><td class="summaryTableLastCol">Removed. Use the new event handling system in the flash.events package instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">ord() </td><td><a href="String.html">String</a></td><td class="summaryTableLastCol">Removed. Use String class methods instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">parseInt() </td><td><a href="package.html#parseInt()">parseInt()</a></td><td class="summaryTableLastCol">A string with a leading 0 is interpreted as decimal rather than octal. For octal numbers, pass the number 8 for the radix parameter.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">play() </td><td><a href="flash/display/MovieClip.html#play()">flash.display.MovieClip.play()</a></td><td class="summaryTableLastCol">This function is no longer a global function, but it is still available as a method of the MovieClip class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">prevFrame() </td><td><a href="flash/display/MovieClip.html#prevFrame()">flash.display.MovieClip.prevFrame()</a></td><td class="summaryTableLastCol">This function is no longer a global function, but it is still available as a method of the MovieClip class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">prevScene() </td><td><a href="flash/display/MovieClip.html#prevScene()">flash.display.MovieClip.prevScene()</a></td><td class="summaryTableLastCol">This function is no longer a global function, but it is still available as a method of the MovieClip class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">print() </td><td><a href="flash/printing/PrintJob.html">flash.printing.PrintJob</a></td><td class="summaryTableLastCol">Removed. Use the PrintJob class instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">printAsBitmap() </td><td><a href="flash/printing/PrintJob.html">flash.printing.PrintJob</a></td><td class="summaryTableLastCol">Removed. Use the PrintJob class instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">printAsBitmapNum() </td><td><a href="flash/printing/PrintJob.html">flash.printing.PrintJob</a></td><td class="summaryTableLastCol">Removed. Use the PrintJob class instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">printNum() </td><td><a href="flash/printing/PrintJob.html">flash.printing.PrintJob</a></td><td class="summaryTableLastCol">Removed. Use the PrintJob class instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">random() </td><td><a href="Math.html#random()">Math.random()</a></td><td class="summaryTableLastCol">Removed. Use <code>Math.random()</code> instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeMovieClip() </td><td>Removed</td><td class="summaryTableLastCol">Set all references to a movie clip to <code>null</code> to make the movie clip eligible for garbage collection.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setInterval() </td><td><a href="flash/utils/package.html#setInterval()">flash.utils.setInterval()</a></td><td class="summaryTableLastCol">Moved to flash.utils package. Consider using the Timer class instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setProperty() </td><td>Removed</td><td class="summaryTableLastCol">To set the value of a writable property, use the dot (.) operator.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setTimeout() </td><td><a href="flash/utils/package.html#setTimeout()">flash.utils.setTimeout()</a></td><td class="summaryTableLastCol">Moved to flash.utils package.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">showRedrawRegions() </td><td><a href="flash/profiler/package.html#showRedrawRegions()">flash.profiler.showRedrawRegions()</a></td><td class="summaryTableLastCol">Moved to flash.profiler package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">startDrag() </td><td><a href="flash/display/Sprite.html#startDrag()">flash.display.Sprite.startDrag()</a></td><td class="summaryTableLastCol">This is no longer a global function, but it is still available as a method of the Sprite class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">stop() </td><td><a href="flash/display/MovieClip.html#stop()">flash.display.MovieClip.stop()</a></td><td class="summaryTableLastCol">This is no longer a global function, but it is still available as a method of the MovieClip class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">stopAllSounds() </td><td><a href="flash/media/SoundMixer.html#stopAll()">flash.media.SoundMixer.stopAll()</a></td><td class="summaryTableLastCol">This is no longer a global function, but it is still available as a method of the SoundMixer class, which provides global sound control.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">stopDrag() </td><td><a href="flash/display/Sprite.html#stopDrag()">flash.display.Sprite.stopDrag()</a></td><td class="summaryTableLastCol">This is no longer a global function, but it is still available as a method of the Sprite class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">substring() </td><td><a href="String.html#substring()">String.substring()</a></td><td class="summaryTableLastCol">This is no longer a global function, but it is still available as a method of the String class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">targetPath() </td><td>Removed</td><td class="summaryTableLastCol">ActionScript 3.0 identifies display objects directly; therefore, identifying a > display object by its path is no longer necessary.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">tellTarget() </td><td>Removed</td><td class="summaryTableLastCol">Use the dot (.) operator or the <code>with</code> statement instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">toggleHighQuality() </td><td><a href="flash/display/Stage.html#quality">flash.display.Stage.quality</a></td><td class="summaryTableLastCol">Removed as a global property. Use the Stage class version instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">trace() </td><td><a href="package.html#trace()">trace()</a></td><td class="summaryTableLastCol">The <code>trace()</code> method accepts a comma-delimited list of arguments.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">unloadMovie() </td><td><a href="flash/display/Loader.html#unload()">flash.display.Loader.unload()</a></td><td class="summaryTableLastCol">Removed. Use <code>Loader.unload()</code> instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">unloadMovieNum() </td><td><a href="flash/display/Loader.html#unload()">flash.display.Loader.unload()</a></td><td class="summaryTableLastCol">Removed. Use <code>Loader.unload()</code> instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">updateAfterEvent() </td><td><a href="flash/events/TimerEvent.html#updateAfterEvent()">flash.events.TimerEvent.updateAfterEvent()</a></td><td class="summaryTableLastCol">This is no longer a global function, but it is still available as a method of the TimerEvent, MouseEvent, and KeyboardEvent classes.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC" class="SummaryTableHeader"><td class="summaryTablePaddingCol">&nbsp;</td><td colspan="3"><b>Global Properties Global Properties</b></td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_accProps </td><td><a href="flash/accessibility/AccessibilityProperties.html">flash.accessibility.AccessibilityProperties</a></td><td class="summaryTableLastCol">Replaced by the AccessibilityProperties class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_focusrect </td><td><a href="flash/display/InteractiveObject.html#focusRect">flash.display.InteractiveObject.focusRect</a></td><td class="summaryTableLastCol">Replaced by the <code>focusRect</code> property of the InteractiveObject class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_global </td><td>Removed</td><td class="summaryTableLastCol">Use a static member of a class instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_highquality </td><td><a href="flash/display/Stage.html#quality">flash.display.Stage.quality</a></td><td class="summaryTableLastCol">Replaced by the <code>quality</code> property of the Stage class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_level </td><td>Removed</td><td class="summaryTableLastCol">The concept of levels does not exist in ActionScript 3.0, which instead provides direct access to the display list. See the flash.display package for details.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">maxscroll </td><td><a href="flash/text/TextField.html">flash.text.TextField</a></td><td class="summaryTableLastCol">Replaced by the <code>maxScrollH</code> and <code>maxScrollV</code> properties of the TextField class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_parent </td><td><a href="flash/display/DisplayObject.html#parent">flash.display.DisplayObject.parent</a></td><td class="summaryTableLastCol">Replaced by the <code>parent</code> property of the DisplayObject class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_quality </td><td><a href="flash/display/Stage.html#quality">flash.display.Stage.quality</a></td><td class="summaryTableLastCol">Replaced by the <code>quality</code> property of the Stage class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_root </td><td><a href="flash/display/DisplayObject.html#stage">flash.display.DisplayObject.stage</a></td><td class="summaryTableLastCol">Removed. The closest equivalent is the Stage, which serves as the root of the ActionScript 3.0 display list.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">scroll </td><td><a href="flash/text/TextField.html">flash.text.TextField</a></td><td class="summaryTableLastCol">Removed. Replaced by the <code>scrollH</code> and <code>scrollV</code> properties of the TextField class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_soundbuftime </td><td><a href="flash/media/SoundMixer.html#bufferTime">flash.media.SoundMixer.bufferTime</a></td><td class="summaryTableLastCol">Replaced by the <code>bufferTime</code> property of the SoundMixer class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">this </td><td><a href="statements.html#this">this</a></td><td class="summaryTableLastCol">Instance methods are bound to the instance that implemented the method; therefore, the <code>this</code> reference inside the body of an instance method always refers to the instance that implemented the method.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC" class="SummaryTableHeader"><td class="summaryTablePaddingCol">&nbsp;</td><td colspan="3"><b>Operators</b></td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">add (concatenation (strings))</td><td>Removed</td><td class="summaryTableLastCol">Use the concatenation (+) operator instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">eq (equality (strings))</td><td>Removed</td><td class="summaryTableLastCol">Use the equality (==) operator instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">gt (greater than (strings))</td><td>Removed</td><td class="summaryTableLastCol">Use the greater than (<code>&gt;</code>) operator instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">ge (greater than or equal to (strings))</td><td>Removed</td><td class="summaryTableLastCol">Use the greater than or equal to (<code>&gt;=</code>) operator instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true"><> (inequality)</td><td>Removed</td><td class="summaryTableLastCol">Use the inequality (<code>!=</code>) operator instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">instanceof</td><td><a href="operators.html#is">is</a></td><td class="summaryTableLastCol">Although the <code>instanceof</code> operator is available, it only checks the prototype chain, which is not the primary inheritance mechanism in ActionScript 3.0. Use the <code>is</code> operator to check whether an object is a member of a specific data type.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">lt (less than (strings))</td><td>Removed</td><td class="summaryTableLastCol">Use the less than (<code>&lt;</code>) operator instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">le (less than or equal to (strings))</td><td>Removed</td><td class="summaryTableLastCol">Use the less than or equal to (<code>&lt;=</code>) operator instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">and (logical AND)</td><td>Removed</td><td class="summaryTableLastCol">Use the logical AND (<code>&amp;&amp;</code>) operator instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">not (logical NOT)</td><td>Removed</td><td class="summaryTableLastCol">Use the logical NOT (<code>!</code>) operator instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">or (logical OR)</td><td>Removed</td><td class="summaryTableLastCol">Use the logical OR (<code>||</code>) operator instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">ne (not equal (strings))</td><td>Removed</td><td class="summaryTableLastCol">Use the inequality (<code>!=</code>) operator instead.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC" class="SummaryTableHeader"><td class="summaryTablePaddingCol">&nbsp;</td><td colspan="3"><b>Statements</b></td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">delete</td><td><a href="operators.html#delete">delete</a></td><td class="summaryTableLastCol">The <code>delete</code> operator works only on properties of objects, but not on variables that hold references to objects.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">import</td><td><a href="statements.html#import">import</a></td><td class="summaryTableLastCol">The <code>import</code> statement is not optional. To use a class, you must import it, whether or not you use a fully qualified name.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">intrinsic</td><td>Removed</td><td class="summaryTableLastCol">ActionScript 3.0 has a similar, but not identical, keyword named <code>native</code>. The <code>native</code> keyword is similar to <code>intrinsic</code> in that it directs the compiler not to expect a function body, but is dissimilar in that <code>native</code> has no effect on compile-time type checking.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">private</td><td><a href="statements.html#private">private</a></td><td class="summaryTableLastCol">The ActionScript 3.0 <code>private</code> keyword specifies that an identifier is visible only within a class, and does not extend to subclasses. Moreover, in ActionScript 3.0 the <code>private</code> keyword is enforced at both compile time and run time.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">set variable</td><td>Removed</td><td class="summaryTableLastCol">Use the assignment (<code>=</code>) operator instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">super</td><td><a href="statements.html#super">super</a></td><td class="summaryTableLastCol">In ActionScript 3.0, the call to <code>super()</code> in a subclass constructor does not have to be the first statement in the constructor body.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Accessibility (class)</b></td><td><a href="flash/accessibility/Accessibility.html">flash.accessibility.Accessibility</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">isActive() Method        </td><td><a href="flash/accessibility/Accessibility.html#active">flash.accessibility.Accessibility.active</a></td><td class="summaryTableLastCol">Changed from function to accessor property. Name changed from <code>isActive</code> to <code>active</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">updateProperties() Method        </td><td><a href="flash/accessibility/Accessibility.html#updateProperties()">flash.accessibility.Accessibility.updateProperties()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>arguments (class)</b></td><td><a href="arguments.html">arguments</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">caller Property       </td><td>Removed</td><td class="summaryTableLastCol">You can achieve the same functionality by passing <code>arguments.callee</code> from the caller function as an argument to the callee function. See the Examples section of <code>arguments.callee</code> for an example.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Array (class)</b></td><td colspan="2">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">CASEINSENSITIVE Constant       </td><td><a href="Array.html#CASEINSENSITIVE">Array.CASEINSENSITIVE</a></td><td class="summaryTableLastCol">Data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">DESCENDING Constant       </td><td><a href="Array.html#DESCENDING">Array.DESCENDING</a></td><td class="summaryTableLastCol">Data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">length Property       </td><td><a href="Array.html#length">Array.length</a></td><td class="summaryTableLastCol">Data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">NUMERIC Constant       </td><td><a href="Array.html#NUMERIC">Array.NUMERIC</a></td><td class="summaryTableLastCol">Data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">RETURNINDEXEDARRAY Constant       </td><td><a href="Array.html#RETURNINDEXEDARRAY">Array.RETURNINDEXEDARRAY</a></td><td class="summaryTableLastCol">Data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">UNIQUESORT Constant       </td><td><a href="Array.html#UNIQUESORT">Array.UNIQUESORT</a></td><td class="summaryTableLastCol">Data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">Array Constructor       </td><td><a href="Array.html#Array()">Array.Array()</a></td><td class="summaryTableLastCol">Parameter changed to use the ...(rest) parameter format.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">push() Method       </td><td><a href="Array.html#push()">Array.push()</a></td><td class="summaryTableLastCol">Parameter changed to use the ...(rest) parameter format.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">sort() Method       </td><td><a href="Array.html#sort()">Array.sort()</a></td><td class="summaryTableLastCol">Data type of the <code>options</code> parameter changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">sortOn() Method       </td><td><a href="Array.html#sortOn()">Array.sortOn()</a></td><td class="summaryTableLastCol">Data type of the <code>options</code> parameter changed to uint. The ActionScript 3.0 version also has added functionality; you can now sort on more than one field name by passing an array of objects for the <code>fieldName</code> parameter, and each sort field can have its own matching <code>options</code> parameter if you also pass in a matching array of options flags for the <code>options</code> parameter.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">splice() Method       </td><td><a href="Array.html#splice()">Array.splice()</a></td><td class="summaryTableLastCol">The parameters can have any data type, but the preferred data types are int and uint. The <code>value</code> parameter changed to the ...(rest) parameter format.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">unshift() Method       </td><td><a href="Array.html#unshift()">Array.unshift()</a></td><td class="summaryTableLastCol">The <code>value</code> parameter changed to the ...(rest) format. Data type of the return value changed to uint.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>AsBroadcaster (class)</b></td><td><a href="flash/events/EventDispatcher.html">flash.events.EventDispatcher</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_listeners Property[read-only]       </td><td><a href="flash/events/EventDispatcher.html#willTrigger()">flash.events.EventDispatcher.willTrigger()</a></td><td class="summaryTableLastCol">Not a direct equivalent. The <code>willTrigger()</code> method tells you whether any listeners are registered, but not how many.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addListener() Method       </td><td><a href="flash/events/EventDispatcher.html#addEventListener()">flash.events.EventDispatcher.addEventListener()</a></td><td class="summaryTableLastCol">Not a direct equivalent, because the ActionScript 3.0 event model lets you add event listeners to any object in the event flow, not just to the broadcasting object.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">broadcastMessage() Method       </td><td><a href="flash/events/EventDispatcher.html#dispatchEvent()">flash.events.EventDispatcher.dispatchEvent()</a></td><td class="summaryTableLastCol">Not a direct equivalent, because the ActionScript 3.0 event model works differently. The <code>dispatchEvent()</code> method dispatches an event object into the event flow, while the <code>broadcastMessage()</code> method sends messages directly to each registered listener object.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">initialize() Method       </td><td>Removed</td><td class="summaryTableLastCol">There is no direct equivalent in ActionScript 3.0, but similar functionality is achieved by subclassing the EventDispatcher class. For example, the DisplayObject class extends EventDispatcher, so all instances of the DisplayObject and DisplayObject subclasses are capable of sending and receiving event objects.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeListener() Method       </td><td><a href="flash/events/EventDispatcher.html#removeEventListener()">flash.events.EventDispatcher.removeEventListener()</a></td><td class="summaryTableLastCol">Not a direct equivalent, because the ActionScript 3.0 event model lets you add event listeners to and remove them from any object in the event flow, not just the broadcasting object.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>BitmapData (class)</b></td><td><a href="flash/display/BitmapData.html">flash.display.BitmapData</a></td><td class="summaryTableLastCol">ActionScript 3.0 uses the BitmapDataChannel class as an enumeration of constants that indicate which channel to use.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">height Property[read-only]       </td><td><a href="flash/display/BitmapData.html#height">flash.display.BitmapData.height</a></td><td class="summaryTableLastCol">Data type changed from Number to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">rectangle Property[read-only]       </td><td><a href="flash/display/BitmapData.html#rect">flash.display.BitmapData.rect</a></td><td class="summaryTableLastCol">Property renamed for consistency with other members of the API.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">width Property[read-only]       </td><td><a href="flash/display/BitmapData.html#width">flash.display.BitmapData.width</a></td><td class="summaryTableLastCol">Data type changed from Number to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">copyChannel() Method       </td><td><a href="flash/display/BitmapData.html#copyChannel()">flash.display.BitmapData.copyChannel()</a></td><td class="summaryTableLastCol">The <code>sourceChannel</code> and <code>destChannel</code> parameters are now uint data types.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">draw() Method       </td><td><a href="flash/display/BitmapData.html#draw()">flash.display.BitmapData.draw()</a></td><td class="summaryTableLastCol">The <code>source</code> parameter is now IBitmapDrawable; DisplayObject and BitmapData both implement the IBitmapDrawable interface, so you can pass either a DisplayObject or a BitmapData object to the <code>source</code> parameter.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">fillRect() Method       </td><td><a href="flash/display/BitmapData.html#fillRect()">flash.display.BitmapData.fillRect()</a></td><td class="summaryTableLastCol">The <code>color</code> parameter is now a uint value.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">floodFill() Method       </td><td><a href="flash/display/BitmapData.html#floodFill()">flash.display.BitmapData.floodFill()</a></td><td class="summaryTableLastCol">Now accepts int values for the <code>x</code> and <code>y</code> parameters and a uint value for <code>color</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getColorBoundsRect() Method       </td><td><a href="flash/display/BitmapData.html#getColorBoundsRect()">flash.display.BitmapData.getColorBoundsRect()</a></td><td class="summaryTableLastCol">Now accepts uint values for the <code>mask</code> and <code>color</code> parameters.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getPixel() Method       </td><td><a href="flash/display/BitmapData.html#getPixel()">flash.display.BitmapData.getPixel()</a></td><td class="summaryTableLastCol">Now accepts <code>int</code> parameter values and returns a uint value.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getPixel32() Method       </td><td><a href="flash/display/BitmapData.html#getPixel32()">flash.display.BitmapData.getPixel32()</a></td><td class="summaryTableLastCol">Now accepts <code>int</code> parameter values and returns a uint value.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">hitTest() Method       </td><td><a href="flash/display/BitmapData.html#hitTest()">flash.display.BitmapData.hitTest()</a></td><td class="summaryTableLastCol">Now accepts uint values for the <code>firstAlphaThreshold</code> and <code>secondAlphaThreshold</code> parameters.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">loadBitmap() Method       </td><td>Removed</td><td class="summaryTableLastCol">This function is no longer needed because of the new bitmap support in ActionScript 3.0.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">merge() Method       </td><td><a href="flash/display/BitmapData.html#merge()">flash.display.BitmapData.merge()</a></td><td class="summaryTableLastCol">Now accepts uint values for the multiplier parameters.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">noise() Method       </td><td><a href="flash/display/BitmapData.html#noise()">flash.display.BitmapData.noise()</a></td><td class="summaryTableLastCol">Now accepts an int value for the <code>randomSeed</code> parameter and uint values for the <code>low</code>, <code>high</code>, and <code>channelOptions</code> parameters.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">perlinNoise() Method       </td><td><a href="flash/display/BitmapData.html#perlinNoise()">flash.display.BitmapData.perlinNoise()</a></td><td class="summaryTableLastCol">Now accepts an int value for the <code>randomSeed</code> parameter and uint values for the <code>numOctaves</code> and <code>channelOptions</code> parameters.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">pixelDissolve() Method       </td><td><a href="flash/display/BitmapData.html#pixelDissolve()">flash.display.BitmapData.pixelDissolve()</a></td><td class="summaryTableLastCol">Now accepts an int value for the <code>randomSeed</code> and <code>numPixels</code> parameters and a uint value for the <code>fillColor</code> parameter. (The <code>numPixels</code> parameter is named <code>numberOfPixels</code> in ActionScript 2.0.)</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">scroll() Method       </td><td><a href="flash/display/BitmapData.html#scroll()">flash.display.BitmapData.scroll()</a></td><td class="summaryTableLastCol">Now accepts int values for the <code>x</code> and <code>y</code> parameters.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setPixel() Method       </td><td><a href="flash/display/BitmapData.html#setPixel()">flash.display.BitmapData.setPixel()</a></td><td class="summaryTableLastCol">Now accepts int values for the <code>x</code> and <code>y</code> parameters and a uint value for <code>color</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setPixel32() Method       </td><td><a href="flash/display/BitmapData.html#setPixel32()">flash.display.BitmapData.setPixel32()</a></td><td class="summaryTableLastCol">Now accepts int values for the <code>x</code> and <code>y</code> parameters and a uint value for <code>color</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">threshold() Method       </td><td><a href="flash/display/BitmapData.html#threshold()">flash.display.BitmapData.threshold()</a></td><td class="summaryTableLastCol">Now accepts uint values for the <code>threshold</code>, <code>color</code>, and <code>mask</code> parameters, and returns a uint value.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>BlurFilter (class)</b></td><td colspan="2">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">quality Property      </td><td><a href="flash/filters/BlurFilter.html#quality">flash.filters.BlurFilter.quality</a></td><td class="summaryTableLastCol">The <code>quality</code> property data type changed from a Number to uint.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Button (class)</b></td><td><a href="flash/display/SimpleButton.html">flash.display.SimpleButton</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_alpha Property       </td><td><a href="flash/display/DisplayObject.html#alpha">flash.display.DisplayObject.alpha</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">blendMode Property      </td><td><a href="flash/display/DisplayObject.html#blendMode">flash.display.DisplayObject.blendMode</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">cacheAsBitmap Property      </td><td><a href="flash/display/DisplayObject.html#cacheAsBitmap">flash.display.DisplayObject.cacheAsBitmap</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">enabled Property       </td><td><a href="flash/display/SimpleButton.html#enabled">flash.display.SimpleButton.enabled</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">filters Property      </td><td><a href="flash/display/DisplayObject.html#filters">flash.display.DisplayObject.filters</a></td><td class="summaryTableLastCol">In ActionScript 3.0, the data type is Array.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_focusrect Property       </td><td><a href="flash/display/InteractiveObject.html#focusRect">flash.display.InteractiveObject.focusRect</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_height Property       </td><td><a href="flash/display/DisplayObject.html#height">flash.display.DisplayObject.height</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_highquality Property       </td><td>Removed</td><td class="summaryTableLastCol">See Stage.quality.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_name Property       </td><td><a href="flash/display/DisplayObject.html#name">flash.display.DisplayObject.name</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_parent Property       </td><td><a href="flash/display/DisplayObject.html#parent">flash.display.DisplayObject.parent</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_quality Property       </td><td>Removed</td><td class="summaryTableLastCol">You can set rendering quality for all display objects by using <code>flash.display.Stage.quality</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_rotation Property       </td><td><a href="flash/display/DisplayObject.html#rotation">flash.display.DisplayObject.rotation</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">scale9Grid Property      </td><td><a href="flash/display/DisplayObject.html#scale9Grid">flash.display.DisplayObject.scale9Grid</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_soundbuftime Property       </td><td><a href="flash/media/SoundMixer.html#bufferTime">flash.media.SoundMixer.bufferTime</a></td><td class="summaryTableLastCol">Moved to the SoundMixer class, which is used for global sound control. Renamed without abbreviations. Removed the initial underscore from the name.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">tabEnabled Property            </td><td><a href="flash/display/InteractiveObject.html#tabEnabled">flash.display.InteractiveObject.tabEnabled</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">tabIndex Property            </td><td><a href="flash/display/InteractiveObject.html#tabIndex">flash.display.InteractiveObject.tabIndex</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_target Property[read-only]       </td><td>Removed</td><td class="summaryTableLastCol">ActionScript 3.0 identifies display objects directly; therefore, identifying a display object by its path is no longer necessary.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">trackAsMenu Property            </td><td><a href="flash/display/SimpleButton.html#trackAsMenu">flash.display.SimpleButton.trackAsMenu</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_url Property[read-only]       </td><td>Removed</td><td class="summaryTableLastCol">See DisplayObject.loaderInfo.url.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">useHandCursor Property       </td><td><a href="flash/display/SimpleButton.html#useHandCursor">flash.display.SimpleButton.useHandCursor</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_visible Property       </td><td><a href="flash/display/DisplayObject.html#visible">flash.display.DisplayObject.visible</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_width Property       </td><td><a href="flash/display/DisplayObject.html#width">flash.display.DisplayObject.width</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_x Property       </td><td><a href="flash/display/DisplayObject.html#x">flash.display.DisplayObject.x</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_xmouse Property[read-only]       </td><td><a href="flash/display/DisplayObject.html#mouseX">flash.display.DisplayObject.mouseX</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_xscale Property       </td><td><a href="flash/display/DisplayObject.html#scaleX">flash.display.DisplayObject.scaleX</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_y Property       </td><td><a href="flash/display/DisplayObject.html#y">flash.display.DisplayObject.y</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_ymouse Property[read-only]       </td><td><a href="flash/display/DisplayObject.html#mouseY">flash.display.DisplayObject.mouseY</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_yscale Property       </td><td><a href="flash/display/DisplayObject.html#scaleY">flash.display.DisplayObject.scaleY</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getDepth() Method       </td><td><a href="flash/display/DisplayObjectContainer.html#getChildIndex()">flash.display.DisplayObjectContainer.getChildIndex()</a></td><td class="summaryTableLastCol">ActionScript 3.0 provides direct access to the display list, so depth is handled differently.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onDragOut() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:mouseOut">flash.display.InteractiveObject dispatches event: mouseOut</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseOut</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onDragOver() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:mouseOver">flash.display.InteractiveObject dispatches event: mouseOver</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseOver</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onKeyDown() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:keyDown">flash.display.InteractiveObject dispatches event: keyDown</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>keyDown</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onKeyUp() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:keyUp">flash.display.InteractiveObject dispatches event: keyUp</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>keyUp</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onKillFocus() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:focusOut">flash.display.InteractiveObject dispatches event: focusOut</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>focusOut</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onPress() EventHandler            </td><td><a href="flash/display/InteractiveObject.html#event:mouseDown">flash.display.InteractiveObject dispatches event: mouseDown</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseDown</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onRelease() EventHandler            </td><td><a href="flash/display/InteractiveObject.html#event:mouseUp">flash.display.InteractiveObject dispatches event: mouseUp</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseUp</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onReleaseOutside() EventHandler            </td><td><a href="flash/display/InteractiveObject.html#event:mouseUp">flash.display.InteractiveObject dispatches event: mouseUp</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseUp</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onRollOut() EventHandler            </td><td><a href="flash/display/InteractiveObject.html#event:mouseOut">flash.display.InteractiveObject dispatches event: mouseOut</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseOut</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onRollOver() EventHandler            </td><td><a href="flash/display/InteractiveObject.html#event:mouseOver">flash.display.InteractiveObject dispatches event: mouseOver</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseOver</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onSetFocus() EventHandler            </td><td><a href="flash/display/InteractiveObject.html#event:focusIn">flash.display.InteractiveObject dispatches event: focusIn</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>focusIn</code> event.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Camera (class)</b></td><td><a href="flash/media/Camera.html">flash.media.Camera</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">activityLevel Property[read-only]       </td><td><a href="flash/media/Camera.html#activityLevel">flash.media.Camera.activityLevel</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">bandwidth Property[read-only]       </td><td><a href="flash/media/Camera.html#bandwidth">flash.media.Camera.bandwidth</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">currentFps Property[read-only]       </td><td><a href="flash/media/Camera.html#currentFPS">flash.media.Camera.currentFPS</a></td><td class="summaryTableLastCol">Change in capitalization of FPS.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">fps Property[read-only]       </td><td><a href="flash/media/Camera.html#fps">flash.media.Camera.fps</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">height Property[read-only]       </td><td><a href="flash/media/Camera.html#height">flash.media.Camera.height</a></td><td class="summaryTableLastCol">Data type changed from Number to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">index Property[read-only]       </td><td><a href="flash/media/Camera.html#index">flash.media.Camera.index</a></td><td class="summaryTableLastCol">Data type changed from String to int.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">motionLevel Property[read-only]       </td><td><a href="flash/media/Camera.html#motionLevel">flash.media.Camera.motionLevel</a></td><td class="summaryTableLastCol">Data type changed from Number to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">motionTimeOut Property[read-only]       </td><td><a href="flash/media/Camera.html#motionTimeout">flash.media.Camera.motionTimeout</a></td><td class="summaryTableLastCol">Data type changed from Number to int. Capitalization changed to <code>motionTimeout</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">muted Property[read-only]       </td><td><a href="flash/media/Camera.html#muted">flash.media.Camera.muted</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">name Property[read-only]       </td><td><a href="flash/media/Camera.html#name">flash.media.Camera.name</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">names Property[read-only]    </td><td><a href="flash/media/Camera.html#names">flash.media.Camera.names</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">quality Property[read-only]       </td><td><a href="flash/media/Camera.html#quality">flash.media.Camera.quality</a></td><td class="summaryTableLastCol">Data type changed from Number to int.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">width Property[read-only]       </td><td><a href="flash/media/Camera.html#width">flash.media.Camera.width</a></td><td class="summaryTableLastCol">Data type changed from Number to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">get() Method    </td><td><a href="flash/media/Camera.html#getCamera()">flash.media.Camera.getCamera()</a></td><td class="summaryTableLastCol">Replaced by <code>getCamera()</code>, which takes a <code>String</code> argument, rather than a <code>Number</code> argument.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onActivity() EventHandler       </td><td><a href="flash/events/ActivityEvent.html#ACTIVITY">flash.events.ActivityEvent.ACTIVITY</a></td><td class="summaryTableLastCol">Replaced by an <code>activity</code> event in the new event model.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onStatus() EventHandler       </td><td><a href="flash/media/Camera.html#event:status">flash.media.Camera dispatches event: status</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>status</code> StatusEvent object.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setMode() Method       </td><td><a href="flash/media/Camera.html#setMode()">flash.media.Camera.setMode()</a></td><td class="summaryTableLastCol">The <code>width</code> and <code>height</code> parameters changed to data type int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setMotionLevel() Method       </td><td><a href="flash/media/Camera.html#setMotionLevel()">flash.media.Camera.setMotionLevel()</a></td><td class="summaryTableLastCol">Both parameters changed to data type int.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setQuality() Method       </td><td><a href="flash/media/Camera.html#setQuality()">flash.media.Camera.setQuality()</a></td><td class="summaryTableLastCol">Both parameters changed to data type int.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>capabilities (class)</b></td><td><a href="flash/system/Capabilities.html">flash.system.Capabilities</a></td><td class="summaryTableLastCol">The class name changed from lowercase to initial capitalization.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Color (class)</b></td><td><a href="flash/geom/ColorTransform.html">flash.geom.ColorTransform</a></td><td class="summaryTableLastCol">The Color class has been removed because all of its functionality can be achieved with the flash.geom.ColorTransform class. Color values can be assigned directly by using the ColorTransform class constructor or properties. ColorTransform objects can then be assigned to the <code>colorTransform</code> property of a Transform object, which in turn can be assigned to the <code>transform</code> property of a DisplayObject instance.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">Color Constructor        </td><td><a href="flash/geom/ColorTransform.html#ColorTransform()">flash.geom.ColorTransform.ColorTransform()</a></td><td class="summaryTableLastCol">Removed. You can specify color values by using the <code>ColorTransform()</code> constructor.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getRGB() Method       </td><td><a href="flash/geom/ColorTransform.html#color">flash.geom.ColorTransform.color</a></td><td class="summaryTableLastCol">The RGB color value can be accessed by using the <code>color</code> accessor property of the ColorTransform class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getTransform() Method       </td><td>Removed</td><td class="summaryTableLastCol">Color values can be assigned directly by using the <code>ColorTransform()</code> class constructor or properties.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setRGB() Method       </td><td><a href="flash/geom/ColorTransform.html#color">flash.geom.ColorTransform.color</a></td><td class="summaryTableLastCol">The RGB color value can be set by using the <code>color</code> accessor property of the ColorTransform class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setTransform() Method       </td><td>Removed</td><td class="summaryTableLastCol">Color values can be assigned directly by using the <code>ColorTransform()</code> class constructor or properties.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>ContextMenu (class)</b></td><td><a href="flash/ui/ContextMenu.html">flash.ui.ContextMenu</a></td><td class="summaryTableLastCol">The ContextMenu class is now part of the flash.ui package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">builtInItems Property       </td><td><a href="flash/ui/ContextMenu.html#builtInItems">flash.ui.ContextMenu.builtInItems</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">customItems Property       </td><td><a href="flash/ui/ContextMenu.html#customItems">flash.ui.ContextMenu.customItems</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">ContextMenu Constructor       </td><td><a href="flash/ui/ContextMenu.html#ContextMenu()">flash.ui.ContextMenu.ContextMenu()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">copy() Method       </td><td><a href="flash/ui/ContextMenu.html#clone()">flash.ui.ContextMenu.clone()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">hideBuiltInItems() Method       </td><td><a href="flash/ui/ContextMenu.html#hideBuiltInItems()">flash.ui.ContextMenu.hideBuiltInItems()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onSelect() EventHandler       </td><td><a href="flash/ui/ContextMenu.html#event:menuSelect">flash.ui.ContextMenu dispatches event: menuSelect</a></td><td class="summaryTableLastCol">Instead of invoking the <code>onSelect()</code> event handler, the ActionScript 3.0 class dispatches a <code>menuSelect</code> event.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>ContextMenuItem (class)</b></td><td><a href="flash/ui/ContextMenuItem.html">flash.ui.ContextMenuItem</a></td><td class="summaryTableLastCol">The ContextMenuItem class is now part of the flash.ui package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">caption Property       </td><td><a href="flash/ui/ContextMenuItem.html#caption">flash.ui.ContextMenuItem.caption</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">enabled Property       </td><td><a href="flash/ui/ContextMenuItem.html#enabled">flash.ui.ContextMenuItem.enabled</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">separatorBefore Property       </td><td><a href="flash/ui/ContextMenuItem.html#separatorBefore">flash.ui.ContextMenuItem.separatorBefore</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">visible Property       </td><td><a href="flash/ui/ContextMenuItem.html#visible">flash.ui.ContextMenuItem.visible</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">ContextMenuItem Constructor       </td><td><a href="flash/ui/ContextMenuItem.html#ContextMenuItem()">flash.ui.ContextMenuItem.ContextMenuItem()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">copy() Method       </td><td><a href="flash/ui/ContextMenuItem.html#clone()">flash.ui.ContextMenuItem.clone()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onSelect() EventHandler       </td><td><a href="flash/ui/ContextMenuItem.html#event:menuItemSelect">flash.ui.ContextMenuItem dispatches event: menuItemSelect</a></td><td class="summaryTableLastCol">Instead of invoking the <code>onSelect()</code> event handler, the ActionScript 3.0 class dispatches a <code>menuSelect</code> event.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>ConvolutionFilter (class)</b></td><td colspan="2">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">clone() Method      </td><td><a href="flash/filters/ConvolutionFilter.html#clone()">flash.filters.ConvolutionFilter.clone()</a></td><td class="summaryTableLastCol">Now returns a BitmapFilter object.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Date (class)</b></td><td><a href="Date.html">Date</a></td><td class="summaryTableLastCol">ActionScript 3.0 includes a new set of read accessors for all the methods that start with get<em>xxx</em>(). For example, in ActionScript 3.0, <code>Date.getDate()</code> and <code>Date.date</code> return the same value.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getUTCYear() Method       </td><td><a href="Date.html#getUTCFullYear()">Date.getUTCFullYear()</a></td><td class="summaryTableLastCol">This method was removed because it is not part of ECMAScript. Use <code>Date.getUTCFullYear()</code> instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getYear() Method       </td><td><a href="Date.html#getFullYear()">Date.getFullYear()</a></td><td class="summaryTableLastCol">This method was removed because it is not part of ECMAScript. Use <code>Date.getFullYear()</code> instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setYear() Method       </td><td><a href="Date.html#setFullYear()">Date.setFullYear()</a></td><td class="summaryTableLastCol">This method was removed because it is not part of ECMAScript. Use <code>Date.setFullYear()</code> instead.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>DisplacementMapFilter (class)</b></td><td><a href="flash/filters/DisplacementMapFilter.html">flash.filters.DisplacementMapFilter</a></td><td class="summaryTableLastCol">The data type of several parameters changed from Number to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">color Property      </td><td><a href="flash/filters/DisplacementMapFilter.html#color">flash.filters.DisplacementMapFilter.color</a></td><td class="summaryTableLastCol">The data type of this parameter is now uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">componentX Property      </td><td><a href="flash/filters/DisplacementMapFilter.html#componentX">flash.filters.DisplacementMapFilter.componentX</a></td><td class="summaryTableLastCol">The data type of this parameter is now uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">componentY Property      </td><td><a href="flash/filters/DisplacementMapFilter.html#componentY">flash.filters.DisplacementMapFilter.componentY</a></td><td class="summaryTableLastCol">The data type of this parameter is now uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">DisplacementMapFilter Constructor      </td><td><a href="flash/filters/DisplacementMapFilter.html#DisplacementMapFilter()">flash.filters.DisplacementMapFilter.DisplacementMapFilter()</a></td><td class="summaryTableLastCol">The data type of the <code>componentX</code>, <code>componentY</code>, and <code>color</code> parameters is now uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">clone() Method      </td><td><a href="flash/filters/DisplacementMapFilter.html#clone()">flash.filters.DisplacementMapFilter.clone()</a></td><td class="summaryTableLastCol">Now returns a BitmapFilter object.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>DropShadowFilter (class)</b></td><td><a href="flash/filters/DropShadowFilter.html">flash.filters.DropShadowFilter</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">color Property      </td><td><a href="flash/filters/DropShadowFilter.html#color">flash.filters.DropShadowFilter.color</a></td><td class="summaryTableLastCol">The data type of this parameter changed from Number to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">quality Property      </td><td><a href="flash/filters/DropShadowFilter.html#quality">flash.filters.DropShadowFilter.quality</a></td><td class="summaryTableLastCol">The data type of this parameter changed from Number to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">DropShadowFilter Constructor      </td><td><a href="flash/filters/DropShadowFilter.html#DropShadowFilter()">flash.filters.DropShadowFilter.DropShadowFilter()</a></td><td class="summaryTableLastCol">All parameters now have a default value, and some parameter types have changed.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">clone() Method      </td><td><a href="flash/filters/DropShadowFilter.html#clone()">flash.filters.DropShadowFilter.clone()</a></td><td class="summaryTableLastCol">Now returns a BitmapFilter object instead of a DropShadowFilter object.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Error (class)</b></td><td><a href="Error.html">Error</a></td><td class="summaryTableLastCol">Added a new <code>getStackTrace()</code> method to assist in debugging.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>ExternalInterface (class)</b></td><td><a href="flash/external/ExternalInterface.html">flash.external.ExternalInterface</a></td><td class="summaryTableLastCol">Parameters changed for two methods in this class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addCallback() Method       </td><td><a href="flash/external/ExternalInterface.html#addCallback()">flash.external.ExternalInterface.addCallback()</a></td><td class="summaryTableLastCol">The ActionScript 3.0 version of this method does not accept the <code>instance</code> parameter. The <code>method</code> parameter is replaced by a <code>closure</code> parameter, which can take a reference to a function, a class method, or a method of a particular class instance. In addition, if the calling code cannot access the <code>closure</code> reference for security reasons, a <code>SecurityError</code> exception is thrown.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">call() Method       </td><td><a href="flash/external/ExternalInterface.html#call()">flash.external.ExternalInterface.call()</a></td><td class="summaryTableLastCol">If a problem occurs, the ActionScript 3.0 version of this method throws an Error or <code>SecurityError</code> exception, in addition to returning <code>null</code>.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>FileReference (class)</b></td><td><a href="flash/net/FileReference.html">flash.net.FileReference</a></td><td class="summaryTableLastCol">The ActionScript 3.0 version inherits the <code>addEventListener()</code> and <code>removeEventListener()</code> methods from the EventDispatcher class. Dispatched events replace the event handler functions.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">postData Property      </td><td><a href="flash/net/URLRequest.html#data">flash.net.URLRequest.data</a></td><td class="summaryTableLastCol">The <code>postData</code> property is added to ActionScript 2.0 in Flash Player 9 to send POST data with the file upload or download. In ActionScript 3.0, use the <code>data</code> property of the URLRequest class to send either POST or GET data. See <code>flash.net.URLRequest.data</code> in this language reference for details.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">size Property[read-only]      </td><td><a href="flash/net/FileReference.html#size">flash.net.FileReference.size</a></td><td class="summaryTableLastCol">Returns a uint data type instead of a Number data type.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addListener() Method      </td><td><a href="flash/events/EventDispatcher.html#addEventListener()">flash.events.EventDispatcher.addEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>addListener()</code> method, because the class inherits the <code>addEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">browse() Method      </td><td><a href="flash/net/FileReference.html#browse()">flash.net.FileReference.browse()</a></td><td class="summaryTableLastCol">In ActionScript 2.0, returns <code>false</code> when there is an error. In ActionScript 3.0, throws an <code>IllegalOperationError</code> or <code>ArgumentError</code> exception. However, the method still returns <code>false</code> if the parameters are invalid, the file-browsing dialog box does not open, or another browser session is in progress. Also, the <code>typelist</code> parameter changed. In ActionScript 2.0, you can pass the <code>browse()</code> method an array of strings to specify a file filter. In ActionScript 3.0, you pass an array of FileFilter objects.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">download() Method      </td><td><a href="flash/net/FileReference.html#download()">flash.net.FileReference.download()</a></td><td class="summaryTableLastCol">When an error occurs, throws exceptions instead of returning <code>false</code>. The data type for the first parameter has changed. In ActionScript 2.0, the first parameter you pass to <code>download()</code> is a string. In ActionScript 3.0, you pass a URLRequest object.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeListener() Method      </td><td><a href="flash/events/EventDispatcher.html#removeEventListener()">flash.events.EventDispatcher.removeEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>removeListener()</code> method, because the class inherits the <code>removeEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">upload() Method      </td><td><a href="flash/net/FileReference.html#upload()">flash.net.FileReference.upload()</a></td><td class="summaryTableLastCol">Various changes have occurred: <ul> <li>The data type for the first parameter has changed. In ActionScript 2.0, the first parameter you pass to <code>upload()</code> is a string. In ActionScript 3.0, you pass a URLRequest object.</li> <li>In ActionScript 3.0, there is a new second parameter, <code>uploadDataFieldName</code>, which is the field name that precedes the file data in the upload POST operation.</li> <li>In ActionScript 3.0, there is a new third parameter, <code>testUpload</code>, that lets you control whether Flash Player performs a test upload before uploading the file.</li> <li>When an error occurs, <code>browse()</code> throws exceptions instead of returning <code>false</code>.</li> </ul></td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onCancel Listener      </td><td><a href="flash/net/FileReference.html#event:cancel">flash.net.FileReference dispatches event: cancel</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onCancel()</code> event handler, this class dispatches an event named <code>cancel</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onComplete Listener      </td><td><a href="flash/net/FileReference.html#event:complete">flash.net.FileReference dispatches event: complete</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onComplete()</code> event handler, this class dispatches an event named <code>complete</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onHTTPError Listener       </td><td><a href="flash/net/FileReference.html#event:httpStatus">flash.net.FileReference dispatches event: httpStatus</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onHTTPError()</code> event handler, this class dispatches an event named <code>httpStatus</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onIOError Listener      </td><td><a href="flash/net/FileReference.html#event:ioError">flash.net.FileReference dispatches event: ioError</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onIOError()</code> event handler, this class dispatches an event named <code>ioError</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onOpen Listener      </td><td><a href="flash/net/FileReference.html#event:open">flash.net.FileReference dispatches event: open</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onOpen()</code> event handler, this class dispatches an event named <code>open</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onProgress Listener      </td><td><a href="flash/net/FileReference.html#event:progress">flash.net.FileReference dispatches event: progress</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onProgress()</code> event handler, this class dispatches an event named <code>progress</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onSecurityError Listener       </td><td><a href="flash/net/FileReference.html#event:securityError">flash.net.FileReference dispatches event: securityError</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onSecurityError()</code> event handler, this class dispatches an event named <code>securityError</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onSelect Listener      </td><td><a href="flash/net/FileReference.html#event:select">flash.net.FileReference dispatches event: select</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onSelect()</code> event handler, this class dispatches an event named <code>select</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onUploadCompleteData </td><td><a href="flash/net/FileReference.html#event:complete">flash.net.FileReference dispatches event: complete</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onUploadCompleteData()</code> event handler, this class dispatches an event named <code>uploadCompleteData</code>.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>FileReferenceList (class)</b></td><td><a href="flash/net/FileReferenceList.html">flash.net.FileReferenceList</a></td><td class="summaryTableLastCol">The ActionScript 3.0 class inherits the <code>addEventListener()</code> and <code>removeEventListener()</code> methods from the EventDispatcher class. Instead of the <code>onCancel()</code> and <code>onSelect()</code> event handlers, the ActionScript 3.0 class uses events named <code>cancel</code> and <code>select</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addListener() Method        </td><td><a href="flash/events/EventDispatcher.html#addEventListener()">flash.events.EventDispatcher.addEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>addListener()</code> method, because the class inherits the <code>addEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">browse() Method       </td><td><a href="flash/net/FileReferenceList.html#browse()">flash.net.FileReferenceList.browse()</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of returning <code>false</code> when there is an error, this method throws an <code>IllegalOperationError</code> exception. Also, the <code>typelist</code> parameter changed. In ActionScript 2.0, you can pass the <code>browse()</code> method an array of strings to specify a file filter. In ActionScript 3.0, you pass an array of FileFilter objects.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeListener() Method       </td><td><a href="flash/events/EventDispatcher.html#removeEventListener()">flash.events.EventDispatcher.removeEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>removeListener()</code> method, because the class inherits the <code>removeEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onCancel Listener   </td><td><a href="flash/net/FileReferenceList.html#event:cancel">flash.net.FileReferenceList dispatches event: cancel</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onCancel()</code> event handler, this class dispatches an event named <code>cancel</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onSelect Listener   </td><td><a href="flash/net/FileReferenceList.html#event:select">flash.net.FileReferenceList dispatches event: select</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onSelect()</code> event handler, this class dispatches an event named <code>select</code>.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>GlowFilter (class)</b></td><td><a href="flash/filters/GlowFilter.html">flash.filters.GlowFilter</a></td><td class="summaryTableLastCol">The data type of several properties changed from Number to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">color Property      </td><td><a href="flash/filters/GlowFilter.html#color">flash.filters.GlowFilter.color</a></td><td class="summaryTableLastCol">The data type of this property changed from Number to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">quality Property      </td><td><a href="flash/filters/GlowFilter.html#quality">flash.filters.GlowFilter.quality</a></td><td class="summaryTableLastCol">The data type of this property changed from Number to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">GlowFilter Constructor      </td><td><a href="flash/filters/GlowFilter.html#GlowFilter()">flash.filters.GlowFilter.GlowFilter()</a></td><td class="summaryTableLastCol">The <code>color</code> and <code>quality</code> parameters are now uint and int data types, respectively, instead of Number. All parameters are now assigned a default value.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">clone() Method      </td><td><a href="flash/filters/GlowFilter.html#clone()">flash.filters.GlowFilter.clone()</a></td><td class="summaryTableLastCol">Returns a BitmapFilter object instead of a GlowFilter object.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>GradientBevelFilter (class)</b></td><td><a href="flash/filters/GradientBevelFilter.html">flash.filters.GradientBevelFilter</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">quality Property      </td><td><a href="flash/filters/GradientBevelFilter.html#quality">flash.filters.GradientBevelFilter.quality</a></td><td class="summaryTableLastCol">The data type of this property changed from Number to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">clone() Method          </td><td><a href="flash/filters/GradientBevelFilter.html#clone()">flash.filters.GradientBevelFilter.clone()</a></td><td class="summaryTableLastCol">Returns a BitmapFilter object instead of a GradientBevelFilter object.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>GradientGlowFilter (class)</b></td><td><a href="flash/filters/GradientGlowFilter.html">flash.filters.GradientGlowFilter</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">quality Property      </td><td><a href="flash/filters/GradientGlowFilter.html#quality">flash.filters.GradientGlowFilter.quality</a></td><td class="summaryTableLastCol">The data type of this property changed from Number to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">GradientGlowFilter Constructor      </td><td><a href="flash/filters/GradientGlowFilter.html#GradientGlowFilter()">flash.filters.GradientGlowFilter.GradientGlowFilter()</a></td><td class="summaryTableLastCol">Default values added to all parameters and the data type of the <code>quality</code> parameter changed from Number to int.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">clone() Method      </td><td><a href="flash/filters/GradientGlowFilter.html#clone()">flash.filters.GradientGlowFilter.clone()</a></td><td class="summaryTableLastCol">Returns a BitmapFilter object instead of a GradientGlowFilter object.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>IME (class)</b></td><td><a href="flash/system/IME.html">flash.system.IME</a></td><td class="summaryTableLastCol">This class has been moved to the flash.system package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">ALPHANUMERIC_FULL Constant       </td><td><a href="flash/system/IMEConversionMode.html#ALPHANUMERIC_FULL">flash.system.IMEConversionMode.ALPHANUMERIC_FULL</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">ALPHANUMERIC_HALF Constant       </td><td><a href="flash/system/IMEConversionMode.html#ALPHANUMERIC_HALF">flash.system.IMEConversionMode.ALPHANUMERIC_HALF</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">CHINESE Constant       </td><td><a href="flash/system/IMEConversionMode.html#CHINESE">flash.system.IMEConversionMode.CHINESE</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">JAPANESE_HIRAGANA Constant       </td><td><a href="flash/system/IMEConversionMode.html#JAPANESE_HIRAGANA">flash.system.IMEConversionMode.JAPANESE_HIRAGANA</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">JAPANESE_KATAKANA_FULL Constant       </td><td><a href="flash/system/IMEConversionMode.html#JAPANESE_KATAKANA_FULL">flash.system.IMEConversionMode.JAPANESE_KATAKANA_FULL</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">JAPANESE_KATAKANA_HALF Constant       </td><td><a href="flash/system/IMEConversionMode.html#JAPANESE_KATAKANA_HALF">flash.system.IMEConversionMode.JAPANESE_KATAKANA_HALF</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">KOREAN Constant       </td><td><a href="flash/system/IMEConversionMode.html#KOREAN">flash.system.IMEConversionMode.KOREAN</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">UNKNOWN Constant       </td><td><a href="flash/system/IMEConversionMode.html#UNKNOWN">flash.system.IMEConversionMode.UNKNOWN</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addListener() Method        </td><td><a href="flash/events/EventDispatcher.html#addEventListener()">flash.events.EventDispatcher.addEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>addListener()</code> method, because the class inherits the <code>addEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getConversionMode() Method       </td><td><a href="flash/system/IME.html#conversionMode">flash.system.IME.conversionMode</a></td><td class="summaryTableLastCol">Changed to an accessor property.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getEnabled() Method       </td><td><a href="flash/system/IME.html#enabled">flash.system.IME.enabled</a></td><td class="summaryTableLastCol">Changed to an accessor property.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeListener() Method        </td><td><a href="flash/events/EventDispatcher.html#removeEventListener()">flash.events.EventDispatcher.removeEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>removeListener()</code> method, because the class inherits the <code>removeEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setConversionMode() Method       </td><td><a href="flash/system/IME.html#conversionMode">flash.system.IME.conversionMode</a></td><td class="summaryTableLastCol">Changed to an accessor property.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setEnabled() Method       </td><td><a href="flash/system/IME.html#enabled">flash.system.IME.enabled</a></td><td class="summaryTableLastCol">Changed to an accessor property.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onIMEComposition Listener       </td><td><a href="flash/system/IME.html#event:imeComposition">flash.system.IME dispatches event: imeComposition</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onIMEComposition()</code> event handler, this class dispatches an event named <code>imeComposition</code>.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Key (class)</b></td><td><a href="flash/ui/Keyboard.html">flash.ui.Keyboard</a></td><td class="summaryTableLastCol">This class has a new name in ActionScript 3.0 to match other classes that pertain to the Keyboard class, such as KeyboardEvent.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">BACKSPACE Constant    </td><td><a href="flash/ui/Keyboard.html#BACKSPACE">flash.ui.Keyboard.BACKSPACE</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">CAPSLOCK Constant    </td><td><a href="flash/ui/Keyboard.html#CAPS_LOCK">flash.ui.Keyboard.CAPS_LOCK</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0, underscore added, and data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">CONTROL Constant    </td><td><a href="flash/ui/Keyboard.html#CONTROL">flash.ui.Keyboard.CONTROL</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">DELETEKEY Constant    </td><td><a href="flash/ui/Keyboard.html#DELETE">flash.ui.Keyboard.DELETE</a></td><td class="summaryTableLastCol">Name changed to <code>DELETE</code> in ActionScript 3.0, declared as a constant, and data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">DOWN Constant    </td><td><a href="flash/ui/Keyboard.html#DOWN">flash.ui.Keyboard.DOWN</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">END Constant    </td><td><a href="flash/ui/Keyboard.html#END">flash.ui.Keyboard.END</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">ENTER Constant    </td><td><a href="flash/ui/Keyboard.html#ENTER">flash.ui.Keyboard.ENTER</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">ESCAPE Constant    </td><td><a href="flash/ui/Keyboard.html#ESCAPE">flash.ui.Keyboard.ESCAPE</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">HOME Constant    </td><td><a href="flash/ui/Keyboard.html#HOME">flash.ui.Keyboard.HOME</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">INSERT Constant    </td><td><a href="flash/ui/Keyboard.html#INSERT">flash.ui.Keyboard.INSERT</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">LEFT Constant    </td><td><a href="flash/ui/Keyboard.html#LEFT">flash.ui.Keyboard.LEFT</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_listeners Property[read-only]       </td><td><a href="flash/events/EventDispatcher.html#willTrigger()">flash.events.EventDispatcher.willTrigger()</a></td><td class="summaryTableLastCol">Not a direct equivalent. The <code>willTrigger()</code> method tells you whether any listeners are registered, but not how many.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">PGDN Constant    </td><td><a href="flash/ui/Keyboard.html#PAGE_DOWN">flash.ui.Keyboard.PAGE_DOWN</a></td><td class="summaryTableLastCol">Name changed to <code>PAGE_DOWN</code> in ActionScript 3.0, declared as a constant, and data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">PGUP Constant    </td><td><a href="flash/ui/Keyboard.html#PAGE_UP">flash.ui.Keyboard.PAGE_UP</a></td><td class="summaryTableLastCol">Name changed to <code>PAGE_UP</code> in ActionScript 3.0, declared as a constant, and data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">RIGHT Constant    </td><td><a href="flash/ui/Keyboard.html#RIGHT">flash.ui.Keyboard.RIGHT</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">SHIFT Constant    </td><td><a href="flash/ui/Keyboard.html#SHIFT">flash.ui.Keyboard.SHIFT</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">SPACE Constant    </td><td><a href="flash/ui/Keyboard.html#SPACE">flash.ui.Keyboard.SPACE</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">TAB Constant    </td><td><a href="flash/ui/Keyboard.html#TAB">flash.ui.Keyboard.TAB</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">UP Constant    </td><td><a href="flash/ui/Keyboard.html#UP">flash.ui.Keyboard.UP</a></td><td class="summaryTableLastCol">Declared as a constant in ActionScript 3.0 and data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addListener() Method    </td><td><a href="flash/events/EventDispatcher.html#addEventListener()">flash.events.EventDispatcher.addEventListener()</a></td><td class="summaryTableLastCol">In ActionScript 3.0, there is no need to have a class-specific <code>addListener()</code> method, because all display objects inherit the <code>addEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getAscii() Method    </td><td><a href="flash/events/KeyboardEvent.html#charCode">flash.events.KeyboardEvent.charCode</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getCode() Method    </td><td><a href="flash/events/KeyboardEvent.html#keyCode">flash.events.KeyboardEvent.keyCode</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">isAccessible() Method    </td><td><a href="flash/ui/Keyboard.html#isAccessible()">flash.ui.Keyboard.isAccessible()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">isDown() Method    </td><td>Removed</td><td class="summaryTableLastCol">Removed for security reasons. In ActionScript 3.0, write an event handler for the <a href="flash/display/InteractiveObject.html#event:keyDown">flash.display.InteractiveObject keyDown</a> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">isToggled() Method    </td><td>Removed</td><td class="summaryTableLastCol">Removed for security reasons.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeListener() Method    </td><td><a href="flash/events/EventDispatcher.html#removeEventListener()">flash.events.EventDispatcher.removeEventListener()</a></td><td class="summaryTableLastCol">In ActionScript 3.0, there is no need to have a class-specific <code>removeListener()</code> method, because all display objects inherit the <code>removeEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onKeyDown Listener       </td><td><a href="flash/display/InteractiveObject.html#event:keyDown">flash.display.InteractiveObject dispatches event: keyDown</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onKeyDown</code> event handler, the InteractiveObject class dispatches a <code>keyDown</code> KeyboardEvent object.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onKeyUp Listener       </td><td><a href="flash/display/InteractiveObject.html#event:keyUp">flash.display.InteractiveObject dispatches event: keyUp</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onKeyUp</code> event handler, the InteractiveObject class dispatches a <code>keyUp</code> KeyboardEvent object.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>LoadVars (class)</b></td><td><a href="flash/net/URLLoader.html">flash.net.URLLoader</a></td><td class="summaryTableLastCol">The LoadVars class functionality is replaced by the URLLoader, URLRequest, URLStream, and URLVariables classes.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">contentType Property       </td><td><a href="flash/net/URLRequest.html#contentType">flash.net.URLRequest.contentType</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">loaded Property       </td><td>Removed</td><td class="summaryTableLastCol">There is no corresponding Boolean property in ActionScript 3.0, but you can use <code>flash.events.Event.COMPLETE</code> to set up listeners that receive notification when data is loaded.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">LoadVars Constructor      </td><td><a href="flash/net/URLLoader.html#URLLoader()">flash.net.URLLoader.URLLoader()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addRequestHeader() Method       </td><td><a href="flash/net/URLRequestHeader.html">flash.net.URLRequestHeader</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">decode() Method       </td><td><a href="flash/net/URLVariables.html#decode()">flash.net.URLVariables.decode()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getBytesLoaded() Method       </td><td><a href="flash/net/URLLoader.html#bytesLoaded">flash.net.URLLoader.bytesLoaded</a></td><td class="summaryTableLastCol">Class changed to URLLoader; changed from function to property accessor; and name changed from <code>getBytesLoaded</code> to <code>bytesLoaded</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getBytesTotal() Method       </td><td><a href="flash/net/URLLoader.html#bytesTotal">flash.net.URLLoader.bytesTotal</a></td><td class="summaryTableLastCol">Class changed to URLLoader; changed from function to property accessor; and name changed from <code>getBytesTotal</code> to <code>bytesTotal</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">load() Method       </td><td><a href="flash/net/URLLoader.html#load()">flash.net.URLLoader.load()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onData() EventHandler       </td><td><a href="flash/net/URLLoader.html#event:complete">flash.net.URLLoader dispatches event: complete</a></td><td class="summaryTableLastCol">See the URLLoader class. A <code>complete</code> event is dispatched when the download operation is complete but before any data is parsed.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onHTTPStatus() EventHandler       </td><td><a href="flash/net/URLLoader.html#event:httpStatus">flash.net.URLLoader dispatches event: httpStatus</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onHTTPStatus</code> event handler, the URLLoader class dispatches an HTTPStatusEvent object named <code>httpStatus</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onLoad() EventHandler       </td><td><a href="flash/net/URLLoader.html#event:complete">flash.net.URLLoader dispatches event: complete</a></td><td class="summaryTableLastCol">See the URLLoader class. A <code>complete</code> event is dispatched when the download operation is complete.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">send() Method       </td><td><a href="flash/net/package.html#sendToURL()">flash.net.sendToURL()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">sendAndLoad() Method       </td><td><a href="flash/net/package.html#sendToURL()">flash.net.sendToURL()</a></td><td class="summaryTableLastCol">The <code>sendToURL()</code> method sends a URL request to the server, but ignores the response. To receive the response, use <code>flash.net.URLLoader.load()</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">toString() Method       </td><td>Removed</td><td class="summaryTableLastCol">This method is no longer necessary in ActionScript 3.0.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>LocalConnection (class)</b></td><td><a href="flash/net/LocalConnection.html">flash.net.LocalConnection</a></td><td class="summaryTableLastCol">This class has been moved to the flash.net package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">LocalConnection Constructor   </td><td><a href="flash/net/LocalConnection.html#LocalConnection()">flash.net.LocalConnection.LocalConnection()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">allowDomain() EventHandler       </td><td><a href="flash/net/LocalConnection.html#allowDomain()">flash.net.LocalConnection.allowDomain()</a></td><td class="summaryTableLastCol">Changed to a regular method in ActionScript 3.0, no longer an event handler. Parameter changed to use the ...(rest) parameter format. Return value changed to <code>void</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">allowInsecureDomain() EventHandler      </td><td><a href="flash/net/LocalConnection.html#allowInsecureDomain()">flash.net.LocalConnection.allowInsecureDomain()</a></td><td class="summaryTableLastCol">Changed to a regular method in ActionScript 3.0, no longer an event handler. Parameter changed to use the ...(rest) parameter format. Return value changed to <code>void</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">close() Method       </td><td><a href="flash/net/LocalConnection.html#close()">flash.net.LocalConnection.close()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">connect() Method       </td><td><a href="flash/net/LocalConnection.html#connect()">flash.net.LocalConnection.connect()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">domain() Method       </td><td><a href="flash/net/LocalConnection.html#domain">flash.net.LocalConnection.domain</a></td><td class="summaryTableLastCol">Changed to a property accessor.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onStatus() EventHandler       </td><td><a href="flash/net/LocalConnection.html#event:status">flash.net.LocalConnection dispatches event: status</a></td><td class="summaryTableLastCol">In the new event model, callback functions are replaced by event objects.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">send() Method       </td><td><a href="flash/net/LocalConnection.html#send()">flash.net.LocalConnection.send()</a></td><td class="summaryTableLastCol">Third parameter changed to use the ...(rest) parameter format. Return type changed to <code>void</code>.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Microphone (class)</b></td><td><a href="flash/media/Microphone.html">flash.media.Microphone</a></td><td class="summaryTableLastCol">This class has been moved to the flash.media package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">index Property[read-only]       </td><td><a href="flash/media/Microphone.html#index">flash.media.Microphone.index</a></td><td class="summaryTableLastCol">Data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">rate Property[read-only]       </td><td><a href="flash/media/Microphone.html#rate">flash.media.Microphone.rate</a></td><td class="summaryTableLastCol">Data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">silenceTimeOut Property[read-only]       </td><td><a href="flash/media/Microphone.html#silenceTimeout">flash.media.Microphone.silenceTimeout</a></td><td class="summaryTableLastCol">Change in capitalization to "Timeout." Data type changed to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">get() Method    </td><td><a href="flash/media/Microphone.html#getMicrophone()">flash.media.Microphone.getMicrophone()</a></td><td class="summaryTableLastCol">Name changed from <code>get()</code> to <code>getMicrophone()</code>. Data type of parameter changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onActivity() EventHandler       </td><td><a href="flash/media/Microphone.html#event:activity">flash.media.Microphone dispatches event: activity</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onActivity</code> event handler, this class dispatches an <code>activity</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onStatus() EventHandler       </td><td><a href="flash/media/Microphone.html#event:status">flash.media.Microphone dispatches event: status</a></td><td class="summaryTableLastCol">In ActionScript 3.0, instead of invoking the <code>onStatus</code> event handler, this class dispatches a <code>status</code> event. The <code>status</code> event has a <code>code</code> property value of <code>Muted</code> and <code>Unmuted</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setGain() Method       </td><td><a href="flash/media/Microphone.html#gain">flash.media.Microphone.gain</a></td><td class="summaryTableLastCol">Combined <code>gain</code> property and <code>setGain()</code> method into a get/set property accessor named <code>gain</code>. Data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setRate() Method       </td><td><a href="flash/media/Microphone.html#rate">flash.media.Microphone.rate</a></td><td class="summaryTableLastCol">Combined <code>rate</code> property and <code>setRate()</code> method into a get/set property accessor named <code>rate</code>. Data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setSilenceLevel() Method       </td><td><a href="flash/media/Microphone.html#setSilenceLevel()">flash.media.Microphone.setSilenceLevel()</a></td><td class="summaryTableLastCol">Data type of <code>timeOut</code> parameter changed to int. Capitalization of the <code>timeOut</code> parameter changed to <code>timeout</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setUseEchoSuppression() Method       </td><td><a href="flash/media/Microphone.html#setUseEchoSuppression()">flash.media.Microphone.setUseEchoSuppression()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Mouse (class)</b></td><td><a href="flash/ui/Mouse.html">flash.ui.Mouse</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addListener() Method    </td><td><a href="flash/events/EventDispatcher.html#addEventListener()">flash.events.EventDispatcher.addEventListener()</a></td><td class="summaryTableLastCol">In the new ActionScript 3.0 event model, there is no need to have a class-specific <code>addListener()</code> method, because all display objects inherit the <code>addEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">hide() Method    </td><td><a href="flash/ui/Mouse.html#hide()">flash.ui.Mouse.hide()</a></td><td class="summaryTableLastCol">Changed to return <code>void</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeListener() Method    </td><td><a href="flash/events/EventDispatcher.html#removeEventListener()">flash.events.EventDispatcher.removeEventListener()</a></td><td class="summaryTableLastCol">In the new ActionScript 3.0 event model, there is no need to have a class-specific <code>removeListener()</code> method, because all display objects inherit the <code>removeEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">show() Method    </td><td><a href="flash/ui/Mouse.html#show()">flash.ui.Mouse.show()</a></td><td class="summaryTableLastCol">Changed to return <code>void</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onMouseDown Listener       </td><td><a href="flash/display/InteractiveObject.html#event:mouseDown">flash.display.InteractiveObject dispatches event: mouseDown</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseDown</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onMouseMove Listener       </td><td><a href="flash/display/InteractiveObject.html#event:mouseMove">flash.display.InteractiveObject dispatches event: mouseMove</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseMove</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onMouseUp Listener       </td><td><a href="flash/display/InteractiveObject.html#event:mouseUp">flash.display.InteractiveObject dispatches event: mouseUp</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseUp</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onMouseWheel Listener       </td><td><a href="flash/display/InteractiveObject.html#event:mouseWheel">flash.display.InteractiveObject dispatches event: mouseWheel</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseWheel</code> event.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>MovieClip (class)</b></td><td><a href="flash/display/MovieClip.html">flash.display.MovieClip</a></td><td class="summaryTableLastCol">Many of the MovieClip methods have been moved to other classes in ActionScript 3.0. All event handlers have been replaced by event objects in the new event model.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_alpha Property       </td><td><a href="flash/display/DisplayObject.html#alpha">flash.display.DisplayObject.alpha</a></td><td class="summaryTableLastCol">Moved to DisplayObject class and removed initial underscore from name.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">blendMode Property      </td><td><a href="flash/display/DisplayObject.html#blendMode">flash.display.DisplayObject.blendMode</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">cacheAsBitmap Property      </td><td><a href="flash/display/DisplayObject.html#cacheAsBitmap">flash.display.DisplayObject.cacheAsBitmap</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_currentframe Property[read-only]       </td><td><a href="flash/display/MovieClip.html#currentFrame">flash.display.MovieClip.currentFrame</a></td><td class="summaryTableLastCol">Removed initial underscore from name.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_droptarget Property[read-only]       </td><td><a href="flash/display/Sprite.html#dropTarget">flash.display.Sprite.dropTarget</a></td><td class="summaryTableLastCol">Moved to Sprite class, removed initial underscore from name, and changed to mixed case.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">filters Property      </td><td><a href="flash/display/DisplayObject.html#filters">flash.display.DisplayObject.filters</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">focusEnabled Property       </td><td>Removed</td><td class="summaryTableLastCol">In ActionScript 3.0, all interactive objects are focus enabled; therefore, this property is no longer needed.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_focusrect Property       </td><td><a href="flash/display/InteractiveObject.html#focusRect">flash.display.InteractiveObject.focusRect</a></td><td class="summaryTableLastCol">Moved to InteractiveObject class, removed initial underscore from name, and changed to mixed case.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_framesloaded Property[read-only]       </td><td><a href="flash/display/MovieClip.html#framesLoaded">flash.display.MovieClip.framesLoaded</a></td><td class="summaryTableLastCol">Removed initial underscore from name and changed to mixed case.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_height Property       </td><td><a href="flash/display/DisplayObject.html#height">flash.display.DisplayObject.height</a></td><td class="summaryTableLastCol">Moved to DisplayObject class and removed initial underscore from name.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_highquality Property       </td><td>Removed</td><td class="summaryTableLastCol">See Stage.quality.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">hitArea Property       </td><td><a href="flash/display/Sprite.html#hitArea">flash.display.Sprite.hitArea</a></td><td class="summaryTableLastCol">Moved to Sprite class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_lockroot Property       </td><td>Removed</td><td class="summaryTableLastCol">In ActionScript 3.0, the root of a display object is set automatically; therefore, the <code>_lockroot</code> property is effectively always on. See flash.display.DisplayObject.root for details.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">menu Property       </td><td>Removed</td><td class="summaryTableLastCol">See InteractiveObject.contextMenu.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_name Property       </td><td><a href="flash/display/DisplayObject.html#name">flash.display.DisplayObject.name</a></td><td class="summaryTableLastCol">Moved to DisplayObject class and removed initial underscore from name.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">opaqueBackground Property      </td><td><a href="flash/display/DisplayObject.html#opaqueBackground">flash.display.DisplayObject.opaqueBackground</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_parent Property       </td><td><a href="flash/display/DisplayObject.html#parent">flash.display.DisplayObject.parent</a></td><td class="summaryTableLastCol">Moved to DisplayObject class and removed initial underscore from name.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_quality Property       </td><td><a href="flash/display/Stage.html#quality">flash.display.Stage.quality</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_rotation Property       </td><td><a href="flash/display/DisplayObject.html#rotation">flash.display.DisplayObject.rotation</a></td><td class="summaryTableLastCol">Moved to DisplayObject class and removed initial underscore from name.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">scale9Grid Property      </td><td><a href="flash/display/DisplayObject.html#scale9Grid">flash.display.DisplayObject.scale9Grid</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">scrollRect Property      </td><td><a href="flash/display/DisplayObject.html#scrollRect">flash.display.DisplayObject.scrollRect</a></td><td class="summaryTableLastCol">Changed to Rectangle data type.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_soundbuftime Property       </td><td><a href="flash/media/SoundMixer.html#bufferTime">flash.media.SoundMixer.bufferTime</a></td><td class="summaryTableLastCol">Moved to SoundMixer class, which is used for global sound control, renamed without abbreviations, and removed initial underscore from name.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">tabChildren Property       </td><td><a href="flash/display/DisplayObjectContainer.html#tabChildren">flash.display.DisplayObjectContainer.tabChildren</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">tabEnabled Property       </td><td><a href="flash/display/InteractiveObject.html#tabEnabled">flash.display.InteractiveObject.tabEnabled</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">tabIndex Property       </td><td><a href="flash/display/InteractiveObject.html#tabIndex">flash.display.InteractiveObject.tabIndex</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_target Property[read-only]       </td><td>Removed</td><td class="summaryTableLastCol">ActionScript 3.0 identifies display objects directly; therefore, identifying a display object by its path is no longer necessary.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_totalframes Property[read-only]       </td><td><a href="flash/display/MovieClip.html#totalFrames">flash.display.MovieClip.totalFrames</a></td><td class="summaryTableLastCol">Changed to mixed case and removed initial underscore from name.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">trackAsMenu Property       </td><td><a href="flash/display/MovieClip.html#trackAsMenu">flash.display.MovieClip.trackAsMenu</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">transform Property       </td><td><a href="flash/display/DisplayObject.html#transform">flash.display.DisplayObject.transform</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_url Property[read-only]       </td><td><a href="flash/display/Loader.html#contentLoaderInfo">flash.display.Loader.contentLoaderInfo</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">useHandCursor Property       </td><td><a href="flash/display/Sprite.html#useHandCursor">flash.display.Sprite.useHandCursor</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_visible Property       </td><td><a href="flash/display/DisplayObject.html#visible">flash.display.DisplayObject.visible</a></td><td class="summaryTableLastCol">Moved to DisplayObject class and removed initial underscore from name.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_width Property       </td><td><a href="flash/display/DisplayObject.html#width">flash.display.DisplayObject.width</a></td><td class="summaryTableLastCol">Moved to DisplayObject class and removed initial underscore from name.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_x Property       </td><td><a href="flash/display/DisplayObject.html#x">flash.display.DisplayObject.x</a></td><td class="summaryTableLastCol">Moved to DisplayObject class and removed initial underscore from name.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_xmouse Property[read-only]       </td><td><a href="flash/display/DisplayObject.html#mouseX">flash.display.DisplayObject.mouseX</a></td><td class="summaryTableLastCol">Moved to DisplayObject class, changed name to <code>mouseX</code>, and removed initial underscore from name.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_xscale Property       </td><td><a href="flash/display/DisplayObject.html#scaleX">flash.display.DisplayObject.scaleX</a></td><td class="summaryTableLastCol">Moved to DisplayObject class, changed name to <code>scaleX</code>, and removed initial underscore from name.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_y Property       </td><td><a href="flash/display/DisplayObject.html#y">flash.display.DisplayObject.y</a></td><td class="summaryTableLastCol">Moved to DisplayObject class and removed initial underscore from name.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_ymouse Property[read-only]       </td><td><a href="flash/display/DisplayObject.html#mouseY">flash.display.DisplayObject.mouseY</a></td><td class="summaryTableLastCol">Moved to DisplayObject class, changed name to <code>mouseY</code>, and removed initial underscore from name.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_yscale Property       </td><td><a href="flash/display/DisplayObject.html#scaleY">flash.display.DisplayObject.scaleY</a></td><td class="summaryTableLastCol">Moved to DisplayObject class, changed name to <code>scaleY</code>, and removed initial underscore from name.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">attachAudio() Method       </td><td>Removed</td><td class="summaryTableLastCol">If the audio source is a Microphone object, use <a href = "flash/net/NetStream.html#attachAudio()"> <code>NetStream.attachAudio()</code></a> or <a href = "flash/media/Microphone.html#setLoopBack()"> <code>Microphone.setLoopBack()</code></a>. <p>If the audio source is an FLV file, use <a href = "flash/media/Video.html#attachNetStream()"> <code>Video.attachNetStream()</code></a> and a <a href = "flash/net/NetStream.html"> NetStream</a> object.</p></td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">attachBitmap() Method      </td><td>Removed</td><td class="summaryTableLastCol">In ActionScript 3.0, use <code>addChild()</code> to add child display objects.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">attachMovie() Method       </td><td>Removed</td><td class="summaryTableLastCol">In ActionScript 3.0, use <code>addChild()</code> to add child display objects.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">beginBitmapFill() Method      </td><td><a href="flash/display/Graphics.html#beginBitmapFill()">flash.display.Graphics.beginBitmapFill()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">beginFill() Method       </td><td><a href="flash/display/Graphics.html#beginFill()">flash.display.Graphics.beginFill()</a></td><td class="summaryTableLastCol">Moved to Graphics class and changed data type of the first parameter to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">beginGradientFill() Method       </td><td><a href="flash/display/Graphics.html#beginGradientFill()">flash.display.Graphics.beginGradientFill()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">clear() Method       </td><td><a href="flash/display/Graphics.html#clear()">flash.display.Graphics.clear()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">createEmptyMovieClip() Method       </td><td>Removed</td><td class="summaryTableLastCol">In ActionScript 3.0, use the <code>new</code> operator to create movie clips.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">createTextField() Method       </td><td>Removed</td><td class="summaryTableLastCol">In ActionScript 3.0, use the <code>new</code> operator to create text fields.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">curveTo() Method       </td><td><a href="flash/display/Graphics.html#curveTo()">flash.display.Graphics.curveTo()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">duplicateMovieClip() Method       </td><td>Removed</td><td class="summaryTableLastCol">In ActionScript 3.0, use the <code>new</code> operator to create a new instance.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">endFill() Method       </td><td><a href="flash/display/Graphics.html#endFill()">flash.display.Graphics.endFill()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getBounds() Method       </td><td><a href="flash/display/DisplayObject.html#getBounds()">flash.display.DisplayObject.getBounds()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getBytesLoaded() Method       </td><td><a href="flash/net/URLLoader.html#bytesLoaded">flash.net.URLLoader.bytesLoaded</a></td><td class="summaryTableLastCol">Moved to URLLoader class and data type changed from Number to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getBytesTotal() Method       </td><td><a href="flash/net/URLLoader.html#bytesTotal">flash.net.URLLoader.bytesTotal</a></td><td class="summaryTableLastCol">Moved to URLLoader class and data type changed from Number to int.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getDepth() Method       </td><td><a href="flash/display/DisplayObjectContainer.html#getChildIndex()">flash.display.DisplayObjectContainer.getChildIndex()</a></td><td class="summaryTableLastCol">ActionScript 3.0 provides direct access to the display list, so depth is handled differently.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getInstanceAtDepth() Method       </td><td><a href="flash/display/DisplayObjectContainer.html#getChildAt()">flash.display.DisplayObjectContainer.getChildAt()</a></td><td class="summaryTableLastCol">ActionScript 3.0 provides direct access to the display list, so depth is handled differently.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getNextHighestDepth() Method       </td><td><a href="flash/display/DisplayObjectContainer.html#addChild()">flash.display.DisplayObjectContainer.addChild()</a></td><td class="summaryTableLastCol">Not a direct equivalent, but the <code>addChild()</code> method adds a child behind all other children of the DisplayObjectContainer instance, so there is no need for a method that determines the next available depth.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getRect() Method       </td><td><a href="flash/display/DisplayObject.html#getRect()">flash.display.DisplayObject.getRect()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getSWFVersion() Method       </td><td><a href="flash/display/LoaderInfo.html#swfVersion">flash.display.LoaderInfo.swfVersion</a></td><td class="summaryTableLastCol">Moved to LoaderInfo class and changed data type to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getTextSnapshot() Method       </td><td><a href="flash/display/DisplayObjectContainer.html#textSnapshot">flash.display.DisplayObjectContainer.textSnapshot</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getURL() Method       </td><td><a href="flash/net/package.html#navigateToURL()">flash.net.navigateToURL()</a></td><td class="summaryTableLastCol">Replaced by the <code>flash.net.navigateToURL()</code> and <code>flash.net.sentToURL()</code> methods. Also see URLLoader class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">globalToLocal() Method       </td><td><a href="flash/display/DisplayObject.html#globalToLocal()">flash.display.DisplayObject.globalToLocal()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">gotoAndStop() Method       </td><td><a href="flash/display/MovieClip.html#gotoAndStop()">flash.display.MovieClip.gotoAndStop()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">hitTest() Method       </td><td><a href="flash/display/DisplayObject.html#hitTestObject()">flash.display.DisplayObject.hitTestObject()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">lineGradientStyle() Method       </td><td><a href="flash/display/Graphics.html#lineGradientStyle()">flash.display.Graphics.lineGradientStyle()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">lineStyle() Method       </td><td><a href="flash/display/Graphics.html#lineStyle()">flash.display.Graphics.lineStyle()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">lineTo() Method       </td><td><a href="flash/display/Graphics.html#lineTo()">flash.display.Graphics.lineTo()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">loadMovie() Method       </td><td><a href="flash/display/Loader.html#load()">flash.display.Loader.load()</a></td><td class="summaryTableLastCol">See Loader class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">loadVariables() Method       </td><td><a href="flash/net/URLLoader.html">flash.net.URLLoader</a></td><td class="summaryTableLastCol">Removed. See URLLoader class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">localToGlobal() Method       </td><td><a href="flash/display/DisplayObject.html#localToGlobal()">flash.display.DisplayObject.localToGlobal()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">moveTo() Method       </td><td><a href="flash/display/Graphics.html#moveTo()">flash.display.Graphics.moveTo()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">nextFrame() Method       </td><td><a href="flash/display/MovieClip.html#nextFrame()">flash.display.MovieClip.nextFrame()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onData() EventHandler       </td><td><a href="flash/display/LoaderInfo.html#event:complete">flash.display.LoaderInfo dispatches event: complete</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>complete</code> event, which is dispatched when the download operation is complete but before any data is parsed.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onDragOut() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:mouseOut">flash.display.InteractiveObject dispatches event: mouseOut</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseOut</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onDragOver() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:mouseOver">flash.display.InteractiveObject dispatches event: mouseOver</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseOver</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onEnterFrame() EventHandler       </td><td><a href="flash/display/DisplayObject.html#event:enterFrame">flash.display.DisplayObject dispatches event: enterFrame</a></td><td class="summaryTableLastCol">Replaced in the new event model by an <code>enterFrame</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onKeyDown() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:keyDown">flash.display.InteractiveObject dispatches event: keyDown</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>keyDown</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onKeyUp() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:keyUp">flash.display.InteractiveObject dispatches event: keyUp</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>keyUp</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onKillFocus() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:focusOut">flash.display.InteractiveObject dispatches event: focusOut</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>focusOut</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onLoad() EventHandler       </td><td><a href="flash/display/LoaderInfo.html#event:complete">flash.display.LoaderInfo dispatches event: complete</a></td><td class="summaryTableLastCol">Also see URLLoader class. A <code>complete</code> event is dispatched when the download operation is complete.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onMouseDown() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:mouseDown">flash.display.InteractiveObject dispatches event: mouseDown</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseDown</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onMouseMove() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:mouseMove">flash.display.InteractiveObject dispatches event: mouseMove</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseMove</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onMouseUp() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:mouseUp">flash.display.InteractiveObject dispatches event: mouseUp</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseUp</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onPress() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:mouseDown">flash.display.InteractiveObject dispatches event: mouseDown</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseDown</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onRelease() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:mouseUp">flash.display.InteractiveObject dispatches event: mouseUp</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseUp</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onReleaseOutside() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:mouseUp">flash.display.InteractiveObject dispatches event: mouseUp</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseUp</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onRollOut() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:mouseOut">flash.display.InteractiveObject dispatches event: mouseOut</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseOut</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onRollOver() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:mouseOver">flash.display.InteractiveObject dispatches event: mouseOver</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>mouseOver</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onSetFocus() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:focusIn">flash.display.InteractiveObject dispatches event: focusIn</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>focusIn</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onUnload() EventHandler       </td><td><a href="flash/display/LoaderInfo.html#event:unload">flash.display.LoaderInfo dispatches event: unload</a></td><td class="summaryTableLastCol">Replaced in the new event model by an <code>unload</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">play() Method       </td><td><a href="flash/display/MovieClip.html#play()">flash.display.MovieClip.play()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">prevFrame() Method       </td><td><a href="flash/display/MovieClip.html#prevFrame()">flash.display.MovieClip.prevFrame()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeMovieClip() Method       </td><td><a href="flash/display/DisplayObjectContainer.html#removeChild()">flash.display.DisplayObjectContainer.removeChild()</a></td><td class="summaryTableLastCol">Removed. Call the <code>removeChild()</code> method of the parent display object container that contains the movie clip.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setMask() Method       </td><td><a href="flash/display/DisplayObject.html#mask">flash.display.DisplayObject.mask</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">startDrag() Method       </td><td><a href="flash/display/Sprite.html#startDrag()">flash.display.Sprite.startDrag()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">stop() Method       </td><td><a href="flash/display/MovieClip.html#stop()">flash.display.MovieClip.stop()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">stopDrag() Method       </td><td><a href="flash/display/Sprite.html#stopDrag()">flash.display.Sprite.stopDrag()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">swapDepths() Method       </td><td>Removed</td><td class="summaryTableLastCol">In ActionScript 3.0, you can achieve similar functionality by using the methods of the DisplayObjectContainer class, such as the <code>addChildAt()</code>, <code>setChildIndex()</code>, <code>swapChildren()</code>, and <code>swapChildrenAt()</code> methods.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">unloadMovie() Method       </td><td><a href="flash/display/Loader.html#unload()">flash.display.Loader.unload()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>MovieClipLoader (class)</b></td><td><a href="flash/display/Loader.html">flash.display.Loader</a></td><td class="summaryTableLastCol">Replaced by the flash.display.Loader class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">MovieClipLoader Constructor   </td><td><a href="flash/display/Loader.html#Loader()">flash.display.Loader.Loader()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addListener() Method       </td><td><a href="flash/events/EventDispatcher.html#addEventListener()">flash.events.EventDispatcher.addEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>addListener()</code> method, because the class inherits the <code>addEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getProgress() Method       </td><td><a href="flash/display/LoaderInfo.html#event:progress">flash.display.LoaderInfo dispatches event: progress</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>progress</code> event. Event objects of <code>progress</code> type contain properties named <code>bytesLoaded</code> and <code>bytesTotal</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">loadClip() Method       </td><td><a href="flash/display/Loader.html#load()">flash.display.Loader.load()</a></td><td class="summaryTableLastCol">Replaced by the <code>load()</code> method of flash.display.Loader class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeListener() Method       </td><td><a href="flash/events/EventDispatcher.html#removeEventListener()">flash.events.EventDispatcher.removeEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>removeListener()</code> method, because the class inherits the <code>removeEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">unloadClip() Method       </td><td><a href="flash/display/Loader.html#unload()">flash.display.Loader.unload()</a></td><td class="summaryTableLastCol">Replaced by <code>unload()</code> method of flash.display.Loader class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onLoadComplete Listener       </td><td><a href="flash/display/LoaderInfo.html#event:complete">flash.display.LoaderInfo dispatches event: complete</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>complete</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onLoadError Listener       </td><td><a href="flash/display/LoaderInfo.html#event:ioError">flash.display.LoaderInfo dispatches event: ioError</a></td><td class="summaryTableLastCol">Replaced in the new event model by an <code>ioError</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onLoadInit Listener       </td><td><a href="flash/display/LoaderInfo.html#event:init">flash.display.LoaderInfo dispatches event: init</a></td><td class="summaryTableLastCol">Replaced in the new event model by an <code>init</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onLoadProgress Listener       </td><td><a href="flash/display/LoaderInfo.html#event:progress">flash.display.LoaderInfo dispatches event: progress</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>progress</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onLoadStart Listener       </td><td><a href="flash/display/LoaderInfo.html#event:open">flash.display.LoaderInfo dispatches event: open</a></td><td class="summaryTableLastCol">Replaced in the new event model by an <code>open</code> event.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>NetConnection (class)</b></td><td><a href="flash/net/NetConnection.html">flash.net.NetConnection</a></td><td class="summaryTableLastCol">This class has been moved to the flash.net package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">NetConnection Constructor   </td><td><a href="flash/net/NetConnection.html#NetConnection()">flash.net.NetConnection.NetConnection()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">connect() Constructor       </td><td><a href="flash/net/NetConnection.html#connect()">flash.net.NetConnection.connect()</a></td><td class="summaryTableLastCol">ActionScript 3.0 version adds a ...(rest) parameter.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onStatus() EventHandler      </td><td><a href="flash/net/NetConnection.html#event:netStatus">flash.net.NetConnection dispatches event: netStatus</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>netStatus</code> event.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>NetStream (class)</b></td><td><a href="flash/net/NetStream.html">flash.net.NetStream</a></td><td class="summaryTableLastCol">This class has been moved to the flash.net package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">bytesLoaded Property[read-only]       </td><td><a href="flash/net/NetStream.html#bytesLoaded">flash.net.NetStream.bytesLoaded</a></td><td class="summaryTableLastCol">Data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">bytesTotal Property[read-only]       </td><td><a href="flash/net/NetStream.html#bytesTotal">flash.net.NetStream.bytesTotal</a></td><td class="summaryTableLastCol">Data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">currentFps Property[read-only]       </td><td><a href="flash/net/NetStream.html#currentFPS">flash.net.NetStream.currentFPS</a></td><td class="summaryTableLastCol">In ActionScript 3.0, FPS is all uppercase.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">attachVideo() Method      </td><td><a href="flash/net/NetStream.html#attachCamera">flash.net.NetStream.attachCamera</a></td><td class="summaryTableLastCol">Replaced by <code>NetStream.attachCamera()</code>. Requires Flash Media Server.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onStatus() EventHandler       </td><td><a href="flash/net/NetStream.html#event:netStatus">flash.net.NetStream dispatches event: netStatus</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>netStatus</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">pause() Method       </td><td><a href="flash/net/NetStream.html#pause()">flash.net.NetStream.pause()</a></td><td class="summaryTableLastCol">In ActionScript 3.0, the <code>pause</code> method does not take a parameter. Two new methods are available to achieve the same functionality: <a href = "flash/net/NetStream.html#resume()"> <code>resume()</code></a> and <a href = "flash/net/NetStream.html#togglePause()"> <code>togglePause()</code></a>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">play() Method       </td><td><a href="flash/net/NetStream.html#play()">flash.net.NetStream.play()</a></td><td class="summaryTableLastCol">The <code>name</code>, <code>start</code>, <code>len</code>, and <code>reset</code> parameters are valid for Flash Media Server only; for Flash, ...<code>arguments</code> is used instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">seek() Method       </td><td><a href="flash/net/NetStream.html#seek()">flash.net.NetStream.seek()</a></td><td class="summaryTableLastCol">With Flash Media Server, the behavior of <code>seek()</code> depends on the <code>&lt;EnhancedSeek&gt;</code> setting in <code>Application.xml</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setBufferTime() Method       </td><td><a href="flash/net/NetStream.html#bufferTime">flash.net.NetStream.bufferTime</a></td><td class="summaryTableLastCol">In ActionScript 3.0, changed to read-write accessor property.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Number (class)</b></td><td><a href="Number.html">Number</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">Number Constructor   </td><td><a href="Number.html#Number()">Number.Number()</a></td><td class="summaryTableLastCol">In ActionScript 3.0, the <code>Number()</code> constructor and the <code>Number()</code> global function have the same effect. Also, there is no difference between a Number object and a literal Number value.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Object (class)</b></td><td><a href="Object.html">Object</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">__proto__ Property       </td><td>Removed</td><td class="summaryTableLastCol">In ActionScript 3.0, direct manipulation of the prototype chain is not allowed. To create a subclass, use the <code>extends</code> statement in the subclass declaration. For information about an object's inheritance tree and data type, use the new reflection API <code>flash.utils.describeType()</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">__resolve Property       </td><td><a href="flash/utils/Proxy.html">flash.utils.Proxy</a></td><td class="summaryTableLastCol">Use the new Proxy class for similar functionality.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addProperty() Method       </td><td>Removed</td><td class="summaryTableLastCol">In ActionScript 3.0, accessor properties can be created directly using the keywords <code>get</code> and <code>set</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">registerClass() Method    </td><td>Removed</td><td class="summaryTableLastCol">In ActionScript 3.0, all classes are registered by default. If you are encoding an object using AMF, the class of the object is not preserved during the encoding process unless you use the <code>flash.utils.registerClassAlias()</code> function.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">unwatch() Method       </td><td>Removed</td><td class="summaryTableLastCol">ActionScript 3.0 does not have watchpoints; therefore, the <code>unwatch()</code> method is obsolete.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">watch() Method       </td><td>Removed</td><td class="summaryTableLastCol">Use accessor properties (get/set functions) or the flash.utils.Proxy class for similar functionality.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>PrintJob (class)</b></td><td><a href="flash/printing/PrintJob.html">flash.printing.PrintJob</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">orientation Property[read-only]       </td><td><a href="flash/printing/PrintJob.html#orientation">flash.printing.PrintJob.orientation</a></td><td class="summaryTableLastCol">This property now has a value from the PrintJobOrientation class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">pageHeight Property[read-only]       </td><td><a href="flash/printing/PrintJob.html#pageHeight">flash.printing.PrintJob.pageHeight</a></td><td class="summaryTableLastCol">Data type changed to int.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">pageWidth Property[read-only]       </td><td><a href="flash/printing/PrintJob.html#pageWidth">flash.printing.PrintJob.pageWidth</a></td><td class="summaryTableLastCol">Data type changed to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">paperHeight Property[read-only]       </td><td><a href="flash/printing/PrintJob.html#paperHeight">flash.printing.PrintJob.paperHeight</a></td><td class="summaryTableLastCol">Data type changed to int.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">paperWidth Property[read-only]       </td><td><a href="flash/printing/PrintJob.html#paperWidth">flash.printing.PrintJob.paperWidth</a></td><td class="summaryTableLastCol">Data type changed to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">PrintJob Constructor   </td><td><a href="flash/printing/PrintJob.html#PrintJob()">flash.printing.PrintJob.PrintJob()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addPage() Method       </td><td><a href="flash/printing/PrintJob.html#addPage()">flash.printing.PrintJob.addPage()</a></td><td class="summaryTableLastCol">In ActionScript 3.0, changed data types of parameters: First parameter <code>target</code> is a Sprite data type; second parameter <code>printArea</code> is a Rectangle data type; third parameter <code>options</code> is the new PrintJobOptions data type; and fourth parameter <code>frameNum</code> is an int data type.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">send() Method       </td><td><a href="flash/printing/PrintJob.html#send()">flash.printing.PrintJob.send()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">start() Method       </td><td><a href="flash/printing/PrintJob.html#start()">flash.printing.PrintJob.start()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Rectangle (class)</b></td><td colspan="2">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">containsRectangle() Method          </td><td><a href="flash/geom/Rectangle.html#containsRect()">flash.geom.Rectangle.containsRect()</a></td><td class="summaryTableLastCol">Renamed for consistency.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>security (class)</b></td><td><a href="flash/system/Security.html">flash.system.Security</a></td><td class="summaryTableLastCol">This class has been moved to the flash.system package.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Selection (class)</b></td><td>Removed</td><td class="summaryTableLastCol">Methods of this class have been moved to other classes.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addListener() Method    </td><td><a href="flash/events/EventDispatcher.html#addEventListener()">flash.events.EventDispatcher.addEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>addListener()</code> method, because any display object inherits the <code>addEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getBeginIndex() Method    </td><td><a href="flash/text/TextField.html#selectionBeginIndex">flash.text.TextField.selectionBeginIndex</a></td><td class="summaryTableLastCol">Changed from method to accessor property and name changed to <code>selectionBeginIndex</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getCaretIndex() Method    </td><td><a href="flash/text/TextField.html#caretIndex">flash.text.TextField.caretIndex</a></td><td class="summaryTableLastCol">Changed from method to accessor property and name changed to <code>caretIndex</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getEndIndex() Method    </td><td><a href="flash/text/TextField.html#selectionEndIndex">flash.text.TextField.selectionEndIndex</a></td><td class="summaryTableLastCol">Changed from method to accessor property and name changed to <code>selectionEndIndex</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getFocus() Method    </td><td><a href="flash/display/Stage.html#focus">flash.display.Stage.focus</a></td><td class="summaryTableLastCol">Changed from method to property accessor and name changed to <code>focus</code>. In ActionScript 2.0 the data type of the return value is String, but in ActionScript 3.0 the property has the InteractiveObject data type.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeListener() Method    </td><td><a href="flash/events/EventDispatcher.html#removeEventListener()">flash.events.EventDispatcher.removeEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>removeListener()</code> method, because display objects inherit the <code>removeEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setFocus() Method    </td><td><a href="flash/display/Stage.html#focus">flash.display.Stage.focus</a></td><td class="summaryTableLastCol">Changed from method to accessor property and name changed to <code>focus</code>. In ActionScript 2.0 the data type of the return value is String, but in ActionScript 3.0 the property has the InteractiveObject data type.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setSelection() Method    </td><td><a href="flash/text/TextField.html#setSelection()">flash.text.TextField.setSelection()</a></td><td class="summaryTableLastCol">Both parameters changed from Number to uint data type.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onSetFocus Listener       </td><td><a href="flash/display/InteractiveObject.html#event:focusIn">flash.display.InteractiveObject dispatches event: focusIn</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>focusIn</code> event.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>SharedObject (class)</b></td><td><a href="flash/net/SharedObject.html">flash.net.SharedObject</a></td><td class="summaryTableLastCol">This class has been moved to the flash.net package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">flush() Method       </td><td><a href="flash/net/SharedObject.html#flush()">flash.net.SharedObject.flush()</a></td><td class="summaryTableLastCol">This method no longer returns a Boolean value. If the flush fails, Flash Player throws an exception; if the flush succeeds or is pending user interaction, Flash Player returns a string <code>"flushed"</code> or <code>"pending"</code>. Also, the data type of the <code>minDiskSpace</code> parameter changed to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getSize() Method       </td><td><a href="flash/net/SharedObject.html#size">flash.net.SharedObject.size</a></td><td class="summaryTableLastCol">Changed to accessor property. Data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onStatus() EventHandler       </td><td><a href="flash/net/SharedObject.html#event:netStatus">flash.net.SharedObject dispatches event: netStatus</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>netStatus</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onSync() EventHandler            </td><td><a href="flash/net/SharedObject.html#event:onSync">flash.net.SharedObject dispatches event: onSync</a></td><td class="summaryTableLastCol">Replaced in the new event model by the <code>sync</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setFps() Method       </td><td><a href="flash/net/SharedObject.html#fps">flash.net.SharedObject.fps</a></td><td class="summaryTableLastCol">In ActionScript 3.0, set in the <code>fps</code> property. No longer has a default value or returns a Boolean value.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Sound (class)</b></td><td><a href="flash/media/Sound.html">flash.media.Sound</a></td><td class="summaryTableLastCol">This class has been moved to the flash.media package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">checkPolicyFile </td><td><a href="flash/media/SoundChannel.html#stop()">flash.media.SoundChannel.stop()</a></td><td class="summaryTableLastCol">Replaced by the <code>flash.media.SoundChannel.stop()</code> method.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">duration Property[read-only]       </td><td><a href="flash/media/Sound.html#length">flash.media.Sound.length</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">id3 Property[read-only]       </td><td><a href="flash/media/Sound.html#id3">flash.media.Sound.id3</a></td><td class="summaryTableLastCol">Data type changed from Object to ID3Info. ID3Info is a new class that contains the ID3 properties. Also, the spelling of the <code>songname</code> property changed to <code>songName</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">position Property[read-only]       </td><td><a href="flash/media/SoundChannel.html#position">flash.media.SoundChannel.position</a></td><td class="summaryTableLastCol">Moved to the SoundChannel class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">attachSound() Method       </td><td>Removed</td><td class="summaryTableLastCol">Create an instance of a Sound subclass that is associated with sound data; for example, by using <code>new Sound()</code> instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getBytesLoaded() Method       </td><td><a href="flash/media/Sound.html#bytesLoaded">flash.media.Sound.bytesLoaded</a></td><td class="summaryTableLastCol">Changed to accessor property and data type changed to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getBytesTotal() Method       </td><td><a href="flash/media/Sound.html#bytesTotal">flash.media.Sound.bytesTotal</a></td><td class="summaryTableLastCol">Changed to property accessor and data type changed to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getPan() Method       </td><td><a href="flash/media/SoundTransform.html#pan">flash.media.SoundTransform.pan</a></td><td class="summaryTableLastCol">Changed to accessor property and moved to the SoundTransform class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getTransform() Method       </td><td><a href="flash/media/SoundMixer.html#soundTransform">flash.media.SoundMixer.soundTransform</a></td><td class="summaryTableLastCol">Changed to accessor property and data type changed to SoundTransform.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getVolume() Method       </td><td><a href="flash/media/SoundTransform.html#volume">flash.media.SoundTransform.volume</a></td><td class="summaryTableLastCol">Set the <code>flash.media.SoundTransform.volume</code> property to control sound volume.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">loadSound() Method       </td><td><a href="flash/media/Sound.html#load()">flash.media.Sound.load()</a></td><td class="summaryTableLastCol">The first parameter changed from a simple URL string to a URLRequest object. The second parameter changed from a Boolean value representing whether sound begins playing as soon as possible to a SoundLoaderContext object.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onID3() EventHandler      </td><td><a href="flash/media/Sound.html#event:id3">flash.media.Sound dispatches event: id3</a></td><td class="summaryTableLastCol">Replaced in the new event model by an <code>id3</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onLoad() EventHandler      </td><td><a href="flash/media/Sound.html#event:complete">flash.media.Sound dispatches event: complete</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>complete</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onSoundComplete() EventHandler      </td><td><a href="flash/media/SoundChannel.html#event:soundComplete">flash.media.SoundChannel dispatches event: soundComplete</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>soundComplete</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setPan() Method       </td><td><a href="flash/media/SoundTransform.html#pan">flash.media.SoundTransform.pan</a></td><td class="summaryTableLastCol">Changed to accessor property and moved to SoundTransform class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setTransform() Method       </td><td><a href="flash/media/SoundMixer.html#soundTransform">flash.media.SoundMixer.soundTransform</a></td><td class="summaryTableLastCol">Changed to accessor property and data type changed to SoundTransform.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setVolume() Method       </td><td><a href="flash/media/SoundChannel.html">flash.media.SoundChannel</a></td><td class="summaryTableLastCol">Removed. Use <code>flash.media.SoundChannel.leftPeak</code> and <code>flash.media.SoundChannel.rightPeak</code> to monitor the amplitude of a sound channel.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">start() Method       </td><td><a href="flash/media/Sound.html#play()">flash.media.Sound.play()</a></td><td class="summaryTableLastCol">The <code>loops</code> parameter data type changed from Number to int. Added a third parameter, <code>sndTransform</code>, to specify the initial sound transform to be used by the sound channel.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">stop() Method       </td><td><a href="flash/media/SoundChannel.html#stop()">flash.media.SoundChannel.stop()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Stage (class)</b></td><td><a href="flash/display/Stage.html">flash.display.Stage</a></td><td class="summaryTableLastCol">This class has been moved to the flash.display package. In ActionScript 3.0, the Stage is no longer a global object. You access the Stage by using the new <code>DisplayObject.stage</code> property.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">align Property    </td><td><a href="flash/display/Stage.html#align">flash.display.Stage.align</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">height Property    </td><td><a href="flash/display/Stage.html#stageHeight">flash.display.Stage.stageHeight</a></td><td class="summaryTableLastCol">Name changed from <code>height</code> to <code>stageHeight</code> so that it does not conflict with the <code>flash.display.DisplayObject.height</code> property.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">scaleMode Property    </td><td><a href="flash/display/Stage.html#scaleMode">flash.display.Stage.scaleMode</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">showMenu Property    </td><td><a href="flash/display/Stage.html#showDefaultContextMenu">flash.display.Stage.showDefaultContextMenu</a></td><td class="summaryTableLastCol">Name changed to better reflect which menu is shown.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">width Property    </td><td><a href="flash/display/Stage.html#stageWidth">flash.display.Stage.stageWidth</a></td><td class="summaryTableLastCol">Name changed from <code>width</code> to <code>stageWidth</code> so that it does not conflict with the <code>flash.display.DisplayObject.width</code> property.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addListener() Method    </td><td><a href="flash/events/EventDispatcher.html#addEventListener()">flash.events.EventDispatcher.addEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>addListener()</code> method, because the class inherits the <code>addEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeListener() Method    </td><td><a href="flash/events/EventDispatcher.html#removeEventListener()">flash.events.EventDispatcher.removeEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>removeListener()</code> method, because the class inherits the <code>removeEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onResize Listener       </td><td><a href="flash/display/Stage.html#event:resize">flash.display.Stage dispatches event: resize</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>resize</code> event.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>String (class)</b></td><td><a href="String.html">String</a></td><td class="summaryTableLastCol">Adds support for regular expressions with three new methods: <code>match()</code>, <code>replace()</code>, and <code>search()</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">concat() Method       </td><td><a href="String.html#concat()">String.concat()</a></td><td class="summaryTableLastCol">Parameter changed to ...(rest) parameter format.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>StyleSheet (class)</b></td><td><a href="flash/text/StyleSheet.html">flash.text.StyleSheet</a></td><td class="summaryTableLastCol">This class has been moved to the flash.text package. The <code>load()</code> and <code>onLoad()</code> members have been removed, and some private functions and variables have been added.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">StyleSheet Constructor   </td><td><a href="flash/text/StyleSheet.html#StyleSheet()">flash.text.StyleSheet.StyleSheet()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">clear() Method   </td><td><a href="flash/text/StyleSheet.html#clear()">flash.text.StyleSheet.clear()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getStyle() Method   </td><td><a href="flash/text/StyleSheet.html#getStyle()">flash.text.StyleSheet.getStyle()</a></td><td class="summaryTableLastCol">Parameter name changed to <code>n</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getStyleNames() Method   </td><td><a href="flash/text/StyleSheet.html#styleNames">flash.text.StyleSheet.styleNames</a></td><td class="summaryTableLastCol">Changed to accessor property.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">load() Method   </td><td><a href="flash/net/URLLoader.html#load()">flash.net.URLLoader.load()</a></td><td class="summaryTableLastCol">Use the new URLLoader and URLRequest classes for loading URLs.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onLoad() EventHandler   </td><td><a href="flash/net/URLLoader.html#event:complete">flash.net.URLLoader dispatches event: complete</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>complete</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">parseCSS() Method   </td><td><a href="flash/text/StyleSheet.html#parseCSS()">flash.text.StyleSheet.parseCSS()</a></td><td class="summaryTableLastCol">In ActionScript 3.0, returns <code>void</code> instead of a Boolean value.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setStyle() Method   </td><td><a href="flash/text/StyleSheet.html#setStyle()">flash.text.StyleSheet.setStyle()</a></td><td class="summaryTableLastCol">Parameter name changed to <code>n</code> and style to <code>s</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">transform() Method   </td><td><a href="flash/text/StyleSheet.html#transform()">flash.text.StyleSheet.transform()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>System (class)</b></td><td><a href="flash/system/System.html">flash.system.System</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">exactSettings Property    </td><td><a href="flash/system/Security.html#exactSettings">flash.system.Security.exactSettings</a></td><td class="summaryTableLastCol">Moved to the flash.System.Security class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">useCodepage Property    </td><td><a href="flash/system/System.html#useCodePage">flash.system.System.useCodePage</a></td><td class="summaryTableLastCol">In ActionScript 3.0, the letter 'P' in <code>useCodePage</code> is uppercase.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onStatus() EventHandler       </td><td>Removed</td><td class="summaryTableLastCol">This event hander is obsolete in the ActionScript 3.0 event model.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setClipboard() Method    </td><td><a href="flash/system/System.html#setClipboard()">flash.system.System.setClipboard()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">showSettings() Method    </td><td><a href="flash/system/Security.html#showSettings()">flash.system.Security.showSettings()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>TextField (class)</b></td><td><a href="flash/text/TextField.html">flash.text.TextField</a></td><td class="summaryTableLastCol">This class has been moved to the flash.text package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_alpha Property       </td><td><a href="flash/display/DisplayObject.html#alpha">flash.display.DisplayObject.alpha</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">antiAliasType Property       </td><td><a href="flash/text/TextField.html#antiAliasType">flash.text.TextField.antiAliasType</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">autoSize Property       </td><td><a href="flash/text/TextField.html#autoSize">flash.text.TextField.autoSize</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">background Property       </td><td><a href="flash/text/TextField.html#background">flash.text.TextField.background</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">backgroundColor Property       </td><td><a href="flash/text/TextField.html#backgroundColor">flash.text.TextField.backgroundColor</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">border Property       </td><td><a href="flash/text/TextField.html#border">flash.text.TextField.border</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">borderColor Property       </td><td><a href="flash/text/TextField.html#borderColor">flash.text.TextField.borderColor</a></td><td class="summaryTableLastCol">In ActionScript 3.0, returns a uint instead of a Number.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">bottomScroll Property[read-only]       </td><td><a href="flash/text/TextField.html#bottomScrollV">flash.text.TextField.bottomScrollV</a></td><td class="summaryTableLastCol">In ActionScript 3.0, returns a uint instead of a Number.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">condenseWhite Property       </td><td><a href="flash/text/TextField.html#condenseWhite">flash.text.TextField.condenseWhite</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">embedFonts Property       </td><td><a href="flash/text/TextField.html#embedFonts">flash.text.TextField.embedFonts</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">filters Property      </td><td><a href="flash/display/DisplayObject.html#filters">flash.display.DisplayObject.filters</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">gridFitType Property       </td><td><a href="flash/text/TextField.html#gridFitType">flash.text.TextField.gridFitType</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_height Property       </td><td><a href="flash/display/DisplayObject.html#height">flash.display.DisplayObject.height</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_highquality Property      </td><td><a href="flash/display/Stage.html#quality">flash.display.Stage.quality</a></td><td class="summaryTableLastCol">Removed. Replaced by the <code>quality</code> property of the Stage class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">hscroll Property       </td><td><a href="flash/text/TextField.html#scrollH">flash.text.TextField.scrollH</a></td><td class="summaryTableLastCol">Data type changed from Number to uint. Name changed from <code>hscroll</code> to <code>scrollH</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">html Property       </td><td><a href="flash/text/TextField.html#htmlText">flash.text.TextField.htmlText</a></td><td class="summaryTableLastCol">Removed. In ActionScript 3.0, all text fields are treated as HTML text fields. Use the <code>TextField.htmlText</code> property to set HTML text.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">htmlText Property       </td><td><a href="flash/text/TextField.html#htmlText">flash.text.TextField.htmlText</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">length Property[read-only]       </td><td><a href="flash/text/TextField.html#length">flash.text.TextField.length</a></td><td class="summaryTableLastCol">Data type changed from Number to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">maxChars Property       </td><td><a href="flash/text/TextField.html#maxChars">flash.text.TextField.maxChars</a></td><td class="summaryTableLastCol">Data type changed from Number to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">maxhscroll Property[read-only]       </td><td><a href="flash/text/TextField.html#maxScrollH">flash.text.TextField.maxScrollH</a></td><td class="summaryTableLastCol">Data type changed from Number to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">maxscroll Property[read-only]       </td><td><a href="flash/text/TextField.html#maxScrollV">flash.text.TextField.maxScrollV</a></td><td class="summaryTableLastCol">Data type changed from Number to uint. Name changed to use uppercase S and to add the letter V to represent vertical scrolling.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">menu Property       </td><td><a href="flash/display/InteractiveObject.html#contextMenu">flash.display.InteractiveObject.contextMenu</a></td><td class="summaryTableLastCol">This property is now inherited from the InteractiveObject class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">mouseWheelEnabled Property      </td><td><a href="flash/text/TextField.html#mouseWheelEnabled">flash.text.TextField.mouseWheelEnabled</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">multiline Property      </td><td><a href="flash/text/TextField.html#multiline">flash.text.TextField.multiline</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_name Property       </td><td><a href="flash/display/DisplayObject.html#name">flash.display.DisplayObject.name</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_parent Property       </td><td><a href="flash/display/DisplayObject.html#parent">flash.display.DisplayObject.parent</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore. Data type changed from MovieClip to DisplayObjectContainer.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">password Property      </td><td><a href="flash/text/TextField.html#displayAsPassword">flash.text.TextField.displayAsPassword</a></td><td class="summaryTableLastCol">Renamed property for consistency.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_quality Property       </td><td><a href="flash/display/Stage.html#quality">flash.display.Stage.quality</a></td><td class="summaryTableLastCol">Moved to Stage class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">restrict Property       </td><td><a href="flash/text/TextField.html#restrict">flash.text.TextField.restrict</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_rotation Property       </td><td><a href="flash/display/DisplayObject.html#rotation">flash.display.DisplayObject.rotation</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">scroll Property       </td><td><a href="flash/text/TextField.html#scrollV">flash.text.TextField.scrollV</a></td><td class="summaryTableLastCol">Data type changed from Number to uint and name changed from <code>scroll</code> to <code>scrollV</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">selectable Property       </td><td><a href="flash/text/TextField.html#selectable">flash.text.TextField.selectable</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">sharpness Property       </td><td><a href="flash/text/TextField.html#sharpness">flash.text.TextField.sharpness</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_soundbuftime Property       </td><td><a href="flash/media/SoundMixer.html#bufferTime">flash.media.SoundMixer.bufferTime</a></td><td class="summaryTableLastCol">Properties and methods for global sound control in a SWF file are now in the flash.media.SoundMixer class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">styleSheet Property       </td><td><a href="flash/text/TextField.html#styleSheet">flash.text.TextField.styleSheet</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">tabEnabled Property       </td><td><a href="flash/display/InteractiveObject.html#tabEnabled">flash.display.InteractiveObject.tabEnabled</a></td><td class="summaryTableLastCol">This property is now inherited from the InteractiveObject class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">tabIndex Property       </td><td><a href="flash/display/InteractiveObject.html#tabIndex">flash.display.InteractiveObject.tabIndex</a></td><td class="summaryTableLastCol">This property is now inherited from the InteractiveObject class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_target Property[read-only]       </td><td>Removed</td><td class="summaryTableLastCol">ActionScript 3.0 identifies display objects directly; therefore, identifying the path is no longer necessary.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">text Property       </td><td><a href="flash/text/TextField.html#text">flash.text.TextField.text</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">textColor Property       </td><td><a href="flash/text/TextField.html#textColor">flash.text.TextField.textColor</a></td><td class="summaryTableLastCol">Data type changed from Number to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">textHeight Property       </td><td><a href="flash/text/TextField.html#textHeight">flash.text.TextField.textHeight</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">textWidth Property       </td><td><a href="flash/text/TextField.html#textWidth">flash.text.TextField.textWidth</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">thickness Property       </td><td><a href="flash/text/TextField.html#thickness">flash.text.TextField.thickness</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">type Property       </td><td><a href="flash/text/TextField.html#type">flash.text.TextField.type</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_url Property[read-only]       </td><td><a href="flash/display/LoaderInfo.html#url">flash.display.LoaderInfo.url</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">variable Property       </td><td>Removed</td><td class="summaryTableLastCol">This variable is no longer necessary in ActionScript 3.0.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_visible Property       </td><td><a href="flash/display/DisplayObject.html#visible">flash.display.DisplayObject.visible</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_width Property       </td><td><a href="flash/display/DisplayObject.html#width">flash.display.DisplayObject.width</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">wordWrap Property       </td><td><a href="flash/text/TextField.html#wordWrap">flash.text.TextField.wordWrap</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_x Property       </td><td><a href="flash/display/DisplayObject.html#x">flash.display.DisplayObject.x</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_xmouse Property[read-only]       </td><td><a href="flash/display/DisplayObject.html#mouseX">flash.display.DisplayObject.mouseX</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_xscale Property       </td><td><a href="flash/display/DisplayObject.html#scaleX">flash.display.DisplayObject.scaleX</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_y Property       </td><td><a href="flash/display/DisplayObject.html#y">flash.display.DisplayObject.y</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_ymouse Property[read-only]       </td><td><a href="flash/display/DisplayObject.html#mouseY">flash.display.DisplayObject.mouseY</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_yscale Property       </td><td><a href="flash/display/DisplayObject.html#scaleY">flash.display.DisplayObject.scaleY</a></td><td class="summaryTableLastCol">This property is now inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addListener() Method       </td><td><a href="flash/events/EventDispatcher.html#addEventListener()">flash.events.EventDispatcher.addEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>addListener()</code> method, because the class inherits the <code>addEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getDepth() Method       </td><td><a href="flash/display/DisplayObjectContainer.html">flash.display.DisplayObjectContainer</a></td><td class="summaryTableLastCol">Removed. Use the methods of the DisplayObjectContainer class to ascertain text field depth.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getFontList() Method       </td><td><a href="flash/text/Font.html#enumerateFonts()">flash.text.Font.enumerateFonts()</a></td><td class="summaryTableLastCol">Removed. Use <code>Font.enumerateFonts()</code> with the <code>enumerateDeviceFonts</code> parameter set to <code>true</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getNewTextFormat() Method       </td><td><a href="flash/text/TextField.html#defaultTextFormat">flash.text.TextField.defaultTextFormat</a></td><td class="summaryTableLastCol">Name changed from <code>getNewTextFormat</code> to <code>defaultTextFormat</code>. Changed from method to accessor property.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getTextFormat() Method       </td><td><a href="flash/text/TextField.html#getTextFormat()">flash.text.TextField.getTextFormat()</a></td><td class="summaryTableLastCol">Data type of both parameters changed from Number to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onChanged() EventHandler       </td><td><a href="flash/text/TextField.html#event:change">flash.text.TextField dispatches event: change</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>change</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onKillFocus() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:focusOut">flash.display.InteractiveObject dispatches event: focusOut</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>focusOut</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onScroller() EventHandler       </td><td><a href="flash/text/TextField.html#event:scroll">flash.text.TextField dispatches event: scroll</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>scroll</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onSetFocus() EventHandler       </td><td><a href="flash/display/InteractiveObject.html#event:focusIn">flash.display.InteractiveObject dispatches event: focusIn</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>focusIn</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeListener() Method       </td><td><a href="flash/events/EventDispatcher.html#removeEventListener()">flash.events.EventDispatcher.removeEventListener()</a></td><td class="summaryTableLastCol">In the new event model, there is no need to have a class-specific <code>removeListener()</code> method, because the class inherits the <code>removeEventListener()</code> method from the EventDispatcher class.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">removeTextField() Method       </td><td><a href="flash/display/DisplayObjectContainer.html#removeChild()">flash.display.DisplayObjectContainer.removeChild()</a></td><td class="summaryTableLastCol">Removed. Call the <code>removeChild()</code> method of the parent display object container that contains the text field.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">replaceSel() Method       </td><td><a href="flash/text/TextField.html#replaceSelectedText()">flash.text.TextField.replaceSelectedText()</a></td><td class="summaryTableLastCol">Name changed from <code>replacesel()</code> to <code>replaceSelectedText()</code>. Replaced the <code>newText</code> parameter with a string value.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">replaceText() Method       </td><td><a href="flash/text/TextField.html#replaceText()">flash.text.TextField.replaceText()</a></td><td class="summaryTableLastCol">Data types of first two parameters changed from Number to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setNewTextFormat() Method       </td><td><a href="flash/text/TextField.html#defaultTextFormat">flash.text.TextField.defaultTextFormat</a></td><td class="summaryTableLastCol">Name changed from <code>setNewTextFormat</code> to <code>defaultTextFormat</code>. Changed from method to accessor property.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setTextFormat() Method       </td><td><a href="flash/text/TextField.html#setTextFormat()">flash.text.TextField.setTextFormat()</a></td><td class="summaryTableLastCol">Order of parameters changed. Index parameters data type changed from Number to int.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>TextFormat (class)</b></td><td><a href="flash/text/TextFormat.html">flash.text.TextFormat</a></td><td class="summaryTableLastCol">This class has been moved to the flash.text package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">align Property       </td><td><a href="flash/text/TextFormat.html#align">flash.text.TextFormat.align</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">blockIndent Property       </td><td><a href="flash/text/TextFormat.html#blockIndent">flash.text.TextFormat.blockIndent</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Number data type in ActionScript 3.0.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">bold Property       </td><td><a href="flash/text/TextFormat.html#bold">flash.text.TextFormat.bold</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Boolean data type in ActionScript 3.0.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">bullet Property       </td><td><a href="flash/text/TextFormat.html#bullet">flash.text.TextFormat.bullet</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Boolean data type in ActionScript 3.0.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">color Property       </td><td><a href="flash/text/TextFormat.html#color">flash.text.TextFormat.color</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Number data type in ActionScript 3.0.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">font Property       </td><td><a href="flash/text/TextFormat.html#font">flash.text.TextFormat.font</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">indent Property       </td><td><a href="flash/text/TextFormat.html#indent">flash.text.TextFormat.indent</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Number data type in ActionScript 3.0.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">italic Property       </td><td><a href="flash/text/TextFormat.html#bullet">flash.text.TextFormat.bullet</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Boolean data type in ActionScript 3.0.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">kerning Property       </td><td><a href="flash/text/TextFormat.html#kerning">flash.text.TextFormat.kerning</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Boolean data type in ActionScript 3.0.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">leading Property       </td><td><a href="flash/text/TextFormat.html#leading">flash.text.TextFormat.leading</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Number data type in ActionScript 3.0.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">leftMargin Property       </td><td><a href="flash/text/TextFormat.html#leftMargin">flash.text.TextFormat.leftMargin</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Number data type in ActionScript 3.0.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">letterSpacing Property       </td><td><a href="flash/text/TextFormat.html#letterSpacing">flash.text.TextFormat.letterSpacing</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Number data type in ActionScript 3.0.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">rightMargin Property       </td><td><a href="flash/text/TextFormat.html#rightMargin">flash.text.TextFormat.rightMargin</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Number data type in ActionScript 3.0.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">size Property       </td><td><a href="flash/text/TextFormat.html#size">flash.text.TextFormat.size</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Number data type in ActionScript 3.0.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">underline Property       </td><td><a href="flash/text/TextFormat.html#underline">flash.text.TextFormat.underline</a></td><td class="summaryTableLastCol">In ActionScript 3.0, data type changed to Object because one of the possible values is <code>null</code>, which is not a member of the Boolean data type in ActionScript 3.0.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">url Property       </td><td><a href="flash/text/TextFormat.html#url">flash.text.TextFormat.url</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">TextFormat Constructor       </td><td><a href="flash/text/TextFormat.html#TextFormat()">flash.text.TextFormat.TextFormat()</a></td><td class="summaryTableLastCol">The <code>size</code>, <code>color</code>, <code>bold</code>, <code>italic</code>, <code>underline</code>, <code>url</code>, <code>leftMargin</code>, <code>rightMargin</code>, <code>indent</code>, and <code>leading</code> parameters have all been converted to objects.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getTextExtent() Method      </td><td>Removed</td><td class="summaryTableLastCol">Use the properties of flash.text.TextField for the measurements of a field containing a line of text, and use flash.text.TextLineMetrics for the measurements of the content within the text field.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>TextRenderer (class)</b></td><td><a href="flash/text/TextRenderer.html">flash.text.TextRenderer</a></td><td class="summaryTableLastCol">Location changed. Moved to flash.text package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">maxLevel Property       </td><td><a href="flash/text/TextRenderer.html#maxLevel">flash.text.TextRenderer.maxLevel</a></td><td class="summaryTableLastCol">Defined as a <code>uint</code> in ActionScript 3.0.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setAdvancedAntialiasingTable() Method       </td><td><a href="flash/text/TextRenderer.html#setAdvancedAntiAliasingTable()">flash.text.TextRenderer.setAdvancedAntiAliasingTable()</a></td><td class="summaryTableLastCol">The <code>fontStyle</code> and <code>colorType</code> parameter values can now be set using the FontStyle and TextColorType constants, respectively. The <code>advancedAntiAliasingTable</code> parameter now takes an array of one or more CSMSettings objects.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>TextSnapshot (class)</b></td><td><a href="flash/text/TextSnapshot.html">flash.text.TextSnapshot</a></td><td class="summaryTableLastCol">This class has been moved to the flash.text package. Several parameters have changed, as well as some method names and some return types.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">findText() Method       </td><td><a href="flash/text/TextSnapshot.html#findText()">flash.text.TextSnapshot.findText()</a></td><td class="summaryTableLastCol">Name of the <code>startIndex</code> parameter changed to <code>beginIndex</code>. Data type of the <code>startIndex</code> parameter changed from Number to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getCount() Method       </td><td><a href="flash/text/TextSnapshot.html#charCount">flash.text.TextSnapshot.charCount</a></td><td class="summaryTableLastCol">Changed from method to accessor property. Data return type changed from Number to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getSelected() Method       </td><td><a href="flash/text/TextSnapshot.html#getSelected()">flash.text.TextSnapshot.getSelected()</a></td><td class="summaryTableLastCol">Data type of parameters changed from Number to uint and names changed from <code>start</code> and <code>end</code> to <code>beginIndex</code> and <code>EndIndex</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getSelectedText() Method       </td><td><a href="flash/text/TextSnapshot.html#getSelectedText()">flash.text.TextSnapshot.getSelectedText()</a></td><td class="summaryTableLastCol">In ActionScript 3.0, the parameter has a default value of <code>false</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getText() Method       </td><td><a href="flash/text/TextSnapshot.html#getText()">flash.text.TextSnapshot.getText()</a></td><td class="summaryTableLastCol">Data type of <code>start</code> and <code>end</code> parameters changed from Number to uint and names changed from <code>start</code> and <code>end</code> to <code>beginIndex</code> and <code>endIndex</code>.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getTextRunInfo() Method      </td><td><a href="flash/text/TextSnapshot.html#getTextRunInfo()">flash.text.TextSnapshot.getTextRunInfo()</a></td><td class="summaryTableLastCol">Data type of parameters changed from Number to uint.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">hitTestTextNearPos() Method       </td><td><a href="flash/text/TextSnapshot.html#hitTestTextNearPos()">flash.text.TextSnapshot.hitTestTextNearPos()</a></td><td class="summaryTableLastCol">Name of the <code>closeDist</code> parameter changed to <code>maxDistance</code>; now has a default value = 0.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setSelectColor() Method       </td><td><a href="flash/text/TextSnapshot.html#setSelectColor()">flash.text.TextSnapshot.setSelectColor()</a></td><td class="summaryTableLastCol">Data type of parameter changed from Number to uint and has a default value = 0xFFFF00.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">setSelected() Method       </td><td><a href="flash/text/TextSnapshot.html#setSelected()">flash.text.TextSnapshot.setSelected()</a></td><td class="summaryTableLastCol">Data type of <code>start</code> and <code>end</code> parameters changed from Number to uint and names changed from <code>start</code> and <code>end</code> to <code>beginIndex</code> and <code>endIndex</code>.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>Video (class)</b></td><td><a href="flash/media/Video.html">flash.media.Video</a></td><td class="summaryTableLastCol">This class has been moved to the flash.media package. Video objects can now be created dynamically in ActionScript with the <code>Video()</code> constructor. Attach a video stream to the Video object by using <code>attachCamera()</code> or <code>attachNetStream()</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_alpha Property       </td><td><a href="flash/display/DisplayObject.html#alpha">flash.display.DisplayObject.alpha</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">deblocking Property       </td><td><a href="flash/media/Video.html#deblocking">flash.media.Video.deblocking</a></td><td class="summaryTableLastCol">Data type changed from Number to int.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_height Property       </td><td><a href="flash/display/DisplayObject.html#height">flash.display.DisplayObject.height</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">height Property[read-only]       </td><td><a href="flash/media/Video.html#videoHeight">flash.media.Video.videoHeight</a></td><td class="summaryTableLastCol">Data type changed from Number to int.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_name Property       </td><td><a href="flash/display/DisplayObject.html#name">flash.display.DisplayObject.name</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_parent Property       </td><td><a href="flash/display/DisplayObject.html#parent">flash.display.DisplayObject.parent</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_rotation Property       </td><td><a href="flash/display/DisplayObject.html#rotation">flash.display.DisplayObject.rotation</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">smoothing Property       </td><td><a href="flash/media/Video.html#smoothing">flash.media.Video.smoothing</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_visible Property       </td><td><a href="flash/display/DisplayObject.html#visible">flash.display.DisplayObject.visible</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_width Property       </td><td><a href="flash/display/DisplayObject.html#width">flash.display.DisplayObject.width</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">width Property[read-only]           </td><td><a href="flash/media/Video.html#videoWidth">flash.media.Video.videoWidth</a></td><td class="summaryTableLastCol">Data type changed from Number to int.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_x Property       </td><td><a href="flash/display/DisplayObject.html#x">flash.display.DisplayObject.x</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_xmouse Property[read-only]       </td><td><a href="flash/display/DisplayObject.html#mouseX">flash.display.DisplayObject.mouseX</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_xscale Property       </td><td><a href="flash/display/DisplayObject.html#scaleX">flash.display.DisplayObject.scaleX</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_y Property       </td><td><a href="flash/display/DisplayObject.html#y">flash.display.DisplayObject.y</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_ymouse Property[read-only]           </td><td><a href="flash/display/DisplayObject.html#mouseY">flash.display.DisplayObject.mouseY</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">_yscale Property       </td><td><a href="flash/display/DisplayObject.html#scaleY">flash.display.DisplayObject.scaleY</a></td><td class="summaryTableLastCol">This property is inherited from the DisplayObject class. Removed the initial underscore.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">attachVideo() Method       </td><td><a href="flash/media/Video.html#attachNetStream()">flash.media.Video.attachNetStream()</a></td><td class="summaryTableLastCol">To specify a video stream from a camera object, use <code>flash.media.Video.attachCamera()</code>.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">clear() Method       </td><td><a href="flash/media/Video.html#clear()">flash.media.Video.clear()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>XML (class)</b></td><td><a href="flash/xml/XMLDocument.html">flash.xml.XMLDocument</a></td><td class="summaryTableLastCol">This class has been moved to the flash.xml package and its name has been changed to XMLDocument to avoid conflict with the new top-level XML class that implements ECMAScript for XML (E4X).</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">contentType Property       </td><td><a href="flash/net/URLRequest.html#contentType">flash.net.URLRequest.contentType</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">docTypeDecl Property       </td><td><a href="flash/xml/XMLDocument.html#docTypeDecl">flash.xml.XMLDocument.docTypeDecl</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">idMap Property       </td><td><a href="flash/xml/XMLDocument.html#idMap">flash.xml.XMLDocument.idMap</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">ignoreWhite Property       </td><td><a href="flash/xml/XMLDocument.html#ignoreWhite">flash.xml.XMLDocument.ignoreWhite</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">loaded Property       </td><td>Removed</td><td class="summaryTableLastCol">File loading functionality was removed from the XMLDocument class. Use URLLoader instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">status Property       </td><td>Removed</td><td class="summaryTableLastCol">Parse failures are now reported by exceptions.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">xmlDecl Property       </td><td><a href="flash/xml/XMLDocument.html#xmlDecl">flash.xml.XMLDocument.xmlDecl</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">XML Constructor       </td><td><a href="flash/xml/XMLDocument.html#XMLDocument()">flash.xml.XMLDocument.XMLDocument()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">addRequestHeader() Method       </td><td><a href="flash/net/URLRequest.html#requestHeaders">flash.net.URLRequest.requestHeaders</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">createElement() Method       </td><td><a href="flash/xml/XMLDocument.html#createElement()">flash.xml.XMLDocument.createElement()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">createTextNode() Method       </td><td><a href="flash/xml/XMLDocument.html#createTextNode()">flash.xml.XMLDocument.createTextNode()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getBytesLoaded() Method       </td><td><a href="flash/net/URLLoader.html#bytesLoaded">flash.net.URLLoader.bytesLoaded</a></td><td class="summaryTableLastCol">File loading functionality was removed from the XMLDocument class. Use URLLoader instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">getBytesTotal() Method       </td><td><a href="flash/net/URLLoader.html#bytesTotal">flash.net.URLLoader.bytesTotal</a></td><td class="summaryTableLastCol">File loading functionality was removed from the XMLDocument class. Use URLLoader instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">load() Method       </td><td>Removed</td><td class="summaryTableLastCol">File loading functionality was removed from the XMLDocument class (formerly the XML class in ActionScript 2.0). Use URLLoader instead.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onData() EventHandler       </td><td><a href="flash/net/URLLoader.html#event:complete">flash.net.URLLoader dispatches event: complete</a></td><td class="summaryTableLastCol">File loading functionality was removed from the XMLDocument class. Use URLLoader instead. Replaced in the new event model by a <code>complete</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onHTTPStatus() EventHandler       </td><td><a href="flash/net/URLLoader.html#event:httpStatus">flash.net.URLLoader dispatches event: httpStatus</a></td><td class="summaryTableLastCol">File loading functionality was removed from the XMLDocument class. Use URLLoader instead. Replaced in the new event model by an <code>httpStatus</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onLoad() EventHandler       </td><td><a href="flash/net/URLLoader.html#event:complete">flash.net.URLLoader dispatches event: complete</a></td><td class="summaryTableLastCol">File loading functionality was removed from the XMLDocument class. Use URLLoader instead. Replaced in the new event model by a <code>complete</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">parseXML() Method       </td><td><a href="flash/xml/XMLDocument.html#parseXML()">flash.xml.XMLDocument.parseXML()</a></td><td class="summaryTableLastCol">&nbsp;</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">send() Method       </td><td>Removed</td><td class="summaryTableLastCol">Send functionality was removed from the XMLDocument class (formerly the XML class in ActionScript 2.0). Use the functions and classes of the flash.net package instead.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">sendAndLoad() Method       </td><td>Removed</td><td class="summaryTableLastCol">Send and load functionality were removed from the XMLDocument class (formerly the XML class in ActionScript 2.0). Use URLRequest and URLLoader instead.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>XMLNode (class)</b></td><td><a href="flash/xml/XMLNode.html">flash.xml.XMLNode</a></td><td class="summaryTableLastCol">Location changed. This class has been moved to the flash.xml package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">nodeType Property[read-only]       </td><td><a href="flash/xml/XMLNode.html#nodeType">flash.xml.XMLNode.nodeType</a></td><td class="summaryTableLastCol">Data type changed from Number to uint.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">XMLNode Constructor       </td><td><a href="flash/xml/XMLNode.html#XMLNode()">flash.xml.XMLNode.XMLNode()</a></td><td class="summaryTableLastCol">Data type of the <code>type</code> parameter changed from Number to uint.</td></tr><tr><td colspan="4">&nbsp;</td></tr><tr bgcolor="#CCCCCC"><td class="summaryTablePaddingCol">&nbsp;</td><td><b>XMLSocket (class)</b></td><td><a href="flash/net/XMLSocket.html">flash.net.XMLSocket</a></td><td class="summaryTableLastCol">This class has been moved to the flash.net package.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">XMLSocket Constructor       </td><td><a href="flash/net/XMLSocket.html#XMLSocket()">flash.net.XMLSocket.XMLSocket()</a></td><td class="summaryTableLastCol">Added two optional parameters to specify host and port.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">connect() Method       </td><td><a href="flash/net/XMLSocket.html#connect()">flash.net.XMLSocket.connect()</a></td><td class="summaryTableLastCol">Data type of the <code>port</code> parameter changed to int.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onClose() EventHandler       </td><td><a href="flash/net/XMLSocket.html#event:close">flash.net.XMLSocket dispatches event: close</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>close</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onConnect() EventHandler       </td><td><a href="flash/net/XMLSocket.html#event:connect">flash.net.XMLSocket dispatches event: connect</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>connect</code> event.</td></tr><tr class="prow1"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onData() EventHandler       </td><td><a href="flash/net/XMLSocket.html#event:data">flash.net.XMLSocket dispatches event: data</a></td><td class="summaryTableLastCol">Replaced in the new event model by a <code>data</code> event.</td></tr><tr class="prow0"><td class="summaryTablePaddingCol">&nbsp;</td><td nowrap="true">onXML() EventHandler       </td><td>Removed</td><td class="summaryTableLastCol">In ActionScript 3.0, only the <code>data</code> event is dispatched, so that you can choose whether to use E4X or the legacy XML (XMLDocument class) parser. The old <code>onXML</code> event handler was called after XML was parsed, so it doesn't make sense in ActionScript 3.0 because you can now choose between the XML (E4X) class and the XMLDocument (legacy) class to parse the XML.</td></tr><tr><td colspan="4">&nbsp;</td></tr></table><p></p><div width="100%" class="topLinks" align="right" style="padding-bottom:5px"><span id="navigationCell2" style="display:none;font-size:14px;font-weight:bold"><a href="package-summary.html" onclick="loadClassListFrame('all-classes.html')">All Packages</a>&nbsp;| <a href="class-summary.html" onclick="loadClassListFrame('all-classes.html')">All Classes</a>&nbsp;| <a href="language-elements.html">Language Elements</a>&nbsp;| <a href="all-index-Symbols.html" onclick="loadClassListFrame('index-list.html')">Index</a>&nbsp;| <a href="appendixes.html">Appendixes</a>&nbsp;| <a href="conventions.html">Conventions</a>&nbsp;| <a id="framesLink2" href="index.html?migration.html&amp;all-classes.html">Frames</a><a id="noFramesLink2" style="display:none" href="" onclick="parent.location=document.location"> No Frames </a></span></div><div width="100%" class="topLinks" align="right"><span></span></div><p></p><div><p></p><center class="copyright"> &copy; 2004-2008 Adobe Systems Incorporated. All rights reserved. <br/>Thu Oct 30 2008, 07:15 PM -07:00  </center></div></div></body></html><!-- &copy; 2004-2008 Adobe Systems Incorporated. All rights reserved. <br/>Thu Oct 30 2008, 07:15 PM -07:00  -->
