The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
35 views

How to send data away immediately by URLLoader in ActionScript3?

Grateful for your reading first. This is my code: private function send( pkt:ByteArray ) { var int count = 0; var request:URLRequest = new URLRequest( ... ); var loader:URLLoader = ...
0
votes
1answer
18 views

AS3: URLLoader: XML: missing data (data == “<”)

I'm creating a website. All data are loaded from an xml over the web. When accessing it from my swf app, everything is fine. The owner of the site aint very good with computer so i'm creating a tool ...
0
votes
0answers
60 views

as3 URLLoader always failing with IOError

I'm having problems with URLRequest in a flex application, it fails with whatever url I try: var r:URLRequest = new URLRequest("http://stackoverflow.com"); var l:URLLoader = new URLLoader(); ...
0
votes
1answer
34 views

Flex - URLLoader - can I add eventListener after load event? (seems to work)

I'm executing the following code var myXMLURL:URLRequest = new URLRequest("config.xml"); myLoader = new URLLoader(myXMLURL); // implicitly calls the load method here ...
1
vote
1answer
39 views

How does URLLoader deal with cookies?

I'm using AS3 in Adobe AIR for desktop, not in a browser, I'm not sure if that makes a difference in this situation. I'm sending requests to an API using URLLoader. Each request that I send is ...
0
votes
2answers
37 views

Actionscript 3 Read Response Content-Type

Is it possible to read the raw content-type of a web server response using the URLLoader class in Actionscript 3? We're receiving self descriping messages over http: HTTP/1.1 200 OK Cache-Control: ...
0
votes
1answer
31 views

useProxy on URLLoader? similar to that of the httpservice?

Loading Https images over untrusted servers have limitations. We have decided to load images over from the proxyservice rather than let the air do it itself form several domains. When I checked ...
0
votes
1answer
186 views

download multiple files flash

i have a Flash application with a datagrid filled with filenames and i want the user to be able to check multiple files from that grid and download them to his local drive. The files are stored in a ...
1
vote
2answers
277 views

How to store data from URL in sqlite database iphone

I have hosted web service(.Net) on IIS to get the data from SQL Server DB;parse it and store it in my SQlite DB in iPhone.How can i do this? My web service is working fine and I'm getting data in XML ...
1
vote
1answer
146 views

AS3 Resetting UrlLoader Cache

Good Day, I’ve encountered problems with the cache of the UrlLoader in Actionscript 3. I make a UrlRequest to a php site to get a timestamp. When I call initiate the class (which contains the ...
0
votes
1answer
84 views

URLLoader Event.Complete Not Triggering

private var csv:URLLoader = new URLLoader(); private var array:Array = new Array(); private var urlr:URLRequest = new URLRequest(); public function loadRecipe(path:String):void { try { ...
0
votes
1answer
135 views

Streaming webservice call in flex

I am trying to create a file upload in a flex/air application that sends information to a .NET wcf SOAP webservice. The file upload also has to have progress indicating events. The service uses a ...
0
votes
0answers
129 views

Displaying a progress dialog before calling URLLoader.load in flex?

I'm developing a flex application (run in web browser), that lets the user load a number of files and then sends them all to a server in one single multipart/form-data request. My problem is this: ...
0
votes
0answers
102 views

URLLoader strange behavior

I am facing a problem with URLLoader/URLRequest: URLLoader strange behavior - incorrect \r\n in header The headers Content-type and Content-length are written to the very beginning on the ...
4
votes
1answer
136 views

IOError 2032 happens sometimes

My application loads 60 files at the same time. I mean I create 60 loaders (in an array) and start all loadings in a loop, I don't wait for one to complete before I start the next. I use a class that ...
0
votes
0answers
193 views

As3 URLLoader not working in IE on PC

I have a Flash movie Christmas card with 3 buttons (to select a charity that a big company will give money to) that pass a value of a, b, or c to my php/database and update a report.php page. This is ...
1
vote
2answers
170 views

Progress bar for loading xml data in actionscript 3

I'm using Flash CS5 and FlashDevelop to build a game in ActionScript 3. I'm trying to have the game as much datadriven as possible. So most of the game information is stored in XML files that are ...
1
vote
0answers
119 views

SoundCloud POST Comment Not Authorized

[UPDATE] Problem fixed. Working code and method updated below! So, I am trying to post a comment to a SoundCloud track using the SoundCloud api in AS3. The documentation can be found here: ...
0
votes
0answers
40 views

Firefox flash duplicate calls

In my flash i have an urlloader that is doing a GET operation with a parameter in the call(url&id=1). When i run the flash file in firefox browser(this case 17 but also 16) for some reason the ...
0
votes
1answer
50 views

Is it possible to have multiple 'request:URLRequest' variables

I'm creating a flash game that imports data from a PHP database and was wondering if this is something that can be done with multiple urls? For example, if I am pulling data from ...
1
vote
0answers
109 views

Adobe Air load local HTML

When I load index.html from IDE it works fine! But when I start compiled application it doesn't work. The code: _html = new HTMLLoader(); var fileURL:String = ...
0
votes
2answers
211 views

Loading files with extension data from POST send - php as3

I'm trying to work out from an old as2 tutorial how to amend a script for as3/php eCard system for a business card but I can't find reference anywhere to how you'd do the following : AS2 : ...
0
votes
1answer
239 views

get the source of web in as3 [closed]

This is probably an imposible thing to do, but I want to ask. Is there a way to get the html source of a webpage by providing a link?
0
votes
0answers
129 views

The performance between FileStream and URLLoader?

I am using Adobe Air3.4 for iOS. We know that if we want to load a texture from app directory we can use URLLoader just as on browser. However, we have another choice is FileStream on Air. My ...
1
vote
1answer
118 views

How to manage temporary network issues when using UrlLoader?

I'm creating an RSS Ticker to be used on a bunch of displays thoughout the office. This RSS Ticker will run in tandom with a Twiter Feed reader, a weather widget and a clock, all in the same .fla. As ...
0
votes
2answers
372 views

Actionscript - php not running with URLLoader.load(new URLRequest(“i.php”));

I've got an actionscript code supposed to run a php script which, to make sure the error is not on it but on the AS code, I've reduced to creating a plain text file. After the line supposed to call ...
0
votes
2answers
219 views

AS3: How do I access the output of a URLLoader request outside of the onComplete function?

I'm trying to access the data_file value in the onComplete function, but to be honest I'm not even sure I'm calling it correctly. public function version():String{ var string_val = ""; var ...
0
votes
2answers
328 views

How to retrieve the http response headers in a non-AIR application

Access HTTP response headers in for flash.net.URLLoader object? I found the above question that seemed to have a solution for an AIR application but not for my non-AIR flex application? Is it even ...
1
vote
1answer
406 views

AS3: Multiple “get” URLRequests not working

I'm trying to read data from a server by using a GET URLRequest with a URLLoader, and it does work. The problem is, it only works once. public class Settings { private static var ...
0
votes
1answer
49 views

Flash Uploader using URLUploader progress problems

I want to make an uploader using flash and PHP server. The problem is that I can't get the progress when uploading. I used the URLLoader class in actionscript 3. I don't use fileReference because I ...
1
vote
0answers
217 views

URLLoader strange behavior - incorrect \r\n in header

I have encountered a really strange behavior of the URLLoader/URLRequest. Take a look at the following code: var loader:URLLoader = new URLLoader(); loader.dataFormat = URLLoaderDataFormat.BINARY; ...
1
vote
4answers
796 views

URLLoader loads multi files and the result order is the same as call load()

Since URLLoader is async, how to make sure the order of data from server side is the same as the loader.load() call? In other words, the data order in totalResults is the same order of url-related ...
0
votes
0answers
249 views

As3 Gallery randomly working

I've managed to assemble an AS3 Gallery which loads its data from an XML file, it add's title, url, image & thumbnail's and has the potential to be edited via the XML, it also uses a preLoader to ...
0
votes
0answers
341 views

Basecamp API - Flex URLLoader status 200 but no action

I developped an adobe air client for Basecamp. Lately, we decided to move our client from actionscript air, to Adobe Flex. When we move our code to flex, we had a problem. Client can load data from ...
2
votes
2answers
844 views

actionscript 3 synchronous loader

I have typical situation where big loop is loading lots of images and its done asynchronous which make browser to frees during loading and I want to make it synchronous but having big trouble doing ...
0
votes
1answer
1k views

AS3 Error #2044: Unhandled error: whilst using URLLoader even with IOErrorEvent event listener

I am occasionally getting flash popup this error: Error #2044: Unhandled error:. text= My code is here: private var _myLoader:URLLoader = new URLLoader(); public function load():void { ...
3
votes
6answers
845 views

AS3 Upload speed test

I'm making an speedtest on AS3. And got such a problem. I'm using URLLoader( ) in my test, and for download test it work very good, but for uploading test i got some troubles. I'm sending some binary ...
0
votes
1answer
614 views

Flash AS3 - URLLoader loads last data again

Okay, here is one weird bug... In my app, I load multiple xml files. And to load those, I always create a new URLLoader. Nothing special. The first file works fine, the second one does, too. The ...
0
votes
3answers
442 views

ActionScript 3: How to remove EventListener with anon functions

I have written code as follows. Problem is that I can't remove Event.COMPLETE event listener and when I call the loadData funtion twice or more, it works 2 times or more. Sorry for my bad english and ...
0
votes
3answers
1k views

How to upload BitmapData to a server (ActionScript 3)?

I have bitmapData. I want to upload it to a server using URLLoader. I tried many ways, but with no result. This is my current code in ActionScript 3: import flash.net.URLLoader; import ...
0
votes
1answer
146 views

How do I add an event to URLLoader Class?

Keeping into consideration the Actionscript 3 event HTTPStatusEvent:HTTP_RESPONSE_STATUS, which is ONLY AVAILABLE for AIR (and not Flash 9/10) Quote from site: Language Version: ActionScript 3.0 ...
1
vote
1answer
583 views

Getting Error #2032: Stream Error. in Flash while sending url request to server

I am sending http request to server via URLLoader in Flash. My Code is: var urlLoader:URLLoader=new URLLoader(); var urlRequest:URLRequest=new URLRequest(); var urlparam:URLVariables= new ...
0
votes
2answers
548 views

Post values to a URL using Flash

I'm dipping my toes into Flash development and wondered how to post some variables to a URL. Let's say the user has played a Flash game, packaged as an EXE or SWF embedded in HTML stored on the user's ...
0
votes
1answer
116 views

Loading a swf into a perticular layer

So I'm loading multiple swfs into a container swf, how do I decide which is on top of the other? Currently I'm loading a swf like this: var myLoader:Loader = new Loader(); var url:URLRequest = new ...
0
votes
2answers
193 views

TinyURL popup opening instead a tab

I gotta an uncommon problem over here. I have to call the tinnyURL service to shorten my URL, it is working fine. After that, I have to call another tab, but for some reason, it calls a pop-up. I'm ...
0
votes
1answer
1k views

How to handle security error and time out error of UrlLoader.load() in actionscript3?

I use UrlLoader.load() in my flash app. And I'm handling UncaughtErrorEvent.UNCAUGHT_ERROR to stop the app when an uncaught exception occured. UrlLoader.load() works when you are connecting the ...
1
vote
1answer
316 views

Catching Flash URLLoader errors

I'm trying to bullet proof a URLLoader and wondering where I need to capture things like 404s and more importantly, mid-session timeouts and connectivity failures. The app will be run in places ...
1
vote
2answers
939 views

URLLoader how to get the URL that was loaded?

Using the URLLoader is there anyway to get the filename of the file that has been loaded? public function loadCSS():void { var urlLoader:URLLoader = new URLLoader(); ...
0
votes
2answers
334 views

why get blocked when upload with multiple URLLOADER s?

I want to upload images with multiple URLLOADER s,so that i could save the time when waiting for the COMPLETE_EVENT. Sometimes it could get blocked,and it does not give a completion event, does not ...
1
vote
3answers
311 views

Issue sending a huge amount of data from flash

I'm having an issue sending a huge (~4MB) block of data from flash, to my java servlet, currently I'm transferring the data using URLVariables, however it seems there's a limit to this (because it ...

1 2