[flexcoders] Re: Issues with Scroll!

2005-09-29 Thread chakura7777
Hi, here is a sample code which I've modified. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Panel width=500 height=500 mx:HBox width=500 height=1000 backgroundColor=#FFCC00/mx:HBox mx:ControlBar width=500

[flexcoders] Re: 2-way binding ?

2005-09-21 Thread chakura7777
Hi, Jamie. Using a code like as follows, you can change the data in the object. mx:TextInput id=customerIdInput text={objSample.customerId} / mx:Binding source=customerIdInput.text destination=objSample.customerId / In this sample, you can change the data[customerId] in the object [objSample]

[flexcoders] Re: 2-way binding ?

2005-09-21 Thread chakura7777
Hi, Jamie. Using a code like as follows, you can change the data in object whenever you edit the edit boxes. mx:TextInput id=customerIdInput text={objSample.customerId} / mx:Binding source=customerIdInput.text destination=objSample.customerId / In this sample, you can change the