Questions tagged [urlloader]

219 questions
0
votes
0 answers

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 browser is making two GET calls one with parameters and…
Rui Luis
  • 143
  • 7
0
votes
1 answer

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 'http://exampleurl.php' would it be possible to pull data from another…
Esyem
  • 57
  • 6
0
votes
2 answers

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 : loadVariablesNum…
esadude
  • 37
  • 1
  • 10
0
votes
3 answers

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 data_file = ""; //var request:URLRequest = new…
0
votes
1 answer

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 want to upload an image that is encoded from bitmap…
-1
votes
1 answer

ActionScript 3.0 Loop URLLoader for online game update

How do I write a URLLoader in AS3 that downloads data from the URL, updates the game, then calls itself again, indefinitely. I have already used the following but receive the error: Error #2044: Unhandled ioError:. text=Error #2032: Stream…
-1
votes
1 answer

as3 get URLLoader's `data` property before the `COMPLETE` event?

Adobe says This property is populated only when the load operation is complete. Is there any (I mean really any) way to get the downloading data while it's in downloading state? In the onprogress event, for example. Probably there is another way to…
el Dude
  • 4,115
  • 5
  • 22
  • 39
-1
votes
2 answers

Why don't IOErrorEvents contain the URL when running standalone?

Here is a simple example of an URLLoader. var loader:URLLoader = new URLLoader(); var request:URLRequest = new URLRequest("http://example.com/doesntexist.txt"); loader.addEventListener(IOErrorEvent.IO_ERROR, function(e:IOErrorEvent){ …
PurkkaKoodari
  • 6,383
  • 5
  • 33
  • 54
-2
votes
2 answers

java.lang.ClassNotFoundException: com.mysql.jdbc.Driv5r

I am trying to run a grails application and after doing run-app. | Loading Grails 2.1.1 | Configuring classpath Resolving [test] dependencies... Resolving [runtime] dependencies... | Configuring classpath. | Environment set to…
Tarun Kundhiya
  • 156
  • 1
  • 9
1 2 3
14
15