Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
6k views

Access HTTP response headers in for flash.net.URLLoader object?

Is there a way to access the response headers from an HTTP result when using Flash/Flex's URLLoader? Setting the request headers is possible, as is accessing the response code, but getting a hold of ...
6
votes
1answer
496 views

Flex Multipart Upload Progress

I am uploading a file to a server using a multipart URLLoader. I am able to upload the file fine. I have tried to listen to the progress event on the URLLoader but it only fires at the very end of ...
4
votes
4answers
6k views

Image Upload progress using URLLoader AS3

I am developing image uploader in Flash. I use FileReference.browse to browse image then resize this image to 1000 x 1000 px, if the image is very big and then upload to server. I want to show ...
4
votes
3answers
3k views

Why is my URLLoader not dispatching when it completes?

I'm using a URLLoader to send a few key/value pairs to a php script, which then turns them into an e-mail, sends it (or not), and then echoes a string with a response. At first it works fine. The ...
3
votes
1answer
639 views

Adobe AIR Flex/Actionscript URLLoader vs HTTPService (Async tokens and Windows proxy settings)

I'll try and keep this short. I've written an AIR app that uses an HTTPService to request various bits of data. There can be multiple services firing at once, so I use the standard AsyncToken ...
3
votes
2answers
586 views

Actionscript 3: Memory Leak in Server Polling Presentation App

I'm building a remote presentation tool in AS3. In a nutshell, one user (the presenter) has access to a "table of contents" HTML page with links for each slide in the presentation, and an arbitrary ...
3
votes
1answer
603 views

(as3) URLloader keeping connection alive

I have a little problem with a simple URLLoader, it simply just loads the data from an url, and processes that data, nothing complicated. But, when ever i run it, it leaves the connection open. At the ...
3
votes
3answers
5k views

Unexpected Flash Security Exception When Using URLLoader

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 URLRequest. When I set the ...
2
votes
2answers
308 views

Using URLLoader.load inside a for loop

I'm creating a website using Adobe Flash Professional CS5. I'm trying to read the content of a text file with URLLoader.load(path) inside a for loop. The path changes every iteration. When I trace ...
2
votes
1answer
449 views

Can I send more than one 'stream' of jpeg ByteArray data in a single URLRequest and output 2 images? Flash AS3 -> PHP

I have an AS3 swf which users can upload jpg images to my EC2 instances which sit behind and Elastic Load Balancer. The jpg images are converted into bytearray data and sent using ...
2
votes
1answer
518 views

What is the difference between URLLoader and URLRequest in Actionscript?

What is the difference between URLLoader and URLRequest in Actionscript?
2
votes
1answer
270 views

Reading server error messages for a URLLoader

I have an URL loader with the following code: public function getUploadURL():void { var request:URLRequest = new URLRequest(); var url:String = getPath(); // Adds time to prevent ...
2
votes
2answers
1k views

Flex 3 Close UrlLoader throws exception

I am trying to simulate a 'HEAD' method using UrlLoader; essentially, I just want to check for the presence of a file without downloading the entire thing. I figured I would just use HttpStatusEvent, ...
2
votes
2answers
3k views

Combining URLRequest, URLLoader and Complete Event Listener In Actionscript 3.0?

when handling data, i always have to write the following: var dataSourceRequest:URLRequest = new URLRequest("/path/file.xml"); var dataSourceLoader:URLLoader = new URLLoader(dataSourceRequest); ...
2
votes
5answers
758 views

Flash vs. Flex: Why not skip Flex and use AS3's URLLoader + server code entirely?

I'm familiar with most of the Flash vs. Flex comparisons out there and most of them present some version of "Flex is better for RIA's while Flash is better for design work". Yet isn't it entirely ...
2
votes
1answer
4k 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 there was using ...
1
vote
0answers
111 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 ...
1
vote
3answers
66 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
vote
1answer
25 views

What object (key-value) can I use for actionscript's URLRequest/Loader classes?

I am trying to get my Actionscript program to turn in a key-value (more specifically: a key, value1, value2) object into a server. I am doing the html request properly, but I'm not sure what kind of ...
1
vote
4answers
369 views

Load JSON data with URL loader

I am new to action script 3.0. Help me to understand how can I load data with URLLoader. So, I have an aplication like: var PATH:String = "http://www.somesite.com/myFirstPage.php?a=10&b=20"; ...
1
vote
2answers
94 views

Unexpected security issue - localy in browser vs. from server

I'm writing mp3 player in flash for my website. It needs first to load xml file(from external source) with .mp3 info then .mp3 file. I use URLLoader.load to load xml file. When i run my .swf in a ...
1
vote
1answer
355 views

Uploading data with Flex and getting the bytes sent

I want to upload data (not a local file) with Flex (4.1), and show what the progress is of the bytes sent. Now I use a URLLoader, but I know that URLLoader was designed to download data, I can ...
1
vote
3answers
5k views

How to bypass “Adobe Flash Player has stopped a potentially unsafe operation.”?

I have created an advent calendar for the blog of a friend, and to fetch/get/download the gifts of each day, the flash animation requests a file located at "http://domain.com/folder/etcetc/gifts.php". ...
1
vote
1answer
210 views

Why is my URLLoader returning no data?

in AS3 I'm trying to load a URL (a Yahoo address) into the application so I can process the source code and pull things out of it. However, when I load it, or any other page, I get 0 bytes back. ...
1
vote
1answer
164 views

URLLoader at Actionscript

At the URLLoader reference there is the following example: private function completeHandler(event:Event):void { var loader:URLLoader = URLLoader(event.target); } I ...
1
vote
2answers
1k views

URLLoader.load() issue when using the same URLRequest

I have an issue with my eventListeners with the URLLoader, but this issue happens in IE, not in FF. public function getUploadURL():void { var request:URLRequest = new URLRequest(); ...
1
vote
1answer
2k views

Loading and Returning Text Data with ActionScript 3 (URLLoader)

I'm trying to do something exceedingly simple: write a function that reads text from a text file and returns the text in a string using AS3. The Function public function ...
1
vote
2answers
2k 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 when the output file ...
1
vote
1answer
2k views

How to access AS3 URLLoader return data on IOErrorEvent

I'm writing an actionscript library for an api. I use a URLLoader object to load data from the api. The problem I'm having is that whenever the api returns an http status in the 400s, actionscript ...
0
votes
2answers
30 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
35 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
32 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 ...
0
votes
2answers
40 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
0answers
47 views

Android using Adobe AIR loading multiple small same files failed

I'm trying to load multiple SWF files using Adobe AIR for Android. I make array of 20 URLLoaders to load the same test .swf file (8kb). Add event listeners to errors and complete. And when I'm running ...
0
votes
1answer
41 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
69 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
0answers
62 views

URLLoader authentication (Actionscript 3)

I use this code: var req:URLRequest = new URLRequest(url_to_my_site); req.method = URLRequestMethod.POST; var encoder:Base64Encoder = new Base64Encoder(); encoder.encode("username:password"); ...
0
votes
1answer
154 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 ...
0
votes
1answer
59 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 ...
0
votes
2answers
85 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
103 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 ...
0
votes
1answer
158 views

Actionscript 3, URLRequest/URLLoader problem. Server not receiving data

I am trying to send a server "schooltraq.com/api/" variables for a request. My Code: package { import flash.display.MovieClip; import flash.display.Sprite; import flash.events.*; ...
0
votes
0answers
67 views

SWF within video player stops making http calls after a few minutes of working fine

Within a Scala Player (Scala is an .exe windows video player that can run .swf files - www.scala.com) I am running a flash swf file that contains action script that pulls xml files from a remote ...
0
votes
1answer
56 views

Actionsctipt 3, loading image from web

I'm trying to load an external image into my air app. CODE HERE (http://pastie.org/2314164) xml.artist_pic is pointing to image example: http://www.example.com/image.jpg GLOBAL.skin.albumArt is a ...
0
votes
1answer
89 views

Flex: Getting feedback from URLLoader after sending information to a coldfusion file

I have a scheduling application that allows users to save any changes. When the user clicks the save button, Flex sends all the information to a coldfusion script which picks the information apart ...
0
votes
2answers
78 views

Is it possible to extract the symbol out of swf file which was downloaded using URLLoader (and not embedded))

I am trying to download a heavy swf dynamically to my site using URLLoader class. I'd like to know if it is possible to use a symbol inside the swf as a separate object? The code used right now uses ...
0
votes
1answer
706 views

URLLoader data to BitmapData

I'm trying to load an image file that's right next to the .SWF file. Something like this: var loader:URLLoader = new URLLoader(); loader.dataFormat = URLLoaderDataFormat.BINARY; ...
0
votes
2answers
206 views

Flex 3: reading external xml file - having some issues

I've tried every example I could find, but nothing really worked. What I'm looking for the to actionscript code (without using classes - i'd like to do all the code in the section of the mxml file) ...
0
votes
1answer
148 views

URLLoader in actionscript 3 not using the same web session on some machines?

var loader:URLLoader = new URLLoader(); var request:URLRequest = new URLRequest("http://domain.net/registerVideo.php"); var vars:URLVariables = new URLVariables(); vars.action = "insert"; ...
0
votes
2answers
185 views

Flash player breaks when loading .csv file with URLLoader

Greetings everyone... I've made a little flash, with AS3, to view the data generated by some program I wrote... The data is in a .csv file and are loaded to the memory with a URLLoader object. The ...

1 2