extensive_systems wrote:
I'd like to be able, in effect, to say something like <MyForm width="75%"> (and get a smaller form with shorter fields that could be fit into less screen space). AFAIK, specifying a width percentage at runtime does nothing in the case of Form.
<mx:Form id="form" width="100%" backgroundColor="blue"> ... </mx:Form> <mx:Button label="Resize Form" click="form.width = '80%'" />
Works.
Manish

