views:

93

answers:

1

What is the difference between URLLoader and URLRequest in Actionscript?

+1  A: 

URLRequest prepares a url to be used by any service in Flash that needs to communicate with a server, capturing all of the information in a single HTTP request.

The URLLoader, on the other hand, is used to download data from a URL as text, binary data, or URL-encoded variables.

Makram Saleh