Uploading multiple images/data to server!

Thaylin | April 8, 2011

Oh man what a life saver this was! Super easy to implement and works awesomely so far!
Multipart form data in as3 [Class version 1.2]
Implementing is as easy as this:

?View Code ACTIONSCRIPT1
2
3
4
5
6
7
8
9
10
11
12
13
jpgEncoder = new JPGEncoder( 100 )
 
var photo:ByteArray = jpgEncoder.encode( this.getBitmapData( photoBitmap) );
var thumbnail:ByteArray = jpgEncoder.encode( this.getBitmapData(thumbnailBitmap) );
 
var ml:MultipartURLLoader = new MultipartURLLoader();
ml.dataFormat = URLLoaderDataFormat.TEXT; // or [...]