I am using constraint layout for some images, which will be placed from the left edge 85px. So I have:
<mx:Image left="85" ... />
and it works fine. Now I want to define this spacing at a single point and use
it for multiple images, so I have
[Bindable] private var LEFT_SPACE:int = 85;
...
<mx:Image left="{LEFT_SPACE}" ... />
, but it does NOT work, the images are placed as if left="0" is set. Anyone has
an idea?

