|
Project
|
IntelliJ IDEA
|
|
Priority
|
Normal |
|
Type
|
Bug |
|
Fix versions
|
No Fix versions |
|
State
|
Fixed |
|
Assignee
|
Maxim Mossienko |
|
Subsystem
|
Flex Support |
|
Affected versions
|
No Affected versions |
|
Fixed in build
|
108.65 |
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:foo="*"> <foo:Bar id="foobar" width="100%" test="Hello World"/> </mx:Application>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script source="Bar_script.as"/>
<mx:Label text="{test}"/>
</mx:VBox>
[Bindable]
public var test:String = "";
public function someMethod():void {
}
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script ><![CDATA[ [Bindable] public var test:String = ""; public function someMethod():void { } ]]></mx:Script> <mx:Label text="{test}"/> </mx:VBox>