Hi everyone! I have problem when i import web service. I tell how i do it.
-in flex builder data->import web service(wsdl) -select my project src folder *NEXT* -use google wsdl file http://api.google.com/GoogleSearch.wsdl *NEXT* -*FINISH* Now try to use code what builder created. <mx:Script> <![CDATA[ import com.google.*; public var myServiceTest:GoogleSearchService = new GoogleSearchService(); myServiceTest.adddoGoogleSearchEventListener(GoogleResultHandler); public function GoogleResultHandler(event:GoogleSearchResult):void{ } ]]> </mx:Script> It gives me error at line myServiceTest.adddoGoogleSearchEventListener(GoogleResultHandler); error message is "Access of undefined property GoogleResultHandler" "Access of undefined property myServiceTest" What i do wrong? Thanks for help!

