Andy
Andy

Reputation: 443

(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 bottom of the browser it says:

Transfering Data From www....

The data is read sucessfully, so it should close the connection? but doesnt seem to want to do it. Is there anyway to close all open connections, or somehow remove such message?

Thank you in advance.

Upvotes: 4

Views: 1357

Answers (1)

longstaff
longstaff

Reputation: 2051

there is a URLLoader.close() method that should do the trick: LiveDocs

Upvotes: 2

Related Questions