Hi, I'm developing in Flex 3, a Flash programming Framwork. When using the following code, I can easily send the user to external web pages AND add data in the POST variables:
var url:String = "http://myDomain.com"; var request:URLRequest = new URLRequest(url); request.method = URLRequestMethod.POST; var variables:URLVariables = new URLVariables(); variables.var = "whatever"; request.data = variables ; navigateToURL(request, '_blank'); This works fine in iGoogle, but doesn't in Google Desktop. I am aware, that GET won't be a problem, but since I want to transfer lots of text, I need it in POST. Any ideas to why this is not working? Do I need to bypass some silly barrier with an AJAX Bridge to XMLHttpRequest for this simple task? ;) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Desktop Developer Group" 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/Google-Desktop-Developer?hl=en -~----------~----~----~----~------~----~------~--~---
