Adobe AIR Local Database Creation and Insert Data – here
Working with File objects in AIR – here
Other Methods of Storing Data Locally – here
Strategies for working with SQL databases – here
Nice tutorial by Lee Brimelow on CreateJS and how it works.
Reference pages
http://www.phpcs.com/codes/CONVERSION-CARACTERES-SPECIAUX-UTF-EXPORT-DANS-WORD-EXCEL_33814.aspx
http://www.weblogism.com/item/270/why-does-e-become-a
If you have better solution please post in comment.
function resizeThumb(mc:MovieClip, maxW:Number, maxH:Number = 0, constrainProportions:Boolean = true):void
{
maxH = maxH == 0 ? maxW:maxH;
mc.width = maxW;
mc.height = maxH;
if (constrainProportions)
{
mc.scaleX < mc.scaleY ? mc.scaleY = mc.scaleX:mc.scaleX = mc.scaleY;
}
}