Pretty sure you're not allowed to have dots in attribute names and I
am positive you can't drill down into a component via an attribute
name. If you're trying to address the duration property of a member of
somecomponent whose name is move that definitely won't work. To do
that you would need to do something like this:
<somecomp>
<move duration="{EFFECT_DURATION}" />
</somecomp>
HTH,
Ben
--- In [email protected], "icykorpio" <[EMAIL PROTECTED]> wrote:
>
> hi friends,
>
> i bind something like this;
>
> <somecomponent move.duration="{EFFECT_DURATION}" />
> this doesn't work; flex give error, can't resolve the move.duration
>
> but when i bind by using mx:binding;
>
> <mx:Binding destination="move.duration" source="EFFECT_DURATION" />
>
> this works!
>
> is flex telling me i can't bind to attribute of some data member using
> curly braces?
>
> thanks for help!!!
>
> regards
>