Я получаю неоднозначную ошибку ссылки при попытке связать свойства. Вот код:
MXML
<?xml version="1.0" encoding="utf-8"?>
<custom:Test
xmlns:mx = "library://ns.adobe.com/flex/mx"
xmlns:fx = "http://ns.adobe.com/mxml/2009"
xmlns:custom = "CodeBehind.*">
<mx:TextInput id = "foo" text = "foo!">
</mx:TextInput>
<mx:TextInput id = "bar" text = "{foo}">
</mx:TextInput>
</custom:Test>
CodeBehind
package CodeBehind
{
import mx.containers.Panel;
public class Test extends Panel
{
}
}
Вот сама ошибка:
/Front/Test.mxml(-1): Error: Ambiguous reference to Test.
<?xml version="1.0" encoding="utf-8"?>
Как ни странно, в нем даже не упоминается свойство binded ...