Questions tagged [urlloader]
223 questions
0
votes
2 answers
multiple URLLoader
I am loading multiple xml files with URLLoader.
for (var i=0;i

gok
- 1,137
- 1
- 9
- 30
0
votes
1 answer
Downloading video file from local NodeJS server
I have a function NodeJS application which converts video files and puts them in a 'converted' directory. I am using the express, http and multer modules. The problem I'm having is downloading the completed videos. Shouldn't I be able to see, load…

Bachalo
- 6,965
- 27
- 95
- 189
0
votes
2 answers
using AS3 to send data to a php file
I'm trying to use urlLoader but it's not working and I don't know why..
I've created a php file that I have uploaded. Here's the php code :

user3094896
- 195
- 1
- 8
0
votes
1 answer
HTTP status code 503 throwing error #2030 in Flash
I'm attempting to load ads in a Flash video player then download all of the 1x1 Impression gifs linked in the VAST file. Everything works well until I hit this file:
link to bad file
This file returns status code 302 (moved temporarily) with a…

stevendesu
- 15,753
- 22
- 105
- 182
0
votes
0 answers
How to load a .xml file with URLVariables
How to load a .xml file with URLVariables using AS3
example: file
example.xml?varsHere
var loa:URLLoader = new URLLoader();
loa.addEventListener(Event.COMPLETE, gocom);
loa.addEventListener(IOErrorEvent.IO_ERROR, gotError);
loa.load(new…

PATurmel
- 77
- 1
- 5
0
votes
0 answers
Considerable delays between calling URLLoader, and seeing bytes on the wire
Context: An AS3 application using a BOSH solution to asynchronously send and receive messages from a server.
I am endeavouring to find the source of a delay between calls to URLLoader.load(), and observing the HTTP request on the wire with…

Martin Cowie
- 2,788
- 7
- 38
- 74
0
votes
1 answer
How in the world sessions works in Flash/Air inside flash cs6 environment (no inside a browser)
I understand that sessions in a browsers works by either the cookie, url or other browser->server protocol exchange...
From other answers in this post and related links this can be understood.
Does Flash Player transmit session cookies…

voskyc
- 127
- 3
- 14
0
votes
1 answer
URLLoader cancel load on any browser event
I have a flash element in a page that load a chart based on some complex queries that can take up to a minute to load. I call the query with this code :
var chartData:URLLoader = new URLLoader();
chartData.addEventListener(Event.COMPLETE,…

Remiz
- 390
- 3
- 10
0
votes
1 answer
AS3 Accessing a class property that relies on URLLoader
I'm facing some problems in AS3. For example, I have two classes Car.as and ReadXML.as as follows:
Car.as
public class Car{
public function get price():String{
var priceXML:ReadXML = new ReadXML('price.xml');
return priceXML.file;
…

user3368484
- 109
- 4
0
votes
1 answer
Flash ActionScript 3.0 URL connection only works when being tested and fails when published
I have a program(as 3.0 .swf) that takes a users name, email and the desired information they want to receive. It then creates an email and passes these variables to my server where a php file sends it to the email the user entered. When I test the…

user3381715
- 11
- 4
0
votes
1 answer
Determining data size through URLLoader (AS3)
I'm working on a project and have come to a bit of an issue due to a limitation of the backend I'm using for me program.
First of all my question is "can I measure the data size of text through URLLoader?".
I'm making an app that is required to…

Jesse Mount
- 1
- 3
0
votes
1 answer
URLRequest gives stream error (403 Forbidden)
I'm trying to make a http request with the urlloader and urlrequest in as3. This gives an error of stream error 2032 and that is because the website doesnt allow urlrequests from Flash?
Anyway, why do this happend? How can I "fool" the website to…

user3151165
- 35
- 6
0
votes
1 answer
Changing the UrlLoader.load
package {
import flash.display.MovieClip;
import flash.display.Sprite;
import flash.events.Event;
import flash.events.MouseEvent;
import flash.events.TimerEvent;
import flash.utils.Timer;
import flash.text.StyleSheet;…

Bindlestick
- 63
- 7
0
votes
0 answers
Flex app no longer able to POST byte data to .php file. Could this be solved with PHP server configuration?
I have developed a program in flex 4.5 which creates byte data (the byte data is consumed by a larger, separate program and not part of this issue). In order to capture the byte data and write to actual .bda files, I am using flash.net.URLLoader to…

user3103373
- 101
- 1
0
votes
2 answers
AS3 delete a file once it's been accessed via URLLoader
In AS3 in AIR I'm using a URLLoader to load json data from a file for parsing. Then I want to add objects to the data and re-write the same file, using WRITE and not APPEND. The AIR compiler says, essentially "no can do, the file's in use."…

Craig
- 814
- 1
- 6
- 9