xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:s="library://ns.adobe.com/flex/spark">
import mx.controls.Alert;
private function processValues():void {
// Check to see if ZIP code is valid.
WeatherService.GetWeather.send();
}
private function successfulCall():void {
vs1.selectedIndex=1;
}
private function errorCall():void {
Alert.show("Web service failed!", "Alert Box", Alert.OK);
}
result="successfulCall();" fault="errorCall();">
{zipCode.text}
text="{WeatherService.GetWeather.lastResult.CityShortName}" />
text="{WeatherService.GetWeather.lastResult.CurrentTemp}" />
text="{WeatherService.GetWeather.lastResult.DayForecast}" />