Tagged Questions

1
vote
1answer
26 views

UIWebView is not loading a page.

I got a UITabBarController and one of the bar items is a Navigation Controller with some buttons on it. One of the buttons opens up a urlRequest and load it in a UIWebView. NSURL …
1
vote
1answer
178 views

How do I fix this cross-domain ActionScript 3 error?

I'm going to be as specific and verbose as possible and include some of the code I'm using. I already did a search and found this question, which seems similar; however the author …
0
votes
3answers
55 views

How to specify the location of a remote machine’s file in the URLRequest parameter? - Edited

Hi now I have found how to give a relative path in URLRequest paramate and download that file. I found it from this particular stack overflow post . Thanks to Christian Nunciato an …
1
vote
3answers
469 views

Unexpected Flash Security Exception When Using URLLoader

Hello, What I am trying to accomplish is to upload some binary data, specifically a ByteArray representing a PNG image, to a server using the URLLoader class in conjunction with U …
1
vote
1answer
232 views

Can a SWF (using URLLoader) access HTTPS webservice?

Hi, I have a fla (using ActionScript 3.0) I am compiling in Flash. I am using URLRequest and URLLoader to access a http webservice. var loader:URLLoader = new URLLoader(); var …
0
votes
1answer
177 views

What is the most robust way to force a UIView to redraw?

I have a UITableView with a list of items. Selecting an item pushes a viewController that then proceeds to do the following. from method viewDidLoad I fire off a URLRequest for dat …
0
votes
2answers
64 views

Loading form input values from web pages into URLRequest?

How would I pull out the form values for the html source below and add them to an NSURLConnection? <tr> <th><label for="username"><span class="acces …
2
votes
6answers
5k views

Flex 3 - how to support HTTP Authentication URLRequest?

I have a Flex file upload script that uses URLRequest to upload files to a server. I want to add support for http authentication (password protected directories on the server), but …
0
votes
3answers
787 views

When POSTing a form with URLRequest, how to include cookies from browser session?

(With reference to this answer:) When I POST with a URLRequest, does it automatically include cookies from the browser session in which Flash is hosted? If not, how can I make it …
1
vote
2answers
680 views

How can I prompt a user to open or save a PDF file returned by a .aspx file?

I have a Flex application that calls a .aspx page on our webserver, which builds a PDF or Excel File. Right now, I am using navigateToURL() to call the file, and this works fine wh …
1
vote
5answers
2k views

How to play a sound in Actionscript 3 that is not in the same directory as the SWF?

I have a project with a bunch of external sounds to a SWF. I want to play them, but any time I attempt load a new URL into the sound object it fails with either "Error #2068: Inva …
3
votes
3answers
958 views

How do I prevent Flash’s URLRequest from escaping the url?

I load some XML from a servlet from my Flex application like this: _loader = new URLLoader(); _loader.load(new URLRequest(_servletURL+"?do=load&id="+_id)); As you can imagine …