| Member List |
| Posted: 11 Apr 2007 15:25 Last Edited By: danielneri | ||
|
Administrator Currently Offline |
Posts: 156 Join Date: Oct 2006 |
|
|
Common Error Messages Thread.
Please feel free to reply with your comments/suggestions/errors and I'll try and add it to this list. #1 Data binding will not be able to detect assignments to... Solution: Make the variable or object you are using Bindable. Code: [Bindable] public var foo:String; __________________ ![]() |
||
| Posted: 12 Apr 2007 16:26 Last Edited By: tomharding | ||
|
Registered User Currently Offline |
Posts: 26 Join Date: Feb 2007 |
|
|
I'll start us off:
--- [RPC Fault faultString="Default decoder could not decode result" faultCode="Client.CouldNotDecode" faultDetail="null"] --- To resolve: This is a HTTPrequest related problem, so double check the address you are posting the result to. |
||
| Posted: 13 Apr 2007 16:47 | ||
|
Registered User Currently Offline |
Posts: 26 Join Date: Feb 2007 |
|
|
Another new one I found over here at this forum: http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?cati ...
--- Data binding will not be able to detect assignments to " ". --- so friends the solution is we are supoose to use "Bindable metadata tag" When a property is the source of a data binding expression, Flex automatically copies the value of the source property to any destination property when the source property changes. To signal to Flex to perform the copy, you must use the [Bindable] metadata tag to register the property with Flex, and the source property must dispatch an event. The [Bindable] metadata tag has the following syntax: [Bindable] [Bindable(event="eventname")] If you omit the event name, Flex automatically creates an event named propertyChange. |
||
| Posted: 13 Apr 2007 17:44 | ||
|
Administrator Currently Offline |
Posts: 156 Join Date: Oct 2006 |
|
|
excellent one tom!
When I was starting out the error ran me up the wall! I'll add it right away ![]() __________________ ![]() |
||
| Posted: 24 Apr 2008 04:24 | ||
|
Registered User Currently Offline |
Posts: 1 Join Date: Apr 2008 |
|
|
What about #1009
TypeError: Error #1009: Cannot access a property or method of a null object reference. |
||