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

2011-09-13 Thread Merrill, Jason
oders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of lanekelly5 Sent: Monday, September 12, 2011 2:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] navigateToUrl( ) - can I determine when completed? I have a function call in my app that calls the server and expects back

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

2011-09-12 Thread lanekelly5
I have a function call in my app that calls the server and expects back a CSV file that I want the user to be able to save. Right now I make that call via navigateToURL() with a parameter of "_blank". Due to a change in requirements, I need to refresh a grid after that server call is completed

Re: [flexcoders] navigateToURL

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

[flexcoders] navigateToURL

2010-07-06 Thread Goutham
Hi, I have a button, that allows the user to open/save an excel file. A new window is opened when the button is clicked and a download dialog box appears If we select open, the file opens in the browser, if we select save/cancel the new window stays on top with 'Action Cancelled' How do I clo

[flexcoders] navigateToURL error

2010-02-12 Thread Darrin Kay
I am tring to get some text become a link in a Flex3 app, but getting an error I know the data is getting pulled in, in this case I hard coded the xml with http://www.espn.com for testing so it is not the link. http://www.adobe.com/2006/mxml"; layout=" absolute" title="{imageRepeater.currentIt

[flexcoders] navigateToURL to new TAB rather than new WINDOW

2009-05-08 Thread itdanny2002
I use navigateToURL(new URLRequest(URL),"_blank") to open a new window How can I open in in a new tab instead ? I try to hold CTRL and then click. it works in other web page but not flash.

[flexcoders] navigateToURL and "_self" - Works locally, not when swf is on remote server

2009-02-09 Thread uclamerrick
I have an Image on an ApplicationControlBar and I am trying to make it such that when the image is clicked, the current browser window/tab is redirected to a URL. It works when the swf file is opened locally, but not if its a remote swf file. I am guessing this is some security issue, and am wonder

[flexcoders] navigateToURL & request.data & connection problem

2008-11-23 Thread assaia
Hello and thank you a lot for your time. The function runs when a button is clicked. When the new webpage loads I get a "Internal Server Error" and "The server encountered an internal error or misconfiguration and was unable to complete your request." I've tried a lot of different configurations

[flexcoders] navigateToURL & "Content-Type" header

2008-01-03 Thread Vadim Melnik
Hello All, Did anyone else see that Flash player "navigateToURL" API ignores "Content-Type" header for POST HTTP request? E.g. when code listed below deployed to some server boxes, I can see that "Content- Type" header is not sent from client side (local sniffer). But for some boxes it always w

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

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

2007-09-18 Thread Manu Dhanda
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/executeReport.action";); var uv:URLVariables = new URLVariables(); url.method = "P

RE: [flexcoders] navigateToURL

2007-04-30 Thread Gordon Smith
- Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mapper2255 Sent: Monday, April 30, 2007 2:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] navigateToURL Can any one tell me why I cannot get this event.label to work, keeps giving "not

[flexcoders] navigateToURL

2007-04-30 Thread mapper2255
Can any one tell me why I cannot get this event.label to work, keeps giving "not found"? Code is straight out of help files. http://localhost/FlashSite2/bin/' + String (event.label).toLowerCase()), '_blank');"> ghostb Direct

[flexcoders] navigateToUrl Problem

2007-02-21 Thread john_69_11
using navigateToUrl like this: navigateToURL(new URLRequest("http://google.com";),"_self"); In firefox it opens in the same window fine, in IE it's opening a new window. How can I make this work in both?

[flexcoders] navigateToURL bind to datagrid selecteditem

2007-02-07 Thread nasawebguy
I have a linkbutton called Download The downloaded filename is in a datagrid column called uploadedfile. This uploaded filename varies, but the path stays the same www.mydomain.com/synapse/data/7117/documents/#uploadedfile# When the user selects a row in drivergrid, the driver details appear be

[flexcoders] navigateToURL with multiple links

2006-07-23 Thread Chris Waguespack
I'm trying to make a link button that opens multiple links in different windows/tabs. Right now I have click calling this function private function OpenListings():void{ var listingData:Array=/*an array of links*/; var link:String=new String(); for each(link in listingData){

[flexcoders] navigateToURL and IE orphanage.

2006-07-21 Thread sufibaba
Hi everyone, I am using navigateToURL to open a new window which then calls a function in the parent window.The code works perfectly in firefox but for some reason, in IE, the new window gives me the following error: window.opener.parent not found It seems that when I use navigateToURL to o