Main Page
From Flexerrorcodes
(→Flex and ActionScript Error Codes) |
(→Existing Documentation) |
||
Line 1: | Line 1: | ||
Ford Prefect managed to change it a little before getting stuck on Earth. , | Ford Prefect managed to change it a little before getting stuck on Earth. , | ||
- | + | The charging electrical cables and electronics, including in the car, would have to be capable of very high power flows. , | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
=Other useful links= | =Other useful links= |
Revision as of 10:30, 23 October 2009
Ford Prefect managed to change it a little before getting stuck on Earth. ,
The charging electrical cables and electronics, including in the car, would have to be capable of very high power flows. ,
Other useful links
Run-time errors
Error code | Description | Solution or workaround |
---|---|---|
1009 | TypeError - Cannot access a property or method of a null object reference | 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. One common 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.
If you get this error from clicking a cell an ItemRenderer, add the following line to the renderer's "override public function set data(...)": super.data = value; |
1030 | VerifyError | Make sure you are running the current version of the player. |
1034 | TypeError: Type Coercion failed: cannot convert class to class. | This is a common error when two modules or SWFs try to share a class across ApplicationDomains. |
1068 | VerifyError: classname and classname Cannot be reconciled | One developer who experienced this error reports that restarting the application server fixed the problem. Another found that removing a preceding switch statement from the function that triggered the error worked. Yet another found that the error was caused while triggering a function containing a switch statement itself - the problem was fixed by replacing the switch statement with a series of if statements. Yet another found that the error was caused while triggering a function containing a ternary operator - the problem was fixed by replacing this with an if..else statement. |
1151 | A conflict exists with definition definition in namespace namespace | The declaration of a variable of a certain type cannot be overridden to a different type in the same scope. |
1502 | A script has executed for longer than the default timeout period of 15 seconds. | For Flex Charting, ensure that you're using unique category names in the category axis. |
2032 | HTTP request error | The referenced resource does not exist or the swf is trying to access a file across a restricted domain. |
2038 | IO error | This is an HTTP 403 error. The problem is that Flex tranfers with "final boundary missing" in the MIME request. So if you have an ISS with Linux Server you should try to set .htaccess file adding this 2 lines:
SecFilterEngine Off SecFilterScanPOST Off This is reported on http://weblog.cahlan.com/2006/09/uploading-files-with-flex-and-php.html. May also refer to a 404 not found. |
2082 | Connect failed because the object is already connected. | If your application dies unexpectedly, it can leave the history LocalConnection in a hung state:
Another cause of this error is using managers (or other singletons) within a module before they're loaded by the main application. There's a lengthy thread on this topic in flexcoders here: http://tech.groups.yahoo.com/group/flexcoders/message/63829 |
2137 | Sandbox security violation | Possible solutions include:
|
SWF is not a loadable module | If you load modules across domains, the target domain must implement a crossdomain.xml file with the appropriate permissions. |