RE: [flexcoders] Re: Open new browser popup

2007-04-25 Thread Peter
: [flexcoders] Re: Open new browser popup On the client side (Flex), take a look at URLLoader and URLRequest in the docs. URLRequest has a "method" property that you can set to "POST" to fit your needs. For the server side, here is an example in JSP (ignore the HTTPService porti

[flexcoders] Re: Open new browser popup

2007-04-25 Thread Doug Lowder
On the client side (Flex), take a look at URLLoader and URLRequest in the docs. URLRequest has a "method" property that you can set to "POST" to fit your needs. For the server side, here is an example in JSP (ignore the HTTPService portion) that is close to what you will need: http://tech.grou

RE: [flexcoders] Re: Open new browser popup

2007-04-25 Thread Peter
to proceed. Many thanks indeed! Peter _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Doug Lowder Sent: Wednesday, April 25, 2007 9:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Open new browser popup If you have access to the server, you

[flexcoders] Re: Open new browser popup

2007-04-25 Thread Doug Lowder
If you have access to the server, you can write a server-side page that wraps your service logic and bitstreams the pdf content directly to the client. In Flex, access the server-side page with navigateToURL(), ExternalInterface, URLLoader(), etc. With the right headers and content-type set o

RE: [flexcoders] Re: Open new browser popup

2007-04-25 Thread Peter
: [flexcoders] Re: Open new browser popup Have the service return a url to a file that is generated. Then popup the url from the client. You'll probably then want a process that will clean up old files so you don't have a lot of pdfs eating up space. --- In [EMAIL PROTECTED] <mail

[flexcoders] Re: Open new browser popup

2007-04-25 Thread Paul DeCoursey
Have the service return a url to a file that is generated. Then popup the url from the client. You'll probably then want a process that will clean up old files so you don't have a lot of pdfs eating up space. --- In flexcoders@yahoogroups.com, "Peter" <[EMAIL PROTECTED]> wrote: > > Gentlepeopl

[flexcoders] Re: Open new browser popup

2007-04-20 Thread ramp_of_remo
--- In flexcoders@yahoogroups.com, Jaap Cammeraat <[EMAIL PROTECTED]> wrote: > > Hi all, > > Can somebody tell me how I can open a sized window in the users browser? > At this moment I'm using navigateToURL(u,"_blank") to open a new > window but I want a new window with special sizes. >