volviendo al tema (porke lo habia dejado ahi solo porke habia encontrado informacion basica sobre el uso de flex 3) en el tutorial aqui comentado tiene el siguiente codigo:
Código flex:
Ver original<mx:HTTPService
id="login_user"
result="checkLogin(event)" //This is the function that will be called after a result comes
method="POST"
url="http://www.vipercreations.com/flex/login.php"
useProxy="false">
<mx:request xmlns="">
<username>{username.text}</username>
<password>{password.text}</password>
</mx:request>
</mx:HTTPService>
y pues como yo estoy haciendo las pruebas en mi servidor local, no se exactamente como decirle donde vaya a buscar ese archivo, porque le pongo:
url="http://localhost/flex/login.php" pero pues no hace nada :S alguien podria orientar hacia la solucion del problema?