RE: [flexcoders] navigateToUrl( ) - can I determine when completed?

2011-09-13 Thread Merrill, Jason
If yo can capture when the HTML page is done doing it's thing with Javascript, the Javascript could call a method in the Flash file to trigger an event there. Jason Merrill Instructional Technology Architect II Bank of America Global Learning ___ From: flexcoders@yahoog

Re: [flexcoders] navigateToURL

2010-07-06 Thread Oleg Sivokon
Use FileReference instead? Or call some JavaScript so it could call back to Flash?

Re: [flexcoders] navigateToURL() GET method works fine, but POST doesn't work.

2007-09-23 Thread Manu Dhanda
Anyone with a solution to my following problem Manu Dhanda wrote: > > Hii > > On the click of a button, am calling following method: > > public function openNewWindow(event:MouseEvent):void { > var url:URLRequest = new > URLRequest("http://cco061-03:8088/openreports/executeRe

Re: [flexcoders] navigateToURL() GET method works fine, but POST doesn't work.

2007-09-19 Thread Manu Dhanda
Yes, I confirmed it with adobe docs. http://livedocs.adobe.com/flex/201/langref/flash/net/URLRequest.html#includeExamplesSummary Even I copy/pasted the code given there in the example in the "method property section", that one is not working for me. Where I am making mistake :( Tom Chiverto

Re: [flexcoders] navigateToURL() GET method works fine, but POST doesn't work.

2007-09-19 Thread Tom Chiverton
> With POST, it doesn't display any Parameters tab in Request window, so no > parameter list. Have you checked with the docs you don't need to set the parameters a different way ? -- Tom Chiverton Helping to simultaneously engineer turn-key m-commerce on: http://thefalken.livejournal.com *

Re: [flexcoders] navigateToURL() GET method works fine, but POST doesn't work.

2007-09-19 Thread Manu Dhanda
Useing GET method will display results fine. whereas POST method gives me output as if no parameters being received on the controller side. I tried with ServiceCapture, With GET, it displays me the Request Parameters tab and the list of parameters in there. With POST, it doesn't display any Para

Re: [flexcoders] navigateToURL() GET method works fine, but POST doesn't work.

2007-09-19 Thread Tom Chiverton
On Wednesday 19 Sep 2007, [EMAIL PROTECTED] wrote: > if I 'll change the url.method = "GET", it is working fine.. but not with > POST. WHY??? Does it throw an exception ? What happens (or not) ? Does WireShark/ServiceCapture show traffic going somewhere ? -- Tom Chiverton Helping to autoschedias

RE: [flexcoders] navigateToURL

2007-04-30 Thread Gordon Smith
Whatever problem you're having isn't related to event.label or probably to anything in your Flex code. When I tried this code it constructed the proper URL, such as http://localhost/FlashSite2/bin/ghostb Does that URL work when you paste it into a browser? - Gordon __