DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| ID | Description | Link |
|---|---|---|
| 1000 | ||
| 1001 | ||
| 1002 | ||
| 1003 | ||
| 1004 | ||
| 1005 | ||
| 1006 | ||
| 1007 | ||
| 1008 | ||
| 1009 | TypeError: Error #1009: Cannot access a property or method of a null object reference.
Cause: Occurs when the valuesImpl MXML tag is not defined in Application.
Solution: Set js:valuesImpl and define js:SimpleCSSValuesImpl. Example: <js:valuesImpl> <js:SimpleCSSValuesImpl /> </js:valuesImpl> | |
| 1010 | ||
| 1011 | ||
| 1012 | ||
| 1013 | ||
| 1014 | ||
| 1015 | ||
| 1016 | ||
| 1017 | ||
| 1018 | ||
| 1019 | ||
| 1020 | ||
| 1021 | ||
| 1022 | ||
| 1023 | ||
| 1024 | ||
| 1025 | ||
| 1026 | ||
| 1027 | ||
| 1028 | ||
| 1029 | ||
| 1030 | ||
| 1031 | ||
| 1032 | ||
| 1033 | ||
| 1034 | TypeError: Error #1034: Type Coercion failed: cannot convert org.apache.flex.mobile::View@1c91194620d1 to org.apache.flex.core.IApplicationView.
Cause: Occurred when using <js:View> <js:initialView> <js:View> <js:Label text="Hello World. A long sentence." className="labelStyles" x="100" y="100"/> </js:View> </js:initialView>
<js:initialView> <js:ViewBase> <js:Label text="Hello World. A long sentence." className="labelStyles" x="100" y="100"/> </js:ViewBase> </js:initialView>
| info |
| 1035 | ||
| 1036 | ||
| 1037 | ||
| 1038 | ||
| 1039 | ||
| 1040 | ||
| 1041 | ||
| 1042 | ||
| 1043 | ||
| 1044 | ||
| 1045 | ||
| 1046 | ||
| 1047 | ||
| 1048 | ||
| 1049 | ||
| 1050 | ||
| 1120 | 1120: Access of possibly undefined property COMPILE. UIBase.as /FlexJSProject/src/org/apache/flex/core | |
| 1324 | 1324: /Users/me/Documents/Adobe Flash Builder 14/FlexJSProject/src/FlexJSProject.mxml line 5:13 extraneous input 'local' expecting STRING FlexJSProject.mxmlSTRING
Cause: Occurs with following code:
<fx:Style> @namespace local "*"; </fx:Style>
Solution:
| |
| 1448 | 1448: This attribute is unexpected. It will be ignored. Cause: | |
| 1450 | 1450: This tag could not be resolved to an ActionScript class. It will be ignored.
Cause: The valuesImpl tag was nested in the initialView tag and initialView does not have that property.
<js:initialView> <js:ViewBase> <js:Label text="Hello World." /> </js:ViewBase> <js:valuesImpl> <js:SimpleCSSValuesImpl /> </js:valuesImpl> </js:initialView> Solution: Moved the declaration to where it was defined.
<js:ViewBase> <js:Label text="Hello World." /> </js:ViewBase> </js:initialView> <js:valuesImpl> <js:SimpleCSSValuesImpl /> </js:valuesImpl>
| |
| 1546 | 1546: Generated byte code contains an operand stack underflow.
Cause: Occurred when declaring an object in the model tag <js:model> <fx:Object /> </js:model>
Solution: Defined an external class that extends EventDispatcher. <js:model> <models:MyModel /> </js:model> | |
Could not find file for class: org.apache.flex.core.StageProxy File not found File not found: org.apache.flex.core.StageProxy java.lang.RuntimeException: Unable to find JavaScript filePath for class: org.apache.flex.core.StageProxy at org.apache.flex.compiler.internal.graph.GoogDepsWriter.addDeps(GoogDepsWriter.java:179)
Cause: Possible cause is monkey patching UIBase. It may expect same directory for StageProxy. Possible cause using Compiler variable JS set to false
Solution: Not monkeypatching or set -define=COMPILE::JS,true and -define=COMPILE::AS3,false Possible reason: not created JS class. Need to create UIBase.js and put in related path | ||
/Users/me/Documents/Adobe Flash Builder 14/FlexJSProject/src/org/apache/flex/core/UIBase.as:141
Cause: Possible cause is monkey patching UIBase. It may expect same directory for StageProxy
Solution: Not monkeypatching at this time.
| ||
/Users/me/Documents/Adobe Flash Builder 14/FlexJSProject/src/UIBase.as Cause Not sure
Context UIBase class was in root src directory of local project. Moved from org.apache.flex.core temporarily.
Solution Unknown | ||
exception 'java.io.FileNotFoundException: /.../.flexLibProperties' while setting variable '' Cause: Solution: |
Warnings
| ID | Name | Link |
|---|---|---|
com.google.javascript.jscomp.LoggerErrorManager println
Cause: A model was not defined
Solution:
<js:model> <models:MyModel /> </js:model> |