Hi Santosh, 1) Check out this link about data binding
http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&file=databinding_091_02.html 2) Here is the code for the 2nd question <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:Button label="Pressed" id="button1" x="400" y="200" click="{button1.label='Button Pressed'}"/> </mx:Application> 4) Fault event class indicates an error has occurred.. You can use the Fault Event with HTTP Service , Remote Object. When there is connection failure or some error the Fault Event handles and displays it.. 5)ArrayCollections can hold different instances of varying data types. You can add and remove items from ArrayCollections, causing repositioning along the array. ArrayCollections can hold far more data than regular Arrays Cheers Satish On Sun, Nov 30, 2008 at 6:02 PM, Santosh <[EMAIL PROTECTED]> wrote: > > Hi , > > > can any one send me the solutions for below questions > > 1. What is meant by data binding? > > 2. Write code to create a button with the title "Press". Add code to > intercept the button click event. When clicked, the title of the > button should change to "Button Pressed". Either use MXML or > ActionScript. > > 3. An entry field may contain a number from 0 to 100. Write code to > ensure validation within this range. > > 4. What is the FaultEvent class ? > > 5. What is the difference between Array and ArrayCollection classes? > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/flex_india?hl=en -~----------~----~----~----~------~----~------~--~---

