Main Page

From Flexerrorcodes

(Difference between revisions)
(Existing Documentation)
(GXNBcZ Really appreciate you sharing this article post.Really thank you! Really Cool.)
 
(47 intermediate revisions not shown)
Line 1: Line 1:
-
==Flex and ActionScript Error Codes==
+
GXNBcZ Really appreciate you sharing this article post.Really thank you! Really Cool.
-
One of the great things about working on the Flex development team is seeing how people create these amazing applications; things you never would have thought possible. However, the flip side of that is that when people are developing things you never would have thought possible, they get errors you never would have thought possible. This page is an attempt to capture and catalog Flex and ActionScript compiler and run-time errors, along with the environment in which they occur, and what it took to fix them.
+
-
 
+
-
==Existing Documentation==
+
-
Before you add an error to this page, please check out the existing error-code documentation. It may be covered already:
+
-
*[http://livedocs.macromedia.com/flex/201/langref/compilerWarnings.html Compiler warnings]
+
-
*[http://livedocs.macromedia.com/flex/201/langref/compilerErrors.html Compiler errors]
+
-
*[http://livedocs.macromedia.com/flex/201/langref/runtimeErrors.html Run-time errors]
+
-
 
+
-
 
+
-
===Run-time errors===
+
-
 
+
-
<table width="90%" border="1" cellspacing="2" cellpadding="2">
+
-
  <tr>
+
-
    <th scope="col" width="20%">Error code</th>
+
-
    <th scope="col" width="40%">Description</th>
+
-
    <th scope="col" width="40%">Solution or workaround</th>
+
-
  </tr>
+
-
<tr>
+
-
  <td>1009</td>
+
-
  <td>TypeError - Cannot access a property or method of a null object reference</td>
+
-
  <td>When using modules, be careful using shared code between modules that share the same classes or assets.  If those modules share managers, then the developer must be careful. Onecommon mistake is to accidentally bring in Managers (PopUpManger, DragManager) in a module and use from another module.  For more information, see http://thanksmister.com/?p=54.</td>
+
-
</tr>
+
-
<tr>
+
-
  <td>1030</td>
+
-
  <td>VerifyError</td>
+
-
  <td>Make sure you are running the current version of the player.</td>
+
-
  </tr>
+
-
  <tr>
+
-
  <td>1068</td>
+
-
  <td>VerifyError: <i>classname</i> and <i>classname</i> Cannot be reconciled</td>
+
-
  <td>One developer who experienced this error reports that restarting the application
+
-
        server fixed the problem.</td>
+
-
  </tr>
+
-
  <tr>
+
-
  <td>1151</td>
+
-
  <td>A conflict exists with definition <i>definition</i> in namespace <i>namespace</i></td>
+
-
  <td>The declaration of a variable of a certain type cannot be overridden to a different type in the same scope.</td>
+
-
  </tr>
+
-
  <tr>
+
-
  <td>1502</td>
+
-
  <td>A script has executed for longer than the default timeout period of 15 seconds.</td>
+
-
  <td>For Flex Charting, ensure that you're using unique category names in the category axis.</td>
+
-
  </tr>
+
-
  <tr>
+
-
    <td>2032</td>
+
-
    <td>HTTP request error</td>
+
-
    <td>The referenced resource does not exist. </td>
+
-
  </tr>
+
-
  <tr>
+
-
    <td>2082</td>
+
-
    <td>Connect failed because the object is already connected.</td>
+
-
    <td>If your application dies unexpectedly, it can leave the history LocalConnection in a hung state:
+
-
<ul>
+
-
<li>One workaround is to shut down all instances of the Flash Player, including all browsers, and Yahoo IM, then you should be all set.
+
-
</li>
+
-
<li>A code-based workaround is as follows:<br/>
+
-
 
+
-
If connecting to a named LocalConnection "A" fails, you can try setting up a temporary callback LocalConnection and then invoke a send() to connection "A". If the owning instance is running it receives the call to connection "A" and should ping back over the temporary connection and you'll know that the connect failure is legitimate because the owning player instance is running. If you don"t hear back after 5 seconds (magic number) the Player assumes that connection "A" is orphaned and cleans up the shared memory, and at this point you can retry your connect() and it should succeed.
+
-
</li>
+
-
</ul>
+
-
    </td>
+
-
  </tr>
+
-
  <tr>
+
-
    <td>2137</td>
+
-
    <td>Sandbox security violation</td>
+
-
    <td>Possible solutions include:
+
-
<ul>
+
-
<li>You are accessing a remote asset but the remote web server does not have a crossdomain.xml file or the crossdomain.xml file's allow-access-from domain attribute doesn't allow access from your domain. For more information, see http://livedocs.adobe.com/flex/201/html/05B_Security_176_04.html</li>
+
-
<li>You did not specify the appropriate value for the use-network compiler option. For more information, see http://livedocs.adobe.com/flex/201/html/compilers_123_24.html</li>
+
-
</ul>
+
-
 
+
-
</td>
+
-
  </tr>
+
-
  <tr>
+
-
    <td>&nbsp;</td>
+
-
    <td>&nbsp;</td>
+
-
    <td>&nbsp;</td>
+
-
  </tr>
+
-
</table>
+

Current revision as of 20:28, 17 November 2013

GXNBcZ Really appreciate you sharing this article post.Really thank you! Really Cool.

Personal tools